alcinos
alcinos
Hi, Thanks for providing and maintaining this library. I noticed that some corner cases are not handled properly. Notably: ` from textblob import Word print(Word("lynx").pluralize()) # prints "lynges" print(Word("jeans").pluralize()) #...
Compiling and running this simplified version of src/examples/play.cpp (basically the same without a consumer): ``` #include using namespace Mlt; int main( int, char **argv ) { Factory::init( NULL ); Profile...
I'm trying to catalog and fix (the best I can) the numerous data races in mlt. This one happens by simply running "melt video.mp4" ``` WARNING: ThreadSanitizer: data race (pid=344)...
This happens because the xml-producer has side-effects on the profile. Hence, if several clips are concurrently created using the same profile, nasty things can happen. One such example is producer_xml.c:348....
I've came accross several instances of melt xmi files that cause an outright segfault or cause a 100% usage of the cpu for infinite amount of time. This can be...
This PR ensures the model is evaluation mode at evaluation time. Failure to do so cause incorrect behavior, especially if the model contains dropout or BatchNorm layers.
This PR updates the code base to be somewhat compatible with the new version of Pytorch. Note that the new Pytorch version includes fixes in important things like the multinomial...
This simple PR add supports for boolean parameters in the argument parser. This enables to use the following kind of argument declaration `("bool_flag", dict(type='bool', default=False , help="Example boolean flag"))` Then...
Hi, Consider the following example: ```python from ffcv.writer import DatasetWriter from ffcv.fields import NDArrayField, FloatField, StringField, IntField class Dummy: def __len__(self): return 10 def __getitem__(self, id): return (42,) ds =...
Hi all, Thanks for releasing the code. Could you provide some additional information on the exact setting you are using with respect to the atari environment? From the code, it...