Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
24 views

I want to export my data from Line plots in CSV (on reports on wandb website) with multiple groups (for exemple (group A, group 1), (group A, group 2), (group B, group 1), (group B, group 2)) but it ...
Elta's user avatar
  • 1
0 votes
1 answer
50 views

When using the latest version of wandb in a Conda environment with Python 3.12, an error is raised due to a dependency on the distutils module—which has been removed in Python 3.12. The error ...
Omri Hirsch's user avatar
0 votes
0 answers
107 views

I used wandb.init and resulted in the error below. wandb: Currently logged in as: MyWandbAccount (accountname) to https://api.wandb.ai. Use `wandb login --relogin` to force relogin wandb: ERROR Run ...
Xingrui Zhuang's user avatar
0 votes
0 answers
19 views

I’m trying to run a W&B hyperparameter sweep against my Python training script, but none of the sweep’s hyperparameter flags ever get passed to the script. Instead, the agent simply runs my base ...
Dalek's user avatar
  • 4,388
1 vote
0 answers
72 views

I'm using torch LightningModule trainer. I create trainer with: trainer = pl.Trainer(max_epochs = 3) Each train epoch has 511 steps (total = 1533) and each validation epoch has 127 steps. I use ...
user3668129's user avatar
  • 4,880
0 votes
1 answer
734 views

here is the screenshot from google colab I was preparing a YOLOv9 model. And i saw this wandb stuff. But as I remember there were no wand warnings a few months ago. I don't get the difference of using ...
janelyd's user avatar
  • 19
0 votes
0 answers
93 views

I want to log my model's accuracy after each epoch and its final accuracy at the end but I cannot find a simple way of doing this. I am following this tutorial: https://www.youtube.com/watch?v=...
user22631788's user avatar
0 votes
0 answers
35 views

I'm trying to use WandB to store and view benchmarking results. I've got a snipped of code that looks basically like this for model in models_to_eval: wandb.init(project="benchmarking", ...
Sam Russell's user avatar
0 votes
1 answer
34 views

How can I ensure that only the current script file (e.g., train.py) is logged to the W&B Code panel when running a script, without logging the entire directory? Currently, I'm using: wandb.run....
Charlie Parker's user avatar
0 votes
1 answer
113 views

Our setup: Training script using pytorch lightning Trainer & WandB Logger. Further, Hydra is used to configure the training setup (Datasets, Hyperparameters, Optimizer...) The Model object is an ...
user27352447's user avatar
0 votes
1 answer
112 views

I am having issue with have WANDB as it disconnect frequently in a non-deterministic manner. below is the description. Error Message: WandB run initialized successfully. Run ID: f782c567-5e34-4544-...
Mahdi Jafari's user avatar
-1 votes
1 answer
467 views

This is a really basic issue, but for some reason I cannot install the wandb CLI with pip; whenever I try to wandb login I get a zsh: command not found: wandb error (I'm on a Mac). What is confusing ...
neil's user avatar
  • 3
0 votes
1 answer
96 views

I'm trying to generate a pcolormesh object. And then using wandb.log to log it, but I saw that wandb by default will convert this figure to plotly first. And that's why I end up with this warning and ...
Sivan D's user avatar
  • 83
0 votes
2 answers
185 views

I'm doing hyperparameter tuning. My code look like this: combinations = list(itertools.product(*self.grid_model_configs.values())) for combination in combinations: param_names = ...
panda's user avatar
  • 23
2 votes
1 answer
959 views

I am trying to run hyperparameter sweeps using Weights and Biases (W&B) and would like to leverage multiprocessing to parallelize my experiments as much as possible. I want to ensure that each set ...
Charlie Parker's user avatar
0 votes
1 answer
142 views

I run a neural network and I want to use Wandb to track the metrics. Here is my code : from wandb.keras import WandbCallback wandb.init(project="my-project", name="my-run") ...
thib's user avatar
  • 31
0 votes
1 answer
108 views

How to programmatically set alerts for failure in a W&B run? I'm trying to set up alerts in my W&B (Weights & Biases) project to notify me if a run fails. I've been testing several ...
Charlie Parker's user avatar
0 votes
1 answer
626 views

In Visual Studio Code, first I encounted issues logging into wandb. I’ve tried specifying the entity as ‘myusername’, but it hasn’t resolved the problem. I’ve also confirmed that I’m using the latest ...
file_csv's user avatar
0 votes
1 answer
636 views

At the start of my application, I initialize a connection to WeightsAndBiases via run = wandb.init(project="...") Later on, I would like to check if a wandb run has been initialized. Is ...
jraufeisen's user avatar
  • 4,017
1 vote
0 answers
287 views

I'm building a model with pytorch lightning and I'm using the Distributed Data Parallel (DDP) strategy on 2 GPU for accelerating the process. After the fitting of the model, I need to return 4 pairs ...
MrCosta57's user avatar
0 votes
0 answers
165 views

Goal: I am having trouble creating a histogram of normalized frequencies in Weights and Biases custom charts -- which are implemented in Vega-Lite. I would love some community help to resolve this. I ...
Gilad Turok's user avatar
0 votes
1 answer
294 views

I am fine-tuning a T5 model on a specific dataset and my code looks like this: accelerator = Accelerator(log_with='wandb') tokenizer = T5Tokenizer.from_pretrained('t5-base') model = ...
Ofek Glick's user avatar
0 votes
0 answers
402 views

I’m having a problem when I try to run a subprocess (with Popen) in my python script that executes a bash command (slurm sbatch) on a different computing node. The error happens during wandb.init(): ...
schlaepf's user avatar
0 votes
1 answer
2k views

I've try to use wandb today and run the quickstart code locally in Pycharm, though I can use wandb login command to log in but when I try to run the py file, the error: C:\Users\34959\anaconda3\envs\...
DAONAN ZHANG's user avatar
2 votes
0 answers
213 views

I have a custom environment and the following standard code for training a PPO model if __name__ == "__main__": torch.set_num_threads(1) WANDB_NOTEBOOK_NAME = 'name' #...
Zackbord's user avatar
1 vote
2 answers
4k views

I’m trying to use wandb in a project I’m running on a server via SSH. I created and configured the virtual environment, but with wandb, I’m encountering the error ‘module ‘wandb’ has no attribute ‘...
ANDREY SILVA RIBEIRO's user avatar
1 vote
1 answer
1k views

I am trying to train my model and log both the train and eval loss (or ppl perplexity). But when I try it nothing in the charts except the system stats show. Why? Link to full code (should be fully ...
Charlie Parker's user avatar
0 votes
1 answer
5k views

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' ...
mrk's user avatar
  • 10.3k
-1 votes
1 answer
165 views

When defining a new Keras model and integrating it with WandB (Weights and Biases), I encountered an error related to a specific layer. The error message I received is as follows: File "/...
Salman's user avatar
  • 1,016
0 votes
1 answer
90 views

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 ...
ThreeOrangeOneRed's user avatar
0 votes
1 answer
305 views

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, ...
Charlie Parker's user avatar
4 votes
1 answer
671 views

Intially I wanted to run a hugging face run such that if the user wanted to run a sweep they could (and merge them with the command line arguments given) or just execute the run with the arguments ...
Charlie Parker's user avatar
1 vote
1 answer
1k views

On my laptop, wandb is configured to log in to my company's wandb. However, I want to use my personal wandb account for my personal projects. Even after wandb login --relogin, it will still try to go ...
Jechos's user avatar
  • 21
0 votes
2 answers
1k views

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) ...
Dinura Dissanayake's user avatar
2 votes
2 answers
232 views

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 ...
Danial's user avatar
  • 444
1 vote
0 answers
75 views

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 ...
gebbissimo's user avatar
  • 2,759
1 vote
1 answer
327 views

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 ...
user21582026's user avatar
0 votes
1 answer
467 views

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="...
ocean11's user avatar
  • 680
0 votes
1 answer
549 views

I'm using weights & biases and try to log some scalars using python SDK for W&B, the logs appear like that: a plot with a single dot I get So I basically just run this: wandb.log({"loss&...
Maxim's user avatar
  • 11
0 votes
1 answer
137 views

I am trying to do hyperparameter seach using Weights & Biases. Tried to run this code from documentation https://docs.wandb.ai/guides/sweeps/add-w-and-b-to-your-code in the notebook: import wandb ...
Aska's user avatar
  • 141
0 votes
1 answer
820 views

I am trying to set up my model to run, train and save everything into and from Weights and Biases. I would like to: Load the latest model from W and B and continue training with it from the last ...
Mark Stent's user avatar
0 votes
1 answer
402 views

I have been logging and browsing locally on wandb, but after some time and updates I got logged out and can't remember the email I used locally. How can I recover my local credentials?
Samuel's user avatar
  • 86
1 vote
0 answers
206 views

How can I use the WandB API to get all the tags associated with a project in a nested method or function? Currently, I am using the following code: runs = api.runs(path=f"{entity}/{project}")...
羅文斌's user avatar
1 vote
1 answer
392 views

For runs I do: wandb.run.get_url() how do I do the same but for sweeps given the sweep_id? fulls sample run: """ Main Idea: - create sweep with a sweep config & get sweep_id for ...
Charlie Parker's user avatar
0 votes
0 answers
482 views

I have a problem about AI project use yolov5 and WandB. Developing Environment has packages include code: import os os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE" !python train.py --...
hoon050824's user avatar
0 votes
1 answer
1k views

I'm working with weight and bias(wandb). My data is already logged but I would like to scale the plot, as my data was logged every 5 epochs I would like to at least change the numbers in the scale so ...
Roberto Gutiérrez's user avatar
0 votes
1 answer
880 views

Within my optuna study, I want that each trial is separately logged by wandb. Currently, the study is run and the end result is tracked in my wandb dashboard. Instead of showing each trial run ...
resei09's user avatar
  • 23
1 vote
3 answers
2k views

Lightning AI has a W&B logger (https://lightning.ai/docs/pytorch/latest/extensions/generated/pytorch_lightning.loggers.WandbLogger.html), but the documentation doesn't specify how to log a W&B ...
Rylan Schaeffer's user avatar
0 votes
1 answer
455 views

I am training a model and uses wandb to plot the training graphs. I noticed that I accidently logged wrong y values in some of the points. Is there any way to manually edit specific point in the plot ...
Dani's user avatar
  • 819
0 votes
1 answer
468 views

following the basic pytorch tutorial, I'm trying to experiment with different CNN architectures (different number of layers, channels per layer, etc.) and I want to be organized so I'm trying to use ...
Ariel Yael's user avatar