Spaces:
Runtime error
Runtime error
test private repository
Browse files- .idea/workspace.xml +55 -0
- app.py +1 -1
.idea/workspace.xml
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<project version="4">
|
| 3 |
+
<component name="ChangeListManager">
|
| 4 |
+
<list default="true" id="4016f698-de7a-4568-b5bc-d19c262afd65" name="Changes" comment="" />
|
| 5 |
+
<option name="SHOW_DIALOG" value="false" />
|
| 6 |
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
| 7 |
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
| 8 |
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
| 9 |
+
</component>
|
| 10 |
+
<component name="Git.Settings">
|
| 11 |
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
| 12 |
+
</component>
|
| 13 |
+
<component name="MarkdownSettingsMigration">
|
| 14 |
+
<option name="stateVersion" value="1" />
|
| 15 |
+
</component>
|
| 16 |
+
<component name="ProjectId" id="2EzS859QuzN1dajDeW7cWZN8V1y" />
|
| 17 |
+
<component name="ProjectViewState">
|
| 18 |
+
<option name="hideEmptyMiddlePackages" value="true" />
|
| 19 |
+
<option name="showLibraryContents" value="true" />
|
| 20 |
+
</component>
|
| 21 |
+
<component name="PropertiesComponent"><![CDATA[{
|
| 22 |
+
"keyToString": {
|
| 23 |
+
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
| 24 |
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
| 25 |
+
"WebServerToolWindowFactoryState": "false",
|
| 26 |
+
"last_opened_file_path": "/home/carl/HuggingFace/ShapenetExplorer"
|
| 27 |
+
}
|
| 28 |
+
}]]></component>
|
| 29 |
+
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
| 30 |
+
<component name="TaskManager">
|
| 31 |
+
<task active="true" id="Default" summary="Default task">
|
| 32 |
+
<changelist id="4016f698-de7a-4568-b5bc-d19c262afd65" name="Changes" comment="" />
|
| 33 |
+
<created>1663596756932</created>
|
| 34 |
+
<option name="number" value="Default" />
|
| 35 |
+
<option name="presentableId" value="Default" />
|
| 36 |
+
<updated>1663596756932</updated>
|
| 37 |
+
<workItem from="1663596758118" duration="4120000" />
|
| 38 |
+
</task>
|
| 39 |
+
<servers />
|
| 40 |
+
</component>
|
| 41 |
+
<component name="TypeScriptGeneratedFilesManager">
|
| 42 |
+
<option name="version" value="3" />
|
| 43 |
+
</component>
|
| 44 |
+
<component name="Vcs.Log.Tabs.Properties">
|
| 45 |
+
<option name="TAB_STATES">
|
| 46 |
+
<map>
|
| 47 |
+
<entry key="MAIN">
|
| 48 |
+
<value>
|
| 49 |
+
<State />
|
| 50 |
+
</value>
|
| 51 |
+
</entry>
|
| 52 |
+
</map>
|
| 53 |
+
</option>
|
| 54 |
+
</component>
|
| 55 |
+
</project>
|
app.py
CHANGED
|
@@ -12,7 +12,7 @@ from huggingface_hub import HfApi
|
|
| 12 |
|
| 13 |
def get_dataset_classes():
|
| 14 |
hf_api = HfApi()
|
| 15 |
-
info = hf_api.dataset_info(repo_id="simenv-explorer/
|
| 16 |
dataset_classes = defaultdict(list)
|
| 17 |
|
| 18 |
for file in info.siblings:
|
|
|
|
| 12 |
|
| 13 |
def get_dataset_classes():
|
| 14 |
hf_api = HfApi()
|
| 15 |
+
info = hf_api.dataset_info(repo_id="simenv-explorer/shapenetcore-glb")
|
| 16 |
dataset_classes = defaultdict(list)
|
| 17 |
|
| 18 |
for file in info.siblings:
|