initial push
This commit is contained in:
19
backend/project_43/43/exp.py
Normal file
19
backend/project_43/43/exp.py
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding:utf-8 -*-
|
||||
# Copyright (c) Megvii, Inc. and its affiliates.
|
||||
|
||||
import os
|
||||
|
||||
from yolox.exp import Exp as MyExp
|
||||
|
||||
|
||||
class Exp(MyExp):
|
||||
def __init__(self):
|
||||
super(Exp, self).__init__()
|
||||
self.data_dir = "/home/kitraining/To_Annotate/"
|
||||
self.train_ann = "coco_project_43_train.json"
|
||||
self.val_ann = "coco_project_43_valid.json"
|
||||
self.test_ann = "coco_project_43_test.json"
|
||||
self.depth = 1.33
|
||||
self.width = 1.25
|
||||
self.exp_name = os.path.split(os.path.realpath(__file__))[1].split(".")[0]
|
||||
Reference in New Issue
Block a user