-
Updated
Dec 29, 2021 - C
Python
Python is a dynamically-typed garbage-collected programming language developed by Guido van Rossum in the late 80s to replace ABC. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.
Here are 1,578 public repositories matching this topic...
I am working on creating a WandbCallback for Weights and Biases. I am glad that CatBoost has a callback system in place but it would be great if we can extend the interface.
The current callback only supports after_iteration that takes info. Taking inspiration from XGBoost callback system it would be great if we can have before iteration that takes info, before_training, and `after
So, it seems that Rect is iterable and you can do
r = Rect(0, 1, 2, 3)
x, y, w, h = rHowever I do not see this documented anywhere, nor exposed in the type hints. Thus, Mypy complains but the code works.
Is this an oversight, or is this feature not supposed to be used?
-
Updated
Sep 2, 2021 - C
CircuitPython version
Adafruit CircuitPython 7.0.0-alpha.4-18-g0c6dc6f0a on 2021-07-12; Raspberry Pi Pico with rp2040Code/REPL
import array
import board
import time
import rp2pio
import adafruit_pioasm
asm = """
pull
mov isr osr
push
"""
program = adafruit_pioasm.assemble(asm)
sm = rp2pio.StateMachine(
program,
frequency=1_000_000,
)
d-
Updated
Dec 27, 2021 - C
-
Updated
Oct 10, 2021 - C
-
Updated
Dec 11, 2021 - C
-
Updated
May 13, 2021 - C
-
Updated
Feb 15, 2021 - C
-
Updated
Dec 3, 2021 - C
I have an application which receives log messages from a firewall. The logs are written into a MongoDB. My goal is to process 30'000 messages per second (more or less constantly for 7*24 hours, not as transient peak value)
As peak value I expect app. 50'000 messages per second.
With several settings I reached up to 20'000 msg/sec. but that is not sufficient for our life traffic. The MongoDB ho
-
Updated
Nov 24, 2021 - C
-
Updated
Dec 23, 2021 - C
-
Updated
May 8, 2021 - C
hi,
as you know, in SoLoud, the number of filters are limited
we should implement more like different reverbs, fir and irr filters, (these could be used to implement HRTF support), Chorus, One Poll, One Zero, Pole Zero, Two Pole, Two Zero, etc
a library exists called stk under zlib license which already implemented these maybe we can implement some of these out
Seek performance
-
Updated
Dec 27, 2021 - C
-
Updated
Sep 7, 2021 - C
-
Updated
Apr 10, 2019 - C
-
Updated
Aug 7, 2021 - C
Created by Guido van Rossum
Released February 20, 1991
- Organization
- python
- Website
- www.python.org
- Wikipedia
- Wikipedia
Since some time, the macOS CI run via github actions usually gets killed before it is finished.
We should try to make it faster so it doesn't get killed by github for running too long.
Likely, it is not the tests taking too long, but some preparational steps.