Spaces:
Paused
Paused
Commit
Β·
b82b288
1
Parent(s):
f5b9919
feat(debug): Add directory listing for downloaded model
Browse files
models/model_3d_generator.py
CHANGED
|
@@ -85,6 +85,10 @@ class Hunyuan3DGenerator:
|
|
| 85 |
)
|
| 86 |
logger.info(f"β
Model repository downloaded to: {self.model_path}")
|
| 87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
# --- Installation and Compilation ---
|
| 89 |
logger.info("π§ Running Hunyuan3D setup scripts with detailed logging...")
|
| 90 |
import subprocess
|
|
|
|
| 85 |
)
|
| 86 |
logger.info(f"β
Model repository downloaded to: {self.model_path}")
|
| 87 |
|
| 88 |
+
# List the contents of the downloaded directory for debugging
|
| 89 |
+
logger.info(f"π Listing contents of {self.model_path}...")
|
| 90 |
+
run_setup_command(['ls', '-R'], cwd=self.model_path)
|
| 91 |
+
|
| 92 |
# --- Installation and Compilation ---
|
| 93 |
logger.info("π§ Running Hunyuan3D setup scripts with detailed logging...")
|
| 94 |
import subprocess
|