rafaelpadilla commited on
Commit
cbe70d9
1 Parent(s): 275525a

fixing column model

Browse files
Files changed (1) hide show
  1. app.py +16 -15
app.py CHANGED
@@ -9,21 +9,22 @@ from datetime import datetime, timezone
9
  LAST_UPDATED = "September 7h 2023"
10
  GPU_MODEL = "NVIDIA Tesla M60"
11
 
12
- column_names = {"AP-IoU=0.50:0.95-area=all-maxDets=100": "AP",
13
- "AP-IoU=0.50-area=all-maxDets=100": "AP@.50",
14
- "AP-IoU=0.75-area=all-maxDets=100": "AP@.75",
15
- "AP-IoU=0.50:0.95-area=small-maxDets=100" : "AP-S",
16
- "AP-IoU=0.50:0.95-area=medium-maxDets=100": "AP-M",
17
- "AP-IoU=0.50:0.95-area=large-maxDets=100": "AP-L",
18
- "AR-IoU=0.50:0.95-area=all-maxDets=1": "AR1",
19
- "AR-IoU=0.50:0.95-area=all-maxDets=10": "AR10",
20
- "AR-IoU=0.50:0.95-area=all-maxDets=100": "AR100",
21
- "AR-IoU=0.50:0.95-area=small-maxDets=100": "AR-S",
22
- "AR-IoU=0.50:0.95-area=medium-maxDets=100": "AR-M",
23
- "AR-IoU=0.50:0.95-area=large-maxDets=100": "AR-L",
24
- "estimated_fps": "FPS(*)",
25
- "hub_license": "hub license",
26
- }
 
27
 
28
  eval_queue_repo, requested_models, csv_results = load_all_info_from_dataset_hub()
29
 
 
9
  LAST_UPDATED = "September 7h 2023"
10
  GPU_MODEL = "NVIDIA Tesla M60"
11
 
12
+ column_names = {"model": "model",
13
+ "AP-IoU=0.50:0.95-area=all-maxDets=100": "AP",
14
+ "AP-IoU=0.50-area=all-maxDets=100": "AP@.50",
15
+ "AP-IoU=0.75-area=all-maxDets=100": "AP@.75",
16
+ "AP-IoU=0.50:0.95-area=small-maxDets=100" : "AP-S",
17
+ "AP-IoU=0.50:0.95-area=medium-maxDets=100": "AP-M",
18
+ "AP-IoU=0.50:0.95-area=large-maxDets=100": "AP-L",
19
+ "AR-IoU=0.50:0.95-area=all-maxDets=1": "AR1",
20
+ "AR-IoU=0.50:0.95-area=all-maxDets=10": "AR10",
21
+ "AR-IoU=0.50:0.95-area=all-maxDets=100": "AR100",
22
+ "AR-IoU=0.50:0.95-area=small-maxDets=100": "AR-S",
23
+ "AR-IoU=0.50:0.95-area=medium-maxDets=100": "AR-M",
24
+ "AR-IoU=0.50:0.95-area=large-maxDets=100": "AR-L",
25
+ "estimated_fps": "FPS(*)",
26
+ "hub_license": "hub license",
27
+ }
28
 
29
  eval_queue_repo, requested_models, csv_results = load_all_info_from_dataset_hub()
30