Maikou commited on
Commit
97ab30a
1 Parent(s): 60b3122
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -46,13 +46,12 @@ text_model_config_dict = OrderedDict({
46
  },
47
  })
48
 
49
- model_path = snapshot_download(repo_id="Maikou/Michelangelo", use_auth_token=download_michelangelo)
50
 
51
  class InferenceModel(object):
52
  model = None
53
  name = ""
54
 
55
-
56
  text2mesh_model = InferenceModel()
57
  image2mesh_model = InferenceModel()
58
 
 
46
  },
47
  })
48
 
49
+ model_path = snapshot_download(repo_id="Maikou/Michelangelo")
50
 
51
  class InferenceModel(object):
52
  model = None
53
  name = ""
54
 
 
55
  text2mesh_model = InferenceModel()
56
  image2mesh_model = InferenceModel()
57