Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Shank2358 committed Sep 9, 2022
1 parent 7c227ff commit f90a5db
Show file tree
Hide file tree
Showing 147 changed files with 31,336 additions and 971 deletions.
Binary file modified config/__pycache__/config.cpython-38.pyc
Binary file not shown.
42 changes: 22 additions & 20 deletions config/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
DATA_PATH = "/home/hzc/DroneVehicle/"
# coding=utf-8
DATA_PATH = "F:/Datasets/HRSC2016/test/"
#DATA_PATH = "F:/Datasets/DOTAx/test/"#
#DATA_PATH = 'F:/Datasets/DroneVehicle/test/'
#DATA_PATH = "/opt/datasets/DOTA/"
PROJECT_PATH = "./"

# DATA = {"CLASSES": ['car', 'truck', 'bus', 'van', 'freight car'],
# "NUM": 5}

# DATA = {"CLASSES": ['plane',
# 'baseball-diamond',
# 'bridge',
Expand All @@ -10,40 +17,35 @@
# 'ship',
# 'tennis-court',
# 'basketball-court',
# 'storage-tank', 'soccer-ball-field', 'roundabout', 'harbor', 'swimming-pool', 'helicopter'],#,'container-crane', 'airport', 'helipad','container-crane', 'airport', 'helipad'
# 'storage-tank', 'soccer-ball-field', 'roundabout', 'harbor', 'swimming-pool', 'helicopter'],
# "NUM": 15}

DATA = {"CLASSES": ['ship'],
"NUM": 1}
DATA = {"CLASSES": ['ship'], "NUM": 1}

DATASET_NAME = "train_HRSC2016" #"train_DOTAx"
MODEL = {"ANCHORS":[[(2.80340246, 2.87380792), (4.23121697, 6.44043634), (7.38428433, 3.82613533)],
[(4.2460819, 4.349495965), (4.42917327, 10.59395029), (8.24772929, 6.224761455)],
[(6.02687863, 5.92446062), (7.178407523, 10.86361071), (15.30253702, 12.62863728)]] ,
"STRIDES":[8, 16, 32], "SCALES_PER_LAYER": 3}
DATASET_NAME = "train_HRSC2016"
MODEL = {"STRIDES":[8, 16, 32]}

MAX_LABEL = 1000
SHOW_HEATMAP = False
SCALE_FACTOR = 2.0
SCALE_FACTOR_A = 2.0

TRAIN = {
"Transformer_SIZE": 896,
"EVAL_TYPE": 'VOC',
"TRAIN_IMG_SIZE": 800,
"TRAIN_IMG_NUM": 79780,
"TRAIN_IMG_NUM": 63182,
"AUGMENT": True,
"MULTI_SCALE_TRAIN": True,
"MULTI_TRAIN_RANGE": [23, 28, 1],
"BATCH_SIZE": 18,
"IOU_THRESHOLD_LOSS": 0.5,
"EPOCHS": 150,
"NUMBER_WORKERS": 8,
"IOU_THRESHOLD_LOSS": 0.6,
"EPOCHS": 51,
"NUMBER_WORKERS": 12,
"MOMENTUM": 0.9,
"WEIGHT_DECAY": 0.0005,
"LR_INIT": 2e-4,
"LR_END": 1e-6,
"WARMUP_EPOCHS": 5,
"WARMUP_EPOCHS": 3,
"IOU_TYPE": 'GIOU'
}

Expand All @@ -52,15 +54,15 @@
"EVAL_JSON": 'test.json',
"EVAL_NAME": 'test',
"NUM_VIS_IMG": 0,
"TEST_IMG_SIZE": 896,
"TEST_IMG_SIZE": 800,
"BATCH_SIZE": 4,
"NUMBER_WORKERS": 16,
"CONF_THRESH": 0.06,
"NMS_THRESH": 0.4,
"NUMBER_WORKERS": 24,
"CONF_THRESH": 0.2,
"NMS_THRESH": 0.45,
"IOU_THRESHOLD": 0.5,
"NMS_METHODS": 'NMS',
"MULTI_SCALE_TEST": False,
"MULTI_TEST_RANGE": [832, 992, 32],
"MULTI_TEST_RANGE": [736, 864, 96],
"FLIP_TEST": False
}

Expand Down
9,425 changes: 9,425 additions & 0 deletions dataR/trainDroneVehicle.txt

Large diffs are not rendered by default.

17,513 changes: 17,513 additions & 0 deletions dataR/trainIR.txt

Large diffs are not rendered by default.

Binary file modified dataloadR/__pycache__/augmentations.cpython-38.pyc
Binary file not shown.
Binary file modified dataloadR/__pycache__/datasets_obb.cpython-38.pyc
Binary file not shown.
Binary file modified dataloadR/__pycache__/datasets_obb_pro.cpython-38.pyc
Binary file not shown.
Loading

0 comments on commit f90a5db

Please sign in to comment.