MCPcopy Create free account
hub / github.com/FoundationVision/ByteTrack / __init__

Method __init__

exps/example/mot/yolox_tiny_mix_det.py:12–31  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

10
11class Exp(MyExp):
12 def __init__(self):
13 super(Exp, self).__init__()
14 self.num_classes = 1
15 self.depth = 0.33
16 self.width = 0.375
17 self.scale = (0.5, 1.5)
18 self.exp_name = os.path.split(os.path.realpath(__file__))[1].split(".")[0]
19 self.train_ann = "train.json"
20 self.val_ann = "train.json"
21 self.input_size = (608, 1088)
22 self.test_size = (608, 1088)
23 self.random_size = (12, 26)
24 self.max_epoch = 80
25 self.print_interval = 20
26 self.eval_interval = 5
27 self.test_conf = 0.001
28 self.nmsthre = 0.7
29 self.no_aug_epochs = 10
30 self.basic_lr_per_img = 0.001 / 64.0
31 self.warmup_epochs = 1
32
33 def get_data_loader(self, batch_size, is_distributed, no_aug=False):
34 from yolox.data import (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected