Andreas Schuh

Results 20 comments of Andreas Schuh

Me and my company would also be interested in this! It seems this feature would be quite useful to be able to use DVC for sharing locally downloaded datasets across...

Apart from improving the display of auto-generated names, would it make sense to allow the user to name an experiment themselves when creating it? E.g., using `Modify & Queue`. Right...

I worked arounds this with a small `DVCLiveLogger` wrapper. ``` from deepali.core.storage import StorageObject from dvclive.lightning import DVCLiveLogger as _DVCLiveLogger from dvclive.lightning import ModelCheckpoint, rank_zero_only class DVCLiveLogger(_DVCLiveLogger): def __init__(self, dir:...

Yes, in this case, where experiments are executed as batch jobs potentially at the same time (parallel experiment runs) in a cluster environment such as Ray with results stored in...

An integration with Ray Tune (and Ray Train) sounds fantastic. When using Ray Tune, I currently disable DVCLive because Tune already provides me with an [experiment analysis](https://docs.ray.io/en/latest/tune/examples/tune_analyze_results.html) object which basically...

I also ran into this issue when I wanted to remove an experiment that I had saved under the same name with respect to the latest branch HEAD. Basically I...

The DVC 3 migration guide states: > DVC 3.0 remains compatible with pre-existing data tracked by older DVC releases

After manually editing `dvc.lock` files to add top-level keys ``` schema: '2.0' stages: ``` the `dvc pull target.dvc -v` prints the following (note that the tracked file I want to...

@dberenbaum I definitely see the need to every now and then break backwards compatibility. Given the maturity of the tool (major version 3) and user base, it's certainly best to...

Seemingly related issue pointed out by @skshetry: https://github.com/iterative/dvc/issues/8768#issuecomment-1375403471