yo2266911 commited on
Commit
faf2ace
·
1 Parent(s): 2d60104

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -22,7 +22,9 @@ import re
22
  TITLE = 'DeepDanbooru String'
23
 
24
  url = 'https://huggingface.co/spaces/yo2266911/DeepDanbooru_string/'
25
- repo_id, repo_type = re.findall(r'https://huggingface.co/([^/]+)/([^/]+)/', url)
 
 
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}'