Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correct resume True error #5452

Closed
2 tasks done
wonbeomjang opened this issue Nov 2, 2021 · 2 comments · Fixed by #5451
Closed
2 tasks done

correct resume True error #5452

wonbeomjang opened this issue Nov 2, 2021 · 2 comments · Fixed by #5451
Labels
bug Something isn't working

Comments

@wonbeomjang
Copy link
Contributor

wonbeomjang commented Nov 2, 2021

Search before asking

  • I have searched the YOLOv5 issues and found no similar bug report.

YOLOv5 Component

Training

Bug

First of all, thank you for the great code. I started training with ms coco dataset, and I gave an argument as --resume True to resume after the suspension. However, my system recognized True as a string and the following error came out.

스크린샷, 2021-11-02 22-44-41

If opt.resume == 'True', we were able to solve the problem with an additional code that fixes it with boolean.

Environment

  • YOLO: YOLOv5 torch 1.10+cu112 CUDA:0 Tesla T4
  • OS: Devian
  • python: 3.8

Minimal Reproducible Example

ckpt = opt.resume if isinstance(opt.resume, str) else get_latest_run() 

Additional

my pull request is #5451

Are you willing to submit a PR?

  • Yes I'd like to help by submitting a PR!
@wonbeomjang wonbeomjang added the bug Something isn't working label Nov 2, 2021
@github-actions
Copy link
Contributor

github-actions bot commented Nov 2, 2021

👋 Hello @wonbeomjang, thank you for your interest in YOLOv5 🚀! Please visit our ⭐️ Tutorials to get started, where you can find quickstart guides for simple tasks like Custom Data Training all the way to advanced concepts like Hyperparameter Evolution.

If this is a 🐛 Bug Report, please provide screenshots and minimum viable code to reproduce your issue, otherwise we can not help you.

If this is a custom training ❓ Question, please provide as much information as possible, including dataset images, training logs, screenshots, and a public link to online W&B logging if available.

For business inquiries or professional support requests please visit https://ultralytics.com or email Glenn Jocher at [email protected].

Requirements

Python>=3.6.0 with all requirements.txt installed including PyTorch>=1.7. To get started:

$ git clone https://github.com/ultralytics/yolov5
$ cd yolov5
$ pip install -r requirements.txt

Environments

YOLOv5 may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):

Status

CI CPU testing

If this badge is green, all YOLOv5 GitHub Actions Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 training (train.py), validation (val.py), inference (detect.py) and export (export.py) on MacOS, Windows, and Ubuntu every 24 hours and on every commit.

@wonbeomjang wonbeomjang changed the title correct resume True error #5451 correct resume True error Nov 2, 2021
@glenn-jocher glenn-jocher linked a pull request Nov 2, 2021 that will close this issue
@glenn-jocher
Copy link
Member

glenn-jocher commented Nov 2, 2021

@wonbeomjang thanks for the bug report! This may be due to a bit of confusion, as the --resume use cases are either:

python train.py --resume  # resume most recent run
python train.py --resume path/to/last.pt  # specify run

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants