Casper da Costa-Luis

Results 737 comments of Casper da Costa-Luis

you'd probably need: ```python from tqdm import tqdm as tqdm_std class Qtqdm(tqdm_std): # some custom logic here, probably overriding `close`/`clear`/`display` # see https://github.com/tqdm/tqdm/#custom-integration # and https://github.com/tqdm/tqdm/blob/master/tqdm/notebook.py # and https://github.com/tqdm/tqdm/blob/master/tqdm/gui.py #...

The `position` keyword is ignored in a notebook environment, and I don't think there's any straightforward way to support widget reordering in a notebook.

try increasing `ncols`? i.e. `tqdm(ncols=250, total=...)`

Thanks @johncant - srry dropped off my radar. Restarted now.

It's not yet implemented (#914 currently would run the function twice, which is a massive no-no). It's perhaps frustratingly not minor. (anyway the milestones are a bit poorly named since...

That calls the function twice too :(

Despite the fact that I wrote the `tqdm.pandas()` wrapper, I don't actually use `pandas` enough to know for certain but it feels like such a context manager may break `pandas`...

I'm not sure I follow. Is the issue about authentication for `dvc` in CI using env vars? That's already supported (vis https://dvc.org/doc/command-reference/remote/modify#available-parameters-per-storage-type) e.g. `AWS_ACCESS_KEY_ID` & `AWS_SECRET_ACCESS_KEY`. Or do you mean...

1. currently, all "new" projects need to create "legacy" `$CONFDIR/dvc/user_id` just in case DVC is subsequently installed 2. DVC should ergo start writing to the "new" `$CONFDIR/iterative/telemetry` asap (reducing the...

`dvc import --no-download` makes sense. Meanwhile for `dvc import --check-only`... not sure I follow, but sounds more like a use case for `dvc status` or #5369?