ZiyuG commited on
Commit
c5a4ee1
1 Parent(s): d2410ba

Update demo_utils.py

Browse files
Files changed (1) hide show
  1. demo_utils.py +2 -0
demo_utils.py CHANGED
@@ -148,6 +148,8 @@ def run_demo(dataset_name, prompt_type, sample_idx, prompt_idx, voxel_size, thet
148
  #cache
149
  name_list = [args.dataset, "sample" + str(args.sample_idx), args.prompt_type + "-prompt" + str(args.prompt_idx)]
150
  name = '_'.join(name_list)
 
 
151
  np.save("./cache_results/" + name + '.npy', new_color)
152
  np.save("./cache_prompt/" + name + '.npy', PROMPT)
153
  return new_color, PROMPT
 
148
  #cache
149
  name_list = [args.dataset, "sample" + str(args.sample_idx), args.prompt_type + "-prompt" + str(args.prompt_idx)]
150
  name = '_'.join(name_list)
151
+ os.makedirs("cache_results", exist_ok=True)
152
+ os.makedirs("cache_prompt", exist_ok=True)
153
  np.save("./cache_results/" + name + '.npy', new_color)
154
  np.save("./cache_prompt/" + name + '.npy', PROMPT)
155
  return new_color, PROMPT