This is a very useful tool, the video is very detailed.
@manuelfideles9468 Жыл бұрын
I think the colab notebook is no longer available :(
@dailygrowth79672 жыл бұрын
Awesome guide! Thanks for the detailed information
@gianluca31312 жыл бұрын
Very cool, but how can I do the same thing shown at 16:00 for a time series forecast problem? I have a validation set containing sequences (x) and their target sequences (y). I tried passing them to the Wandb callbacks but it doesn't visualize anything. Maybe it's because I'm not specifying the correct data type, does somebody know how to help me?
@QaiserAbbas-j2vАй бұрын
can we integrate wandb in VSCODE?
@maryembenali1468 Жыл бұрын
i added Callbacks=[WandbCallback()] and appearently the syntax isnt right , it doesnt recognize the WandbCallback() how can i fix it
@joaquinoldan26052 жыл бұрын
how can I set the run name?
@sharjeel_mazhar2 жыл бұрын
Second that!!!
@WeightsBiases2 жыл бұрын
You can edit the run name in your project dashboard or after calling wandb.init(), call wandb.run.name = "your name" and then wandb.run.save(). More about that here: docs.wandb.ai/guides/track/launch
@brandomiranda67033 жыл бұрын
what happens if we don't do .join() or .finish()? e.g. there is a bug in the middle it crashes...what will wandb do? will the wandb process be closed on its own?
@WeightsBiases3 жыл бұрын
In the case of a bug or crash somewhere in the user script, the wandb process will be closed on its own, and as part of the cleanup it will sync all information logged up to that point. If that crashes (e.g. because the issue is at the OS level or things are otherwise very on fire), the information won't be synchronized to the cloud service but it will be on disk. You can sync it later with wandb sync. Docs for that command: docs.wandb.ai/ref/cli/wandb-sync If you have more questions like these, check out the Technical FAQ section of our docs: docs.wandb.ai/guides/technical-faq