wandb not found
时间: 2023-10-19 14:25:03 浏览: 247
It seems like you're facing an issue with the "wandb" package. "wandb" stands for Weights & Biases, which is a tool for tracking and visualizing machine learning experiments. To resolve this issue, please make sure that you have the package installed on your system. You can install it by running the following command in your terminal or command prompt:
```
pip install wandb
```
If you already have "wandb" installed and you're still encountering the problem, please provide more details about the specific error message or issue you're facing so that I can assist you further.
相关问题
wandb: Currently logged in as: anony-mouse-584351. Use `wandb login --relogin` to force relogin wandb: wandb version 0.15.3 is available! To upgrade, please run: wandb: $ pip install wandb --upgrade wandb: Tracking run with wandb version 0.12.21 wandb: Run data is saved locally in /kaggle/working/yolov7/wandb/run-20230601_125414-1jenk8d0 wandb: Run `wandb offline` to turn off syncing. wandb: Syncing run run12 wandb: ⭐️ View project at https://wandb.ai/anony-mouse-584351/yolov7-tiny?apiKey=323c78e6a061c91ed778f8bd6fc310953f397638 wandb: 🚀 View run at https://wandb.ai/anony-mouse-584351/yolov7-tiny/runs/1jenk8d0?apiKey=323c78e6a061c91ed778f8bd6fc310953f397638 wandb: WARNING Do NOT share these links with anyone. They can be used to claim your runs. /opt/conda/lib/python3.7/site-packages/torch/functional.py:568: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at /usr/local/src/pytorch/aten/src/ATen/native/TensorShape.cpp:2227.) return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined] WARNING: Dataset not found, nonexistent paths: ['/kaggle/working/yolov7/noduleyolov1iyolov7pytorch/valid/images'] Traceback (most recent call last): File "yolov7/train.py", line 616, in <module> train(hyp, opt, device, tb_writer) File "yolov7/train.py", line 97, in train check_dataset(data_dict) # check File "/kaggle/working/yolov7/yolov7/utils/general.py", line 173, in check_dataset raise Exception('Dataset not found.') Exception: Dataset not found. wandb: Waiting for W&B process to finish... (failed 1). Press Control-C to abort syncing. wandb: wandb: Synced run12: https://wandb.ai/anony-mouse-584351/yolov7-tiny/runs/1jenk8d0?apiKey=323c78e6a061c91ed778f8bd6fc310953f397638 wandb: Synced 5 W&B file(s), 0 media file(s), 0 artifact file(s) and 0 other file(s) wandb: Find logs at: ./wandb/run-20230601_125414-1jenk8d0/logs
这段信息看起来像是由Wandb库生成的训练日志。首先,它提示你当前登录的帐户是“anony-mouse-584351”,并提供了升级Wandb库的信息。然后它显示了正在追踪的运行信息,包括运行的本地保存路径和Wandb项目和运行的URL链接。它还提供了警告,防止别人使用这些链接来访问或声明您的运行。最后,它显示了一个异常,指出找不到数据集。可能需要检查数据集路径或确保数据集已正确加载。
ERROR: Could not find a version that satisfies the requirement wandb (from versions: none) ERROR: No matching distribution found for wandb
这个错误提示表明你的系统中没有找到符合要求的wandb软件包版本。可能的原因是你没有正确安装wandb或者你的Python环境不兼容wandb。你可以尝试重新安装wandb或者检查你的Python环境是否满足wandb的要求。另外,你也可以尝试使用其他版本的wandb或者使用其他类似的软件包来替代wandb。
阅读全文