Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,9 @@ import re
|
|
22 |
TITLE = 'DeepDanbooru String'
|
23 |
|
24 |
url = 'https://huggingface.co/spaces/yo2266911/DeepDanbooru_string/'
|
25 |
-
|
|
|
|
|
26 |
print(f'Repository ID: {repo_id}')
|
27 |
print(f'Repository type: {repo_type}')
|
28 |
MODEL_REPO = f'{repo_id}/{repo_type}'
|
|
|
22 |
TITLE = 'DeepDanbooru String'
|
23 |
|
24 |
url = 'https://huggingface.co/spaces/yo2266911/DeepDanbooru_string/'
|
25 |
+
matches = re.findall(r'https://huggingface.co/([^/]+)/([^/]+)/([^/]+)/', url)
|
26 |
+
repo_id = matches[0][1]
|
27 |
+
repo_type = matches[0][2]
|
28 |
print(f'Repository ID: {repo_id}')
|
29 |
print(f'Repository type: {repo_type}')
|
30 |
MODEL_REPO = f'{repo_id}/{repo_type}'
|