Spaces:
Sleeping
Sleeping
Commit
·
ef4cf6a
1
Parent(s):
ec6a80f
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ max_new_tokens = 500 # number of tokens generated in each sample
|
|
16 |
temperature = 0.8 # 1.0 = no change, < 1.0 = less random, > 1.0 = more random, in predictions
|
17 |
top_k = 200 # retain only the top_k most likely tokens, clamp others to have 0 probability
|
18 |
seed = 1337
|
19 |
-
device = '
|
20 |
dtype = 'bfloat16' if torch.cuda.is_available() and torch.cuda.is_bf16_supported() else 'float16' # 'float32' or 'bfloat16' or 'float16'
|
21 |
compile = False # use PyTorch 2.0 to compile the model to be faster
|
22 |
# -----------------------------------------------------------------------------
|
|
|
16 |
temperature = 0.8 # 1.0 = no change, < 1.0 = less random, > 1.0 = more random, in predictions
|
17 |
top_k = 200 # retain only the top_k most likely tokens, clamp others to have 0 probability
|
18 |
seed = 1337
|
19 |
+
device = 'cpu' # examples: 'cpu', 'cuda', 'cuda:0', 'cuda:1', etc.
|
20 |
dtype = 'bfloat16' if torch.cuda.is_available() and torch.cuda.is_bf16_supported() else 'float16' # 'float32' or 'bfloat16' or 'float16'
|
21 |
compile = False # use PyTorch 2.0 to compile the model to be faster
|
22 |
# -----------------------------------------------------------------------------
|