Ty Todd
Ty Todd
I am using an API that streams chunks of audio as they become available. I need to send this to Twilio which only accepts mulaw encoded base64. Is there a...
### What happened? As seen here when using move up action it makes the toolbar dissapear from codeblock. In the video its on web but I confirmed its also has...
Closes #7607 ## New signatures ### Audio ```python Audio(sampling_rate: Optional[int] = None, mono: bool = True, decode: bool = True, stream_index: Optional[int] = None) Audio.encode_example(self, value: Union[str, bytes, bytearray, dict,...
### Feature request Pytorch is migrating video processing to torchcodec and it's pretty cool. It would be nice to migrate both the audio and video features to use torchcodec instead...
Rendering the image normally without attempting to resize, with `image(img, 10,20)` I get this: However when trying to dynamically resize the width to half its size I get the image...
This is the original image rendered with ``` image(img, 10,20) ``` when I try to acess the width and height using this code ```python from p5 import * from components.shuffler...
I replaced `student: Module` in `Teleprompt.compile`'s signature with `student: M`, a TypeVar that tracks the type and returns that same type ```python M = TypeVar("M", bound=Module) class Teleprompter: ... def...
### What feature would you like to see? Did some thinking about how to make Signatures and Predictions more type checker friendly so that static type checkers can tell you...
### What feature would you like to see? In the following code, the type checker won't recognize the member `weather_function` on `compiled_agent` because it was returned from `MIPROv2.compile`. ```python class...
Is `BootstrapFinetune` just a model distillation from a teacher model to a student model. So the student model learns to give responses closer to the teacher model? Does it also...