Questions tagged [wandb]

134 questions
1
vote
2 answers

wandb.wandb_agent - ERROR - Detected 5 failed runs in a row, shutting down

While trying to setup wandb, I am facing the following error: wandb: WARNING Calling wandb.login() after wandb.init() has no effect. …
kkgarg
  • 1,246
  • 1
  • 12
  • 28
1
vote
1 answer

How to get multiple lines exported to wandb

I am using the library weights and biases. My model outputs a curve (a time series). I'd like to see how this curve changes throughout training. So, I'd need some kind of slider where I can select epoch and it shows me the curve for that epoch. It…
Schach21
  • 412
  • 4
  • 21
0
votes
1 answer

Unable to pass wandb API Key in PyCharm terminal

wandb: (1) Create a W&B account wandb: (2) Use an existing W&B account wandb: (3) Don't visualize my results wandb: Enter your choice: 2 wandb: You chose 'Use an existing W&B account' wandb: Logging into wandb.ai. (Learn how to deploy a W&B server…
mrk
  • 8,059
  • 3
  • 56
  • 78
0
votes
0 answers

How to fix weights and biases slow offline sync

I am using weights and biases (wandb). The compute nodes on my remote server have no internet, and so I have to use the 'offline' mode and sync manually from the remote server login nodes. However it is very slow to sync. It takes the same time to…
0
votes
1 answer

Wandb ignores --configs flag when running training script

Running a script I want to specify what config YAML to use. The documentation states you can specify what configuration file to load using the --configs flag, however running >>> python myscript.py --configs new-configs.yaml on the following…
0
votes
0 answers

In wandb I always have this error: JobID 2925027: Could not read info

I am using wandb (version 0.15.2) with Pytorch (2.0.1) and I am always having this error: JobID 2925027: Could not read info. I don't know where it comes from and how to solve it.
Noether
  • 39
  • 1
  • 5
0
votes
1 answer

Unexpected chardet depedency with wandb, how to fix and why does it happen?

I got this error: import wandb ... Traceback (most recent call last): File "/lfs/ampere1/0/brando9/miniconda/envs/data_quality/lib/python3.10/site-packages/requests/compat.py", line 11, in import chardet ModuleNotFoundError: No…
Charlie Parker
  • 5,884
  • 57
  • 198
  • 323
0
votes
0 answers

Importing wandb before tensorflow causes error calling nested @tf.function

I have reproduced this error with Tensorflow 2.12 and 2.13 and wandb 0.15.4 and 0.15.5. In the case where the following two conditions hold, wandb is imported before tensorflow and A function decorated with @tf.function calls another function also…
0
votes
2 answers

AttributeError: 'WandbLogger' object has no attribute 'log_image'

I'm using Wandb logger to log some images inside the validation step of my model. Here is the code that I have used that, if batch_idx % 100 == 0: grid = torchvision.utils.make_grid(front_img) imgs = [i for i in front_img[:8]] …
0
votes
1 answer

Wandb Plotting the first element of a list

I've used the following code to log a metric wandb.log({"metric": [4, 5, 6]}) but then found out that Wandb doesn't support plotting a list by default. I want to create a line plot where the y-axis is the first element of the metric array, and the…
Danial
  • 362
  • 4
  • 18
0
votes
1 answer

W&B events should trigger CI/CD pipelines in other systems

Weights and Biases offers to setup triggers for certain events such as whenever a model artifact is linked to the model registry whenever a certain tag is added to a model artifact However, in the UI one can only trigger W&B internal pipelines. Is…
gebbissimo
  • 2,137
  • 2
  • 25
  • 35
0
votes
0 answers

Logging Multiple Metrics in the Same Panel using Weights & Biases

I am using Weights & Biases (wandb) for logging metrics in my training script. I have a training loop where I calculate train_loss and val_loss and want to log these metrics so that they both appear in the same panel on the wandb dashboard. Here is…
Luca
  • 1
  • 2
0
votes
0 answers

Pyinstaller No module named: wandb_gql

I'm having trouble starting my exe. When I want to run it, I get the error described in the title: ModuleNotFoundError: No module named wandb_gql I don't know what it's related to at all, because this is the first time I compile to exe with…
0
votes
0 answers

Creating a Weights and Biases (W&B) sweep with a joint distribution for two hyperparameters

I'm currently using Weights & Biases (W&B) to track and optimize hyperparameters for my algorithm. I have two hyperparameters, radius and k_neighbors, which are correlated in such a way that a smaller radius corresponds to a larger number of…
0
votes
1 answer

ProxySchemeUnknown: Proxy Scheme Setting for WandB NOT Compatible with OpenAI API

Describe the bug In WSL Ubuntu 22.04.1 LTS, I use the following proxy setting so that I can get to OpenAI and pips behind the proxy. If I add any http or https schema like export HTTPS_PROXY="http://192.168.10.166:11111/", the OpenAI API and pip…
ocean11
  • 241
  • 2
  • 9
1 2 3
8 9