Wojciech Jaśkowski

Results 11 issues of 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...

feature request

How can I delete a run/experiment from API?

feature request

```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:...

feature request
pending
api

```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...

feature request
api

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...

feature request
api

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.

feature request
ui
api

The current code seeds random but uses numpy.random.

Do you see any possibilities to allow lambda or nested functions with `parmap.map`?

enhancement
pull-request-welcome

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_...

app