jxwang1 commited on
Commit
7836010
·
1 Parent(s): 54ac383

make path absolute

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,7 +4,7 @@ import os
4
  import torch
5
  import trimesh
6
  import sys
7
- sys.path.append("cube")
8
  from cube3d.inference.engine import EngineFast
9
  from pathlib import Path
10
  import uuid
@@ -29,7 +29,7 @@ def gen_save_folder(max_size=200):
29
 
30
  return new_folder
31
 
32
- def handle_text_prompt(input_prompt, ):
33
  mesh_v_f = GLOBAL_STATE["engine_fast"].t2s([input_prompt], use_kv_cache=True, resolution_base=8.0)
34
  # save output
35
  vertices, faces = mesh_v_f[0][0], mesh_v_f[0][1]
 
4
  import torch
5
  import trimesh
6
  import sys
7
+ sys.path.append("/home/user/app/cube")
8
  from cube3d.inference.engine import EngineFast
9
  from pathlib import Path
10
  import uuid
 
29
 
30
  return new_folder
31
 
32
+ def handle_text_prompt(input_prompt):
33
  mesh_v_f = GLOBAL_STATE["engine_fast"].t2s([input_prompt], use_kv_cache=True, resolution_base=8.0)
34
  # save output
35
  vertices, faces = mesh_v_f[0][0], mesh_v_f[0][1]