David Příhoda
David Příhoda
Should be solved by https://github.com/botshot/botshot/pull/38, flows are loaded using lazy loading when needed.
We can mark users as admins in Messages tab (or create a Users tab which would be useful for showing most active users).
Hi @apratim-mishra inference code can be found here: https://github.com/Merck/Sapiens/blob/main/sapiens/roberta.py As for training, we used `fairseq-train` script described here: https://fairseq.readthedocs.io/en/latest/command_line_tools.html Please let me know if you need more info.
Hi guys, is this still on the table? ;)
Hi @efiop > For `dvc run` case, all we need to do to enable "multiprocessing" is to make sure that dvcfiles, outputs and dependencies don't collide. That should be pretty...
Looks like Portalocker provides shared/exclusive locks which could be used as read/write locks https://portalocker.readthedocs.io/en/latest/portalocker.html
I would also appreciate being able to run the pipeline in parallel on HPC. The `--no-lock` option would definitely be useful as a quick hack. But what is the worst...
From a high-level perspective, the execution plan implementation could actually be really simple, right? Get set of stages that can be run in parallel from DAG, run them in a...
I guess running multiple stages in parallel within the same DVC repro (using DAG execution plan) and running multiple instances of DVC at the same time (per-file locking) are both...
Hi @bdragon300, thanks, in my case `models` is actually a module, so the documents from the individual scripts were not detected. I solved it by importing `*` from each script...