Skip to content

Commit 683c90c

Browse files
committed
Fix dependencies
Signed-off-by: Beat Buesser <beat.buesser@ibm.com>
1 parent 93f5f67 commit 683c90c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

examples/get_started_yolo.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,8 @@ def forward(self, x, targets=None):
208208
else:
209209
return self.model(x)
210210

211-
# model_path = "./yolov3.cfg"
212-
# weights_path = "./yolov3.weights"
213-
model_path = "/tmp/PyTorch-YOLOv3/config/yolov3.cfg"
214-
weights_path = "/tmp/PyTorch-YOLOv3/weights/yolov3.weights"
211+
model_path = "./yolov3.cfg"
212+
weights_path = "./yolov3.weights"
215213
model = load_model(model_path=model_path, weights_path=weights_path)
216214

217215
model = Yolo(model)

tests/estimators/object_detection/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1717
# SOFTWARE.
1818
import logging
19+
1920
import numpy as np
2021
import pytest
2122

0 commit comments

Comments
 (0)