Mateen Ulhaq
Mateen Ulhaq
## 🚀 Feature Add URL-query string (e.g. `?figures=rate-distortion-plots&rowgroups=run.experiment&colgroups=run.hp.target_bitrate`) and bookmarks to Figure explorer. ### Motivation Ability to refresh page and maintain same viewpoint, or share link to same Figure explorer...
## 🚀 Feature More space-efficient storage by compressing LOG and storing compressed text data in *.sst files. ### Motivation The LOG file contains text data for aim debugging, and isn't...
## 🐛 Bug Aim Runs page is blank and raises error after running `aim runs cp` on fresh `aim init`. ### To reproduce ```bash mkdir new_repo && cd new_repo aim...
## 🚀 Feature A user should be able to create an `aim.Distribution` using histogram data that the user computed. Perhaps by specifying some flag that disables the automatic internal `numpy.histogram`....
It looks like this polls `squeue` every second: https://github.com/mil-ad/stui/blob/978afa56e4666c2a4338302f16105de47cf90ac5/stui/backend.py#L157-L165 However, [ComputeCanada guidelines](https://docs.computecanada.ca/wiki/Running_jobs#Use_squeue_or_sq_to_list_jobs) say: > Do not run `sq` or `squeue` from a script or program at high frequency, e.g., every...
GNU netcat has a different syntax: ```bash nc -l -p 9090 ``` You might want to mention this in the README.
**Describe the bug** ListConfig errors when is [:-1] applied to empty list. **To Reproduce** ```python >>> from omegaconf import OmegaConf >>> conf = OmegaConf.create({"xs": []}) >>> conf.xs[:-1] Traceback (most recent...
Instead of displaying over [`gitsigns.nvim`](https://github.com/lewis6991/gitsigns.nvim#gitsignsnvim), can the marks be displayed in the second column? Or alternatively, make them the same color as the gitsign. --- The mark signs are somewhat...
With PyTorch, many CUDA operations are asynchronous, and may only block when needed, e.g. ```python y_hat = model(x) # 0s loss = ((y - y_hat)**2).mean() # 0s print(loss.cpu()) # 1000s...
Currently hardcodes weights that are fixed into the compiled binary. Might be good to implement `--recency-weight` and `--frequency-weight` or something like that.