Skip to content

Commit 740c852

Browse files
jianwensongfracape
authored andcommitted
[feat] NNpart2 hyperparameters and mse calculation
1 parent 42b0068 commit 740c852

File tree

10 files changed

+348
-50
lines changed

10 files changed

+348
-50
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ Fabien Racapé, Hyomin Choi, Eimran Eimon, Sampsa Riikonen, Jacky Yat-Hong Lam
157157
* [JDE](https://github.com/Zhongdao/Towards-Realtime-MOT.git)
158158
* [YOLOX](https://github.com/Megvii-BaseDetection/YOLOX)
159159
* [MMPOSE RTMO](https://github.com/open-mmlab/mmpose/tree/main/projects/rtmo)
160-
* [Segment Anything](https://github.com/facebookresearch/segment-anything/tree/main)
160+
* [Segment Anything](https://github.com/facebookresearch/segment-anything/tree/main)

cfgs/evaluator/default.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
type: "COCO-EVAL"
22
output_dir: "${pipeline.evaluation.evaluation_dir}"
33
overwrite_results: False
4+
calculate_feature_mse: False
45
eval_criteria: ""

compressai_vision/evaluators/base_evaluator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_miou_eval_info_name(name):
8181
def reset(self):
8282
raise NotImplementedError
8383

84-
def digest(self, gt, pred):
84+
def digest(self, gt, pred, mse_results=None):
8585
raise NotImplementedError
8686

8787
def results(self, save_path: str = None):

0 commit comments

Comments
 (0)