Skip to content

Commit

Permalink
Add yolov5/ to sys.path() for *.py subdir exec (ultralytics#2949)
Browse files Browse the repository at this point in the history
* Add yolov5/ to sys.path() for *.py subdir exec

* Update export.py
  • Loading branch information
glenn-jocher committed Apr 27, 2021
1 parent c917343 commit 5f7b1d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion models/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
import argparse
import sys
import time
from pathlib import Path

sys.path.append('./') # to run '$ python *.py' files in subdirectories
sys.path.append(Path(__file__).parent.parent.absolute().__str__()) # to run '$ python *.py' files in subdirectories

import torch
import torch.nn as nn
Expand Down
5 changes: 3 additions & 2 deletions models/yolo.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
import logging
import sys
from copy import deepcopy
from pathlib import Path

sys.path.append('./') # to run '$ python *.py' files in subdirectories
sys.path.append(Path(__file__).parent.parent.absolute().__str__()) # to run '$ python *.py' files in subdirectories
logger = logging.getLogger(__name__)

from models.common import *
Expand Down Expand Up @@ -267,7 +268,7 @@ def parse_model(d, ch): # model_dict, input_channels(3)
# Create model
model = Model(opt.cfg).to(device)
model.train()

# Profile
# img = torch.rand(8 if torch.cuda.is_available() else 1, 3, 320, 320).to(device)
# y = model(img, profile=True)
Expand Down

0 comments on commit 5f7b1d6

Please sign in to comment.