-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yassine Benzakour
committed
Jun 13, 2024
1 parent
0c17d6d
commit c159082
Showing
94 changed files
with
2,759 additions
and
2,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 16 additions & 9 deletions
25
configs/contextawarelossfunction/json_soccernet_calf_resnetpca512.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,32 @@ | ||
_base_ = [ | ||
"../_base_/datasets/json/features_clips_CALF.py", # dataset config | ||
"../_base_/models/contextawarelossfunction.py", # model config | ||
"../_base_/schedules/calf_1000_adam.py", # trainer config | ||
"../_base_/schedules/calf_1000_adam.py", # trainer config | ||
] | ||
|
||
work_dir = "outputs/contextawarelossfunction/json_soccernet_calf_resnetpca512" | ||
|
||
dataset = dict( | ||
train=dict(path='datasets_jsons/soccernetv2/features/Train.json'), | ||
valid=dict(path="datasets_jsons/soccernetv2/features/Valid.json"), | ||
test=dict(path="/scratch/users/ybenzakour/zip/features/Test.json") | ||
train=dict( | ||
path=[ | ||
"/home/ybenzakour/datasets/SoccerNet/JSON/ResNET_PCA512/train/annotations.json" | ||
], | ||
data_root=["/home/ybenzakour/datasets/SoccerNet/"], | ||
), | ||
valid=dict( | ||
path="/home/ybenzakour/datasets/SoccerNet/JSON/ResNET_PCA512/valid/annotations.json" | ||
), | ||
test=dict( | ||
path="/home/ybenzakour/datasets/SoccerNet/JSON/ResNET_PCA512/test/annotations.json" | ||
), | ||
) | ||
log_level = 'INFO' # The level of logging | ||
log_level = "INFO" # The level of logging | ||
|
||
runner = dict( | ||
type="runner_JSON" | ||
) | ||
runner = dict(type="runner_JSON") | ||
|
||
visualizer = dict( | ||
threshold=0.0, | ||
annotation_range=5000, # ms | ||
seconds_to_skip=30, | ||
scale=1.5, | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
_base_ = [ | ||
"../_base_/datasets/json/features_clips.py", # dataset config | ||
"../_base_/models/learnablepooling.py", # model config | ||
"../_base_/schedules/pooling_1000_adam.py" # trainer config | ||
] | ||
|
||
work_dir = "outputs/learnablepooling/json_avgpool++_resnetpca512" | ||
|
||
|
||
log_level = 'INFO' # The level of logging | ||
model = dict( | ||
neck=dict(type='AvgPool++', output_dim=2*512, nb_frames=20*2,), | ||
head=dict(input_dim=2*512) | ||
) | ||
runner = dict( | ||
type="runner_JSON" | ||
) | ||
|
||
visualizer = dict( | ||
threshold=0.0, | ||
annotation_range=5000, # ms | ||
seconds_to_skip=30, | ||
scale=1.5, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
_base_ = [ | ||
"../_base_/datasets/json/features_clips.py", # dataset config | ||
"../_base_/models/learnablepooling.py", # model config | ||
"../_base_/schedules/pooling_1000_adam.py" # trainer config | ||
] | ||
|
||
work_dir = "outputs/learnablepooling/json_avgpool_resnetpca512" | ||
|
||
log_level = 'INFO' # The level of logging | ||
|
||
|
||
model = dict( | ||
neck=dict(type='AvgPool', output_dim=512, nb_frames=20*2), | ||
head=dict(input_dim=512) | ||
) | ||
runner = dict( | ||
type="runner_JSON" | ||
) | ||
visualizer = dict( | ||
threshold=0.0, | ||
annotation_range=5000, # ms | ||
seconds_to_skip=30, | ||
scale=1.5, | ||
) |
Oops, something went wrong.