Wojciech Jaśkowski
Wojciech Jaśkowski
In my project I have 800 runs each of which has 18000 hyperparameters. In result, ```python project.fetch_runs_table() ``` takes 51 seconds. I rarely need all those parameters. Usually, I need...
How can I delete a run/experiment from API?
```python #!/usr/bin/env python # -*- coding: utf-8 -*- import neptune.new as neptune run = neptune.init(mode='debug') run.sync() run.wait() rid = run['sys/id'].fetch() run = neptune.init(mode='debug', run=rid) rid = run['sys/id'].fetch() ``` fails with:...
```python import neptune.new as neptune run = neptune.init(mode='offline') run.sync() run.wait() rid = run['sys/id'].fetch() run = neptune.init(mode='offline', run=rid) rid = run['sys/id'].fetch() ``` ends up with: ``` offline/1b7c5e70-695d-4d1c-8587-a5ca2e3d222c Traceback (most recent call...
I often statistically analyze files sent to the neptune. In the notebook, I first download the files, then do some analyses. Since the files change on the server (e.g., new...
What is the reason to don't allow sending inf's and nan's as metric values? I imagine that it is impossible to plot them but this is still some information.
The current code seeds random but uses numpy.random.
Do you see any possibilities to allow lambda or nested functions with `parmap.map`?
It is possible to easily achieve something like: ```python def f(x, y): r = 0 for i in range(100000000000): r += i return r parmap.map(f, x=1, y=range(100)) ``` ?
### Current Behavior Wrong plotting when adding a new run. Hard to describe. Just look at the video: https://www.loom.com/share/6fa694b9de124c62afe378f560cd2853 ### Expected Behavior _No response_ ### Steps To Reproduce _No response_...