Notice: The Weights & Biases domain will change on September 30. This includes all websites and services that use a W&B domain. No action is needed today.
Comment voir les fichiers qui n'apparaissent pas dans l'onglet Files ?
L’onglet Files affiche jusqu’à 10 000 fichiers. Pour télécharger tous les fichiers, utilisez l’API publique :
import wandbapi = wandb.Api()run = api.run('<entity>/<project>/<run_id>')run.file('<file>').download()for f in run.files(): if <condition>: f.download()