Spaces:
Build error
Build error
Update Main model REPO
Browse files- .idea/workspace.xml +56 -0
- app.py +1 -1
.idea/workspace.xml
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="AutoImportSettings">
|
4 |
+
<option name="autoReloadType" value="SELECTIVE" />
|
5 |
+
</component>
|
6 |
+
<component name="ChangeListManager">
|
7 |
+
<list default="true" id="3cb50146-66c1-4999-864a-398a7d42ffa4" name="Changes" comment="">
|
8 |
+
<change afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
9 |
+
</list>
|
10 |
+
<option name="SHOW_DIALOG" value="false" />
|
11 |
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
12 |
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
13 |
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
14 |
+
</component>
|
15 |
+
<component name="Git.Settings">
|
16 |
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
17 |
+
</component>
|
18 |
+
<component name="MarkdownSettingsMigration">
|
19 |
+
<option name="stateVersion" value="1" />
|
20 |
+
</component>
|
21 |
+
<component name="ProjectId" id="2MAuSNBN7UjjKgOuJGMSmSIJgaL" />
|
22 |
+
<component name="ProjectViewState">
|
23 |
+
<option name="hideEmptyMiddlePackages" value="true" />
|
24 |
+
<option name="showLibraryContents" value="true" />
|
25 |
+
</component>
|
26 |
+
<component name="PropertiesComponent"><![CDATA[{
|
27 |
+
"keyToString": {
|
28 |
+
"ASKED_ADD_EXTERNAL_FILES": "true",
|
29 |
+
"ASKED_SHARE_PROJECT_CONFIGURATION_FILES": "true",
|
30 |
+
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
31 |
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
32 |
+
"WebServerToolWindowFactoryState": "false",
|
33 |
+
"last_opened_file_path": "D:/HF/ControlNet-Architecture",
|
34 |
+
"node.js.detected.package.eslint": "true",
|
35 |
+
"node.js.detected.package.tslint": "true",
|
36 |
+
"node.js.selected.package.eslint": "(autodetect)",
|
37 |
+
"node.js.selected.package.tslint": "(autodetect)",
|
38 |
+
"vue.rearranger.settings.migration": "true"
|
39 |
+
}
|
40 |
+
}]]></component>
|
41 |
+
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
42 |
+
<component name="TaskManager">
|
43 |
+
<task active="true" id="Default" summary="Default task">
|
44 |
+
<changelist id="3cb50146-66c1-4999-864a-398a7d42ffa4" name="Changes" comment="" />
|
45 |
+
<created>1677222707113</created>
|
46 |
+
<option name="number" value="Default" />
|
47 |
+
<option name="presentableId" value="Default" />
|
48 |
+
<updated>1677222707113</updated>
|
49 |
+
<workItem from="1677222708286" duration="1445000" />
|
50 |
+
</task>
|
51 |
+
<servers />
|
52 |
+
</component>
|
53 |
+
<component name="TypeScriptGeneratedFilesManager">
|
54 |
+
<option name="version" value="3" />
|
55 |
+
</component>
|
56 |
+
</project>
|
app.py
CHANGED
@@ -13,7 +13,7 @@ from huggingface_hub import hf_hub_url, cached_download
|
|
13 |
|
14 |
|
15 |
|
16 |
-
REPO_ID = "
|
17 |
canny_checkpoint = "models/control_sd15_canny.pth"
|
18 |
scribble_checkpoint = "models/control_sd15_scribble.pth"
|
19 |
pose_checkpoint = "models/control_sd15_openpose.pth"
|
|
|
13 |
|
14 |
|
15 |
|
16 |
+
REPO_ID = "lllyasviel/ControlNet"
|
17 |
canny_checkpoint = "models/control_sd15_canny.pth"
|
18 |
scribble_checkpoint = "models/control_sd15_scribble.pth"
|
19 |
pose_checkpoint = "models/control_sd15_openpose.pth"
|