alexnasa commited on
Commit
abe7936
·
verified ·
1 Parent(s): 0c7fd97

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -36,42 +36,42 @@ import os
36
  # FLUX.1-dev
37
  snapshot_download(
38
  repo_id="black-forest-labs/FLUX.1-dev",
39
- local_dir="./FLUX.1-dev",
40
  local_dir_use_symlinks=False
41
  )
42
 
43
  # Florence-2-large
44
  snapshot_download(
45
  repo_id="microsoft/Florence-2-large",
46
- local_dir="./Florence-2-large",
47
  local_dir_use_symlinks=False
48
  )
49
 
50
  # CLIP ViT Large
51
  snapshot_download(
52
  repo_id="openai/clip-vit-large-patch14",
53
- local_dir="./clip-vit-large-patch14",
54
  local_dir_use_symlinks=False
55
  )
56
 
57
  # DINO ViT-s16
58
  snapshot_download(
59
  repo_id="facebook/dino-vits16",
60
- local_dir="./dino-vits16",
61
  local_dir_use_symlinks=False
62
  )
63
 
64
  # mPLUG Visual Question Answering
65
  snapshot_download(
66
  repo_id="xingjianleng/mplug_visual-question-answering_coco_large_en",
67
- local_dir="./mplug_visual-question-answering_coco_large_en",
68
  local_dir_use_symlinks=False
69
  )
70
 
71
  # XVerse
72
  snapshot_download(
73
  repo_id="ByteDance/XVerse",
74
- local_dir="./XVerse",
75
  local_dir_use_symlinks=False
76
  )
77
 
 
36
  # FLUX.1-dev
37
  snapshot_download(
38
  repo_id="black-forest-labs/FLUX.1-dev",
39
+ local_dir="./checkpoints/FLUX.1-dev",
40
  local_dir_use_symlinks=False
41
  )
42
 
43
  # Florence-2-large
44
  snapshot_download(
45
  repo_id="microsoft/Florence-2-large",
46
+ local_dir="./checkpoints/Florence-2-large",
47
  local_dir_use_symlinks=False
48
  )
49
 
50
  # CLIP ViT Large
51
  snapshot_download(
52
  repo_id="openai/clip-vit-large-patch14",
53
+ local_dir="./checkpoints/clip-vit-large-patch14",
54
  local_dir_use_symlinks=False
55
  )
56
 
57
  # DINO ViT-s16
58
  snapshot_download(
59
  repo_id="facebook/dino-vits16",
60
+ local_dir="./checkpoints/dino-vits16",
61
  local_dir_use_symlinks=False
62
  )
63
 
64
  # mPLUG Visual Question Answering
65
  snapshot_download(
66
  repo_id="xingjianleng/mplug_visual-question-answering_coco_large_en",
67
+ local_dir="./checkpoints/mplug_visual-question-answering_coco_large_en",
68
  local_dir_use_symlinks=False
69
  )
70
 
71
  # XVerse
72
  snapshot_download(
73
  repo_id="ByteDance/XVerse",
74
+ local_dir="./checkpoints/XVerse",
75
  local_dir_use_symlinks=False
76
  )
77