Spaces:
Running
on
Zero
Running
on
Zero
Update config.py
Browse files
config.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import os
|
2 |
-
|
3 |
# Configurations for inference
|
4 |
-
INFERENCE_WEIGHTS_PATH = 'weights_notagenx_p_size_16_p_length_1024_p_layers_20_h_size_1280.pth' # Path to weights for inference# Folder to save output files
|
5 |
TOP_K = 9 # Top k for sampling
|
6 |
TOP_P = 0.9 # Top p for sampling
|
7 |
TEMPERATURE = 1.2 # Temperature for sampling
|
|
|
1 |
import os
|
2 |
+
from cached_path import cached_path
|
3 |
# Configurations for inference
|
4 |
+
INFERENCE_WEIGHTS_PATH = str(cached_path('hf://ElectricAlexis/NotaGen/weights_notagenx_p_size_16_p_length_1024_p_layers_20_h_size_1280.pth')) # Path to weights for inference# Folder to save output files
|
5 |
TOP_K = 9 # Top k for sampling
|
6 |
TOP_P = 0.9 # Top p for sampling
|
7 |
TEMPERATURE = 1.2 # Temperature for sampling
|