ADD file via upload

This commit is contained in:
pvf8p2eo4 2021-10-24 12:59:24 +08:00
parent 5d249046f3
commit a3c8f9ff45
1 changed files with 27 additions and 0 deletions

27
gaitset/config.py Normal file
View File

@ -0,0 +1,27 @@
conf = {
"WORK_PATH": "./work",
"CUDA_VISIBLE_DEVICES": "0,1,2,3",
"data": {
'dataset_path': "your_dataset_path",
'resolution': '64',
'dataset': 'CASIA-B',
# In CASIA-B, data of subject #5 is incomplete.
# Thus, we ignore it in training.
# For more detail, please refer to
# function: utils.data_loader.load_data
'pid_num': 73,
'pid_shuffle': False,
},
"model": {
'hidden_dim': 256,
'lr': 1e-4,
'hard_or_full_trip': 'full',
'batch_size': (8, 16),
'restore_iter': 0,
'total_iter': 80000,
'margin': 0.2,
'num_workers': 3,
'frame_num': 30,
'model_name': 'GaitSet',
},
}