-
Notifications
You must be signed in to change notification settings - Fork 14
How to run encoding
Zaid Kokaja edited this page Jan 27, 2021
·
1 revision
Here are example Makefile configurations that you can set, then run with make run-encoding or make run-encoding-slurm.
# 625 Electrode IDs
E_LIST := $(shell seq 1 64)
# Choose the subject to run for
SID := 625
# Choose the lags to run for.
LAGS := {-5000..5000..25}
# Choose which set of embeddings to use
EMB := gpt2
# Choose the window size to average for each point
WS := 200
# 625 Electrode IDs
E_LIST := 11 17
# Choose the subject to run for
SID := 625
# Choose the lags to run for.
LAGS := {-5000..5000..25}
# Choose which set of embeddings to use
EMB := gpt2
# Choose the window size to average for each point
WS := 200
# Choose whether to PCA the embeddings before regressing or not
PCA := --pca-flag
PCA_TO := 50
# 676 Electrode IDs
E_LIST := $(shell seq 1 64)
# Choose the subject to run for
SID := 676
# Choose the lags to run for.
LAGS := {-2000..2000..50}
# Choose which set of embeddings to use
EMB := glove50d
# Choose whether to label or phase shuffle
SH := --shuffle
# Choose the window size to average for each point
WS := 200