We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
--------------------------------------------------------------------------- ImportError Traceback (most recent call last) [<ipython-input-9-b85eab8d12e7>](https://localhost:8080/#) in <cell line: 12>() 10 sys.path.append(str(project_root)) 11 ---> 12 from yolo import ( 13 AugmentationComposer, 14 Config, ImportError: cannot import name 'PostProccess' from 'yolo' (/content/YOLO/yolo/__init__.py)
I was trying to follow the YOLO/examples/notebook_inference.ipynb. Steps to reproduce the behavior: I'm using Google Colab
import sys from pathlib import Path import torch from hydra import compose, initialize from PIL import Image project_root = Path().resolve().parent print(project_root) sys.path.append(str(project_root)) from yolo import ( AugmentationComposer, Config, PostProccess, create_converter, create_model, custom_logger, draw_bboxes, )
I expect PostProcessing to be imported, commenting it away, I also can't import custom_logger.
If applicable, add screenshots to help explain your problem.
The text was updated successfully, but these errors were encountered:
There's a typo in "PostProcess". It's written as "PostProccess" - extra "c"
Sorry, something went wrong.
@vrindamathur1428
It worked. How about custom_logger? I didn't see any function named so in ./yolo/__init__.py
custom_logger
./yolo/__init__.py
No branches or pull requests
Describe the bug
To Reproduce
I was trying to follow the YOLO/examples/notebook_inference.ipynb.
Steps to reproduce the behavior: I'm using Google Colab
Expected behavior
I expect PostProcessing to be imported, commenting it away, I also can't import custom_logger.
Screenshots
If applicable, add screenshots to help explain your problem.
System Info (please complete the following ## information):
The text was updated successfully, but these errors were encountered: