Questions tagged [wandb]

134 questions
0
votes
1 answer

is there any symbols forbidden in run_id?

I just started working with wandb. I am curious if there is any requirement in the format of the run_id (e.g. cannot contain brackets '[]' or '()') the reason why I am asking is that I cannot log my runs (image data) properly after adding a '[..]'…
0
votes
1 answer

HuggingFace Trainer() cannot report to wandb

I am trying to set trainer with arguments report_to to wandb, refer to this docs with config: training_args = TrainingArguments( output_dir="test_trainer", evaluation_strategy="steps", learning_rate=config.learning_rate, …
Weber Huang
  • 233
  • 2
  • 11
0
votes
1 answer

wandb : move runs from a blocked entity

I accidentally moved several runs from my own user account to a team entity. Unfortunatly, this team entity had a restriction on the quantity of experiments tracked, and it now appears as blocked. I have this error message : Your organization is…
johann_y
  • 11
  • 2
0
votes
1 answer

How to get a graph with the best performing runs via Sweeps (Weights & Biases)?

For my NER model I use Weights & Biases sweeps for hyperparameter search. I do a grid search with about 100 runs and there are some really meaningful graphs. However, I can't figure out how to create a graph that shows about the best 10 runs in…
0
votes
0 answers

Can you pass agent-specific parameters to a wandb sweep?

I would like to be able to pass a particular parameter with a different value on each agent in my wandb sweep.
0
votes
1 answer

wandb.Table raises error: AssertionError: columns argument expects a `list` object

I'm very beginner with wandb , so this is very basic question. I have dataframe which has my x features and y values. I'm tryin to follow this tutorial to train model from my pandas dataframe . However, when I try to create wandb table from my…
Reut
  • 1,555
  • 4
  • 23
  • 55
0
votes
2 answers

jupyterLab Wandb does not iterative

I try to use WanDB but when i use wandb.init() there is nothing.! I am waiting a lot of time. However, there is nothing in window. This is working well in Kernel. please.. help me guys
정성헌
  • 82
  • 7
0
votes
1 answer

wandb pytorch: top1 accuracy per class

I have 5 classes in validation set and i want to draw a graph based on top1 results per class in validation loop using wandb . I have tried a single accuracy graph based on the average of 5 classes and it works fine but i want to do a separate way…
Khawar Islam
  • 2,556
  • 2
  • 34
  • 56
0
votes
1 answer

Pytorch lightning callback for switching dataloader_idx

Is there a callback or something similar used when incrementing the dataloader index? The reason is that I have defined multiple dataloaders and I would like to start a new run with weight and biases for each dataloader.
Kevin
  • 3,096
  • 2
  • 8
  • 37
0
votes
1 answer

Wandb not initializing on Nvidia Pytorch Image arm64

I'm having serious problems with wandb on a nVidia pytorch image using arm64 architecture. No info online on how to solve this problem. Cannot even start a project with wandb.init() [python error]: https://i.stack.imgur.com/pdgDT.png AttributeError…
0
votes
2 answers

Wandb website for Huggingface Trainer shows plots and logs only for the first model

I am finetuning multiple models using for loop as follows. for file in os.listdir(args.data_dir): finetune(args, file) BUT wandb website shows plots and logs only for the first file i.e., file1 in data_dir although it is training and saving…
kkgarg
  • 1,246
  • 1
  • 12
  • 28
0
votes
1 answer

WANDB Getting a run id based on tag

Context Hi! In wandb I can download a model based on a tag (prod for example), but I would like to also get all metrics associated to that run by using tags. The problem is that I don't know how to a get specific run ID based a tag. Example Using…
Leonardo
  • 5
  • 4
0
votes
0 answers

WANDB run initialization

I wanted to try using wandb to log runs of my ML experiments for a project; but I am not able to initialize the run itself. I tried: run = wandb.init(project="name",entity="username",name="classification") This results in: wandb: W&B API key is…
bee
  • 1
  • 1
0
votes
1 answer

locked out of wandb local server - change user password

I am using a local weight and biases (wandb) instance running on a server with no internet connection. I have a user there and having no problems logging results from the server. However, when trying to see them in the UI it asked me to login again…
shgoren
  • 31
  • 6
0
votes
1 answer

wandb getting logged without initiating

I do not want to use wandb. I don't even have an account. I am simply following this notebook for finetuning. I am not running the 2nd and 3 cells because I do not want to push the model to the hub. However, when I do trainer.train() I get the…
1 2 3
8 9