Jonne Sälevä
Jonne Sälevä
Managed to grab 2 GPUS by setting them visible through `CUDA_VISIBLE_DEVICES`, and passing in both `visible_gpus` and `gpus_per_node` to `LocalExecutor`. It is necessary to specify both, otherwise [this test](https://github.com/facebookincubator/submitit/blob/main/submitit/local/local.py#L150) will...
Actually, it seems like just using `AutoExecutor` and passing in `gpus_per_node` seems to work: ``` executor = st.AutoExecutor(folder=str(log_folder), cluster="local") try: env_cuda_visible_devices = os.environ["CUDA_VISIBLE_DEVICES"] _visible_gpus = env_cuda_visible_devices.split(",") _visible_gpus = [int(gpuid) for...
Any ideas on this, or am I doing/understanding something incorrectly?
Just chiming in here as a Ph.D. student working on NLP and a new user of `super-productivity`: there are definitely date parsers out there (e.g. [alvinwan/timefhuman](https://github.com/alvinwan/timefhuman)), so it might not...
Interesting find! Seems like the [feature set](https://github.com/wanasit/chrono/blob/master/README.md) is pretty close to what OP wanted: ``` It is designed to handle most date/time format and extract information from any given text:...
I'm happy to work on this if this is still relevant. Is there a particular section of the code to look at? I've been using papis happily for a couple...
OK I thought of this issue first thing this morning for some reason. Would it be enough to handle the encoding + file opening using a combination of [`click.Path(..., allow_dash=True)`](https://click.palletsprojects.com/en/8.1.x/parameters/)...