Nick088 commited on
Commit
405c592
Β·
verified Β·
1 Parent(s): 5bd04c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -42,9 +42,10 @@ def run_inference(prompt, stable_diffusion_model, num_inference_steps, guidance_
42
 
43
  os.system(command_3d_model)
44
 
 
45
 
46
  # Return the generated image and the processed model
47
- return os.path.join(f"Stable_Diffusion_Finetuned_Minecraft_Skin_Generator/output_minecraft_skins/{filename}"), os.path.join(f"Stable_Diffusion_Finetuned_Minecraft_Skin_Generator/output_minecraft_skins/{filename}_3d_model.glb")
48
 
49
 
50
 
 
42
 
43
  os.system(command_3d_model)
44
 
45
+ os.chdir("..")
46
 
47
  # Return the generated image and the processed model
48
+ return os.path.join(f"output_minecraft_skins/{filename}"), os.path.join(f"output_minecraft_skins/{filename}_3d_model.glb")
49
 
50
 
51