Skip to content

Commit 6b99662

Browse files
Update generative-proof-of-concept-CPU-preprocessing-in-memory.py
Run intermediate number of samples on same params: 10 samples -> perplexity of ~ 10 - 11 200 samples -> perplexity of ~ 21 See at which data set size the weights saturate with this dimensionality.
1 parent 5f6840e commit 6b99662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generative-proof-of-concept-CPU-preprocessing-in-memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def objective(trial: optuna.Trial) -> float:
5959
# Number of text samples to create: # Number of text samples (of approximately max_seq_len) to create
6060
# Raises RAM in a linear fashion
6161

62-
SAMPLES_TO_CREATE = 200
62+
SAMPLES_TO_CREATE = 50 # 200
6363

6464
# How many tokens to provide before expecting the next token to be predicted.
6565
# Half this = double RAM (inversely proportional to RAM requirement)

0 commit comments

Comments
 (0)