Spaces:
Running
Running
Commit
·
7ff36f7
1
Parent(s):
4fbbca3
Update files
Browse files- app.py +6 -1
- results_il-common.csv +4 -0
app.py
CHANGED
@@ -1,9 +1,11 @@
|
|
|
|
|
|
1 |
import altair as alt
|
2 |
import polars as pl
|
3 |
|
4 |
import gradio as gr
|
5 |
|
6 |
-
DATASETS = [
|
7 |
BENCHMARKS = {
|
8 |
"Parameters": (None, None, None),
|
9 |
"CPU Rate with compile": ("cpu", False, True),
|
@@ -207,4 +209,7 @@ def app() -> None:
|
|
207 |
|
208 |
# Launch the app
|
209 |
if __name__ == "__main__":
|
|
|
|
|
|
|
210 |
app()
|
|
|
1 |
+
from pathlib import Path
|
2 |
+
|
3 |
import altair as alt
|
4 |
import polars as pl
|
5 |
|
6 |
import gradio as gr
|
7 |
|
8 |
+
DATASETS = []
|
9 |
BENCHMARKS = {
|
10 |
"Parameters": (None, None, None),
|
11 |
"CPU Rate with compile": ("cpu", False, True),
|
|
|
209 |
|
210 |
# Launch the app
|
211 |
if __name__ == "__main__":
|
212 |
+
for p in Path.glob(Path("."), "results_*.csv"):
|
213 |
+
DATASETS.append(p.stem.removeprefix("results_"))
|
214 |
+
|
215 |
app()
|
results_il-common.csv
CHANGED
@@ -19,6 +19,10 @@ crossvit 9d,CrossViT,0.8344081942336874,0.9245700556398584,0.7976736169525116,15
|
|
19 |
crossvit 9d,CrossViT,0.8344081942336874,0.9245700556398584,0.7976736169525116,15816,2619,240,false,false,19.764657090476252,8.541222,50.5953629968039,cpu,1,true,false
|
20 |
crossvit 9d,CrossViT,0.8344081942336874,0.9245700556398584,0.7976736169525116,15816,2619,240,false,false,0.2649056839504734,8.541222,3774.92843900986,cuda,512,true,false
|
21 |
crossvit 9d,CrossViT,0.8344081942336874,0.9245700556398584,0.7976736169525116,15816,2619,240,false,false,0.1489146511863736,8.541222,6715.25596731549,cuda,512,true,true
|
|
|
|
|
|
|
|
|
22 |
deit3 t16,DeiT3,0.9168563480020233,0.9677541729893778,0.890935439041065,15816,1315,256,false,false,13.375097163487226,5.600435,74.7658119994752,cpu,1,false,false
|
23 |
deit3 t16,DeiT3,0.9168563480020233,0.9677541729893778,0.890935439041065,15816,1315,256,false,false,15.331185140006708,5.600435,65.22652951274466,cpu,1,true,false
|
24 |
deit3 t16,DeiT3,0.9168563480020233,0.9677541729893778,0.890935439041065,15816,1315,256,false,false,0.2508516241698544,5.600435,3986.4202725786977,cuda,512,true,false
|
|
|
19 |
crossvit 9d,CrossViT,0.8344081942336874,0.9245700556398584,0.7976736169525116,15816,2619,240,false,false,19.764657090476252,8.541222,50.5953629968039,cpu,1,true,false
|
20 |
crossvit 9d,CrossViT,0.8344081942336874,0.9245700556398584,0.7976736169525116,15816,2619,240,false,false,0.2649056839504734,8.541222,3774.92843900986,cuda,512,true,false
|
21 |
crossvit 9d,CrossViT,0.8344081942336874,0.9245700556398584,0.7976736169525116,15816,2619,240,false,false,0.1489146511863736,8.541222,6715.25596731549,cuda,512,true,true
|
22 |
+
deit3 reg4 t16,DeiT3,0.9207764289327264,0.9692716236722306,0.8963113680968692,15816,1253,256,false,false,13.513736889013671,5.601203,73.99877681598011,cpu,1,false,false
|
23 |
+
deit3 reg4 t16,DeiT3,0.9207764289327264,0.9692716236722306,0.8963113680968692,15816,1253,256,false,false,15.809586441508147,5.601203,63.25276146215281,cpu,1,true,false
|
24 |
+
deit3 reg4 t16,DeiT3,0.9207764289327264,0.9692716236722306,0.8963113680968692,15816,1253,256,false,false,0.25044541671377374,5.601203,3992.8860073445417,cuda,512,true,false
|
25 |
+
deit3 reg4 t16,DeiT3,0.9207764289327264,0.9692716236722306,0.8963113680968692,15816,1253,256,false,false,0.1099096978076375,5.601203,9098.37821363304,cuda,512,true,true
|
26 |
deit3 t16,DeiT3,0.9168563480020233,0.9677541729893778,0.890935439041065,15816,1315,256,false,false,13.375097163487226,5.600435,74.7658119994752,cpu,1,false,false
|
27 |
deit3 t16,DeiT3,0.9168563480020233,0.9677541729893778,0.890935439041065,15816,1315,256,false,false,15.331185140006708,5.600435,65.22652951274466,cpu,1,true,false
|
28 |
deit3 t16,DeiT3,0.9168563480020233,0.9677541729893778,0.890935439041065,15816,1315,256,false,false,0.2508516241698544,5.600435,3986.4202725786977,cuda,512,true,false
|