Spaces:
Running
Running
[email protected]
commited on
Commit
·
0885182
1
Parent(s):
95f7c57
test
Browse files- src/about.py +11 -10
src/about.py
CHANGED
@@ -22,16 +22,17 @@ class Tasks(Enum):
|
|
22 |
class AssetTasks(Enum):
|
23 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
24 |
task0 = Task("acc_electric_motor", "acc_electric_motor", "acc_electric_motor")
|
25 |
-
task1 = Task("acc_steam_turbine", "acc_steam_turbine", "acc_steam_turbine")
|
26 |
-
task2 = Task("acc_aero_gas_turbine", "acc_aero_gas_turbine", "acc_aero_gas_turbine")
|
27 |
-
task3 = Task("acc_industrial_gas_turbine", "acc_industrial_gas_turbine", "acc_industrial_gas_turbine")
|
28 |
-
task4 = Task("acc_pump", "acc_pump", "acc_pump")
|
29 |
-
task5 = Task("acc_compressor", "acc_compressor", "acc_compressor")
|
30 |
-
task6 = Task("acc_reciprocating_internal_combustion_engine", "acc_reciprocating_internal_combustion_engine", "acc_reciprocating_internal_combustion_engine")
|
31 |
-
task7 = Task("acc_electric_generator", "acc_electric_generator", "acc_electric_generator")
|
32 |
-
task8 = Task("acc_fan", "acc_fan", "acc_fan")
|
33 |
-
task9 = Task("acc_power_transformer", "acc_power_transformer", "acc_power_transformer")
|
34 |
-
|
|
|
35 |
NUM_FEWSHOT = 0 # Change with your few shot
|
36 |
# ---------------------------------------------------
|
37 |
# "results": {"acc_overall": {"acc": 0.22797150356205476}, "acc_sel": {"acc_sel": 0.16170212765957448}, "acc_el": {"acc_el": 0.3669724770642202}, "acc_perturb": {"perturb_score": 0.161604799400075}, "score_consistency": {"consist_score": 0.048743907011623545}, "uncertainty": {"uncertainty_score": 0}}, "acc_electric motor": 0.2863247863247863, "acc_steam turbine": 0.19298245614035087, "acc_aero gas turbine": 0.1875, "acc_industrial gas turbine": 0.19166666666666668, "acc_pump": 0.23684210526315788, "acc_compressor": 0.20454545454545456, "acc_reciprocating internal combustion engine": 0.32142857142857145, "acc_electric generator": 0.2222222222222222, "acc_fan": 0.27, "acc_power transformer": 0.19117647058823528}
|
|
|
22 |
class AssetTasks(Enum):
|
23 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
24 |
task0 = Task("acc_electric_motor", "acc_electric_motor", "acc_electric_motor")
|
25 |
+
# task1 = Task("acc_steam_turbine", "acc_steam_turbine", "acc_steam_turbine")
|
26 |
+
# task2 = Task("acc_aero_gas_turbine", "acc_aero_gas_turbine", "acc_aero_gas_turbine")
|
27 |
+
# task3 = Task("acc_industrial_gas_turbine", "acc_industrial_gas_turbine", "acc_industrial_gas_turbine")
|
28 |
+
# task4 = Task("acc_pump", "acc_pump", "acc_pump")
|
29 |
+
# task5 = Task("acc_compressor", "acc_compressor", "acc_compressor")
|
30 |
+
# task6 = Task("acc_reciprocating_internal_combustion_engine", "acc_reciprocating_internal_combustion_engine", "acc_reciprocating_internal_combustion_engine")
|
31 |
+
# task7 = Task("acc_electric_generator", "acc_electric_generator", "acc_electric_generator")
|
32 |
+
# task8 = Task("acc_fan", "acc_fan", "acc_fan")
|
33 |
+
# task9 = Task("acc_power_transformer", "acc_power_transformer", "acc_power_transformer")
|
34 |
+
|
35 |
+
|
36 |
NUM_FEWSHOT = 0 # Change with your few shot
|
37 |
# ---------------------------------------------------
|
38 |
# "results": {"acc_overall": {"acc": 0.22797150356205476}, "acc_sel": {"acc_sel": 0.16170212765957448}, "acc_el": {"acc_el": 0.3669724770642202}, "acc_perturb": {"perturb_score": 0.161604799400075}, "score_consistency": {"consist_score": 0.048743907011623545}, "uncertainty": {"uncertainty_score": 0}}, "acc_electric motor": 0.2863247863247863, "acc_steam turbine": 0.19298245614035087, "acc_aero gas turbine": 0.1875, "acc_industrial gas turbine": 0.19166666666666668, "acc_pump": 0.23684210526315788, "acc_compressor": 0.20454545454545456, "acc_reciprocating internal combustion engine": 0.32142857142857145, "acc_electric generator": 0.2222222222222222, "acc_fan": 0.27, "acc_power transformer": 0.19117647058823528}
|