Spaces:
Runtime error
Runtime error
lixuejing
commited on
Commit
·
eae8901
1
Parent(s):
cd635eb
update
Browse files- app.py +1 -0
- src/about.py +3 -3
app.py
CHANGED
|
@@ -104,6 +104,7 @@ def update_table(
|
|
| 104 |
hide_models: list,
|
| 105 |
query: str,
|
| 106 |
):
|
|
|
|
| 107 |
filtered_df = filter_models(df=hidden_df, type_query=type_query, size_query=size_query, precision_query=precision_query, hide_models=hide_models)
|
| 108 |
filtered_df = filter_queries(query, filtered_df)
|
| 109 |
df = select_columns(filtered_df, columns)
|
|
|
|
| 104 |
hide_models: list,
|
| 105 |
query: str,
|
| 106 |
):
|
| 107 |
+
print("query", query)
|
| 108 |
filtered_df = filter_models(df=hidden_df, type_query=type_query, size_query=size_query, precision_query=precision_query, hide_models=hide_models)
|
| 109 |
filtered_df = filter_queries(query, filtered_df)
|
| 110 |
df = select_columns(filtered_df, columns)
|
src/about.py
CHANGED
|
@@ -37,8 +37,8 @@ class Quotas(Enum):
|
|
| 37 |
SpatialReasoning_rs = Task("SpatialReasoning", "Relative shape", "SR_Rs")
|
| 38 |
SpatialReasoning_se = Task("SpatialReasoning", "Size estimation", "SR_Se")
|
| 39 |
Prediction = Task("Prediction", "overall", "Prediction")
|
| 40 |
-
Prediction_T = Task("Prediction", "Trajectory", "
|
| 41 |
-
Prediction_F = Task("Prediction", "Future prediction",
|
| 42 |
Planning = Task("Planning", "overall", "Planning")
|
| 43 |
Planning_G = Task("Planning", "Goal Decomposition", "P_GD")
|
| 44 |
Planning_N = Task("Planning", "Navigation", "P_N")
|
|
@@ -158,7 +158,7 @@ SpatialReasoning
|
|
| 158 |
|
| 159 |
Prediction
|
| 160 |
- Prediction_Trajectory(P_T)
|
| 161 |
-
-
|
| 162 |
|
| 163 |
Planning
|
| 164 |
- Planning_Goal Decomposition(P_GD)
|
|
|
|
| 37 |
SpatialReasoning_rs = Task("SpatialReasoning", "Relative shape", "SR_Rs")
|
| 38 |
SpatialReasoning_se = Task("SpatialReasoning", "Size estimation", "SR_Se")
|
| 39 |
Prediction = Task("Prediction", "overall", "Prediction")
|
| 40 |
+
Prediction_T = Task("Prediction", "Trajectory", "P_T")
|
| 41 |
+
Prediction_F = Task("Prediction", "Future prediction",P_Fp")
|
| 42 |
Planning = Task("Planning", "overall", "Planning")
|
| 43 |
Planning_G = Task("Planning", "Goal Decomposition", "P_GD")
|
| 44 |
Planning_N = Task("Planning", "Navigation", "P_N")
|
|
|
|
| 158 |
|
| 159 |
Prediction
|
| 160 |
- Prediction_Trajectory(P_T)
|
| 161 |
+
- Prediction_Future prediction(P_Fp)
|
| 162 |
|
| 163 |
Planning
|
| 164 |
- Planning_Goal Decomposition(P_GD)
|