2024-05-26 15:59:05 +02:00
name : EXAMPLE
2024-05-27 17:00:02 +02:00
feature_extractor :
2024-05-27 17:07:00 +02:00
input_size : 1953 # Input size for the Feature Extractor (length of snippets). (=0.1s)
transforms :
- type : 'identity' # Pass the last n samples of the input data directly.
length : 8 # Number of last samples to pass directly. Use full input size if set to null.
- type : 'fourier' # Apply Fourier transform to the input data.
length : null # Use full input size if set to null. Fourier transform outputs both real and imaginary parts, doubling the size. (Computationally expensive)
2024-05-28 12:54:07 +02:00
- type: 'wavelet' # (Pro Tip : Discrete Meyer are great for recognizing spikes)
wavelet_type : 'dmey' # Discrete Meyer wavelets offer good frequency localization, ideal for signals with oscillatory components.
length : null # Use full input size if set to null. (Computationally expensive)
2024-05-27 17:07:00 +02:00
- type : 'wavelet'
wavelet_type : 'db1' # Daubechies wavelets provide a balance between time and frequency localization.
length : null # Use full input size if set to null. (Computationally expensive)
- type : 'wavelet'
wavelet_type : 'sym2' # Symlet wavelets are nearly symmetrical, offering improved phase characteristics over Daubechies.
length : null # Use full input size if set to null. (Computationally expensive)
- type : 'wavelet'
wavelet_type : 'coif1' # Coiflet wavelets have more vanishing moments, suitable for capturing polynomial trends.
length : null # Use full input size if set to null. (Computationally expensive)
- type : 'wavelet'
wavelet_type : 'bior1.3' # Biorthogonal wavelets provide perfect reconstruction and linear phase characteristics.
length : null # Use full input size if set to null. (Computationally expensive)
- type : 'wavelet'
wavelet_type : 'rbio1.3' # Reverse Biorthogonal wavelets are similar to Biorthogonal but optimized for different applications.
length : null # Use full input size if set to null. (Computationally expensive)
- type : 'wavelet'
2024-05-28 12:54:07 +02:00
wavelet_type : 'haar' # Haar wavelet is simple and fast, but may not capture detailed features well.
length : null # Use full input size if set to null.
2024-05-27 17:07:00 +02:00
- type : 'wavelet'
2024-05-28 12:54:07 +02:00
wavelet_type : 'cgau1' # Complex Gaussian wavelets are used for complex-valued signal analysis and capturing phase information.
length : null # Use full input size if set to null.
2024-05-27 17:00:02 +02:00
2024-05-26 15:59:05 +02:00
latent_projector :
2024-05-28 17:03:54 +02:00
type: 'fc' # Type of latent projector: 'fc', 'rnn' (Recommended : fc)
2024-05-26 15:59:05 +02:00
latent_size : 4 # Size of the latent representation before message passing.
layer_shapes : [ 32 , 8 ] # List of layer sizes for the latent projector if type is 'fc' or 'fourier'.
activations : [ 'ReLU' , 'ReLU' ] # Activation functions for the latent projector layers if type is 'fc' or 'fourier'.
rnn_hidden_size : 4 # Hidden size for the RNN projector if type is 'rnn'.
rnn_num_layers : 1 # Number of layers for the RNN projector if type is 'rnn'.
middle_out :
region_latent_size : 4 # Size of the latent representation after message passing.
residual : false # Wether to use a ResNet style setup. Requires region_latent_size = latent_size
num_peers : 3 # Number of closest peers to consider.
predictor :
layer_shapes : [ 3 ] # List of layer sizes for the predictor.
activations : [ 'ReLU' ] # Activation functions for the predictor layers.
training :
epochs : 1024 # Number of training epochs.
batch_size : 32 # Batch size for training.
num_batches : 1 # Number of batches per epoch.
learning_rate : 0.01 # Learning rate for the optimizer.
2024-05-26 17:42:03 +02:00
peer_gradients_factor : 0.33 # Factor for gradients acting on predictor throught peers. 0.0 = detach gradients.
value_scale : 1 # Normalize data by dividing values by this (and multiple outputs)
2024-05-27 10:29:15 +02:00
eval_freq : 8 # Frequency of evaluation during training (in epochs).
2024-05-26 15:59:05 +02:00
save_path : models # Directory to save the best model and encoder.
evaluation :
full_compression : false # Perform full compression during evaluation.
bitstream_encoding :
2024-05-28 17:03:54 +02:00
type: rice # Bitstream encoding type: 'identity', 'rice', 'binomHuffman', 'bzip2', 'arithmetic' (Recommended : rice)
k : 2 # k value if type is 'rice'
2024-05-26 15:59:05 +02:00
data :
url : https://content.neuralink.com/compression-challenge/data.zip # URL to download the dataset.
directory : data # Directory to extract and store the dataset.
split_ratio : 0.8 # Ratio to split the data into train and test sets.
cut_length : null # Optional length to cut sequences to.
profiler :
enable : false # Enable profiler.
---
2024-05-24 22:01:59 +02:00
name : DEFAULT
2024-05-28 12:54:07 +02:00
project : Spikey_3
2024-05-24 22:01:59 +02:00
slurm :
name : 'Spikey_{config[name]}'
partitions :
- single
standard_output : ./reports/slurm/out_%A_%a.log
standard_error : ./reports/slurm/err_%A_%a.log
num_parallel_jobs : 50
2024-05-25 01:20:24 +02:00
cpus_per_task : 8
memory_per_cpu : 4000
2024-05-24 22:01:59 +02:00
time_limit : 1440 # in minutes
ntasks : 1
venv : '.venv/bin/activate'
sh_lines :
- 'mkdir -p {tmp}/wandb'
- 'mkdir -p {tmp}/local_pycache'
- 'export PYTHONPYCACHEPREFIX={tmp}/local_pycache'
runner : spikey
scheduler :
reps_per_version : 1
2024-05-26 17:42:03 +02:00
agents_per_job : 8
2024-05-24 22:01:59 +02:00
reps_per_agent : 1
wandb :
project : '{config[project]}'
group : '{config[name]}'
job_type : '{delta_desc}'
name : '{job_id}_{task_id}:{run_id}:{rand}={config[name]}_{delta_desc}'
2024-05-24 23:02:24 +02:00
#tags:
# - '{config[env][name]}'
# - '{config[algo][name]}'
2024-05-26 17:42:03 +02:00
sync_tensorboard : false
monitor_gym : false
save_code : false
2024-05-24 22:01:59 +02:00
2024-05-26 00:28:33 +02:00
evaluation :
2024-05-26 15:59:05 +02:00
full_compression : false
2024-05-26 00:28:33 +02:00
bitstream_encoding :
2024-05-27 10:29:15 +02:00
type : binomHuffman
2024-05-26 00:28:33 +02:00
data :
2024-05-26 15:59:05 +02:00
url : https://content.neuralink.com/compression-challenge/data.zip
directory : data
split_ratio : 0.8
cut_length : null
2024-05-26 00:28:33 +02:00
profiler :
enable : false
training :
2024-05-27 10:29:15 +02:00
eval_freq : 8
2024-05-26 15:59:05 +02:00
save_path : models
2024-05-26 17:42:03 +02:00
peer_gradients_factor : 0.25
2024-05-28 12:54:07 +02:00
value_scale : 1
2024-05-26 23:56:28 +02:00
device : cpu
2024-05-26 15:59:05 +02:00
middle_out :
2024-05-26 17:42:03 +02:00
residual : false
2024-05-24 22:01:59 +02:00
---
2024-05-28 12:54:07 +02:00
name : FC_smol_master6
2024-05-24 23:02:24 +02:00
import : $
2024-05-24 22:01:59 +02:00
2024-05-27 17:07:00 +02:00
feature_extractor :
2024-05-28 12:54:07 +02:00
input_size : 195
2024-05-27 17:07:00 +02:00
transforms :
2024-05-28 12:54:07 +02:00
- type : 'identity' # Pass the last n samples of the input data directly.
scheduler :
reps_per_version : 8
agents_per_job : 8
2024-05-27 17:07:00 +02:00
2024-05-25 17:31:08 +02:00
latent_projector :
2024-05-26 15:59:05 +02:00
type : fc
2024-05-28 12:54:07 +02:00
latent_size : 6
layer_shapes : [ 20 , 6 ]
2024-05-26 15:59:05 +02:00
activations : [ 'ReLU' , 'ReLU' ]
2024-05-25 17:31:08 +02:00
middle_out :
2024-05-28 12:54:07 +02:00
region_latent_size : 6
2024-05-26 15:59:05 +02:00
num_peers : 3
2024-05-26 17:42:03 +02:00
residual : true
2024-05-24 22:01:59 +02:00
predictor :
2024-05-26 15:59:05 +02:00
layer_shapes : [ 3 ]
activations : [ 'ReLU' ]
2024-05-24 22:01:59 +02:00
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 15:59:05 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
2024-05-28 12:54:07 +02:00
device : cpu
eval_freq : 16
2024-05-26 00:28:33 +02:00
---
2024-05-28 12:54:07 +02:00
name : Smol_Feat_fourier
2024-05-26 00:28:33 +02:00
import : $
2024-05-24 22:01:59 +02:00
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : fourier
#- type: 'wavelet'
# wavelet_type: 'haar' # 'db1' # 'sym2', 'coif1', 'bior1.3', 'rbio1.3', 'dmey', 'morl', 'haar', 'cgau1'
- type : identity
length : 195
scheduler :
reps_per_version : 1
agents_per_job : 1
2024-05-26 00:28:33 +02:00
latent_projector :
2024-05-26 15:59:05 +02:00
type : fc
latent_size : 4
2024-05-28 12:54:07 +02:00
layer_shapes : [ 20 , 6 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' , 'ReLU' ]
2024-05-25 17:31:08 +02:00
2024-05-26 00:28:33 +02:00
middle_out :
2024-05-26 17:42:03 +02:00
region_latent_size : 4
2024-05-28 12:54:07 +02:00
num_peers : 2
2024-05-26 17:42:03 +02:00
residual : true
2024-05-24 22:01:59 +02:00
2024-05-26 00:28:33 +02:00
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 2 ]
2024-05-26 15:59:05 +02:00
activations : [ 'ReLU' ]
2024-05-24 23:02:24 +02:00
2024-05-26 00:28:33 +02:00
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 17:42:03 +02:00
batch_size : 32
2024-05-26 15:59:05 +02:00
num_batches : 1
learning_rate : 0.01
2024-05-26 17:42:03 +02:00
device : cpu
2024-05-26 00:28:33 +02:00
---
2024-05-28 12:54:07 +02:00
name : Smol_Feat_db1_1
2024-05-26 00:28:33 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'db1' # 'sym2', 'coif1', 'bior1.3', 'rbio1.3', 'dmey', 'morl', 'haar', 'cgau1'
- type : identity
length : 195
scheduler :
reps_per_version : 1
agents_per_job : 1
2024-05-26 00:28:33 +02:00
latent_projector :
2024-05-28 12:54:07 +02:00
type : fc
2024-05-26 15:59:05 +02:00
latent_size : 4
2024-05-28 12:54:07 +02:00
layer_shapes : [ 20 , 6 ]
activations : [ 'ReLU' , 'ReLU' ]
2024-05-26 00:28:33 +02:00
middle_out :
2024-05-26 15:59:05 +02:00
region_latent_size : 4
2024-05-28 12:54:07 +02:00
num_peers : 2
2024-05-26 17:42:03 +02:00
residual : true
2024-05-26 00:28:33 +02:00
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 2 ]
2024-05-26 15:59:05 +02:00
activations : [ 'ReLU' ]
2024-05-26 00:28:33 +02:00
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 17:42:03 +02:00
batch_size : 32
2024-05-28 12:54:07 +02:00
num_batches : 1
2024-05-26 15:59:05 +02:00
learning_rate : 0.01
2024-05-28 12:54:07 +02:00
device : cpu
2024-05-26 17:42:03 +02:00
---
2024-05-28 12:54:07 +02:00
name : Smol_Feat_sym2_1
2024-05-26 17:42:03 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'sym2'
- type : identity
length : 195
2024-05-26 17:42:03 +02:00
2024-05-28 12:54:07 +02:00
scheduler :
reps_per_version : 1
agents_per_job : 1
2024-05-26 17:42:03 +02:00
latent_projector :
type : fc
latent_size : 4
2024-05-28 12:54:07 +02:00
layer_shapes : [ 20 , 6 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
region_latent_size : 4
num_peers : 2
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 2 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
batch_size : 32
2024-05-26 17:42:03 +02:00
num_batches : 1
learning_rate : 0.01
device : cpu
---
2024-05-28 12:54:07 +02:00
name : Smol_Feat_coif1_1
2024-05-26 17:42:03 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'coif1'
- type : identity
length : 195
scheduler :
reps_per_version : 1
agents_per_job : 1
2024-05-26 17:42:03 +02:00
latent_projector :
type : fc
latent_size : 4
2024-05-28 12:54:07 +02:00
layer_shapes : [ 20 , 6 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
region_latent_size : 4
2024-05-28 12:54:07 +02:00
num_peers : 2
2024-05-26 17:42:03 +02:00
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 2 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
batch_size : 32
2024-05-26 17:42:03 +02:00
num_batches : 1
learning_rate : 0.01
device : cpu
---
2024-05-28 12:54:07 +02:00
name : Smol_Feat_haar_1
2024-05-26 17:42:03 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'haar'
- type : identity
length : 195
scheduler :
reps_per_version : 1
agents_per_job : 1
2024-05-26 17:42:03 +02:00
latent_projector :
type : fc
latent_size : 4
2024-05-28 12:54:07 +02:00
layer_shapes : [ 20 , 6 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
region_latent_size : 4
2024-05-28 12:54:07 +02:00
num_peers : 2
2024-05-26 17:42:03 +02:00
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 2 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 17:42:03 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
device : cpu
---
2024-05-28 12:54:07 +02:00
name : Smol_Feat_dmey_1
2024-05-26 17:42:03 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'dmey'
- type : identity
length : 195
scheduler :
reps_per_version : 1
agents_per_job : 1
2024-05-26 17:42:03 +02:00
latent_projector :
type : fc
latent_size : 4
2024-05-28 12:54:07 +02:00
layer_shapes : [ 20 , 6 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
region_latent_size : 4
2024-05-28 12:54:07 +02:00
num_peers : 2
2024-05-26 17:42:03 +02:00
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 2 ]
2024-05-26 17:42:03 +02:00
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 17:42:03 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
device : cpu
2024-05-26 23:56:28 +02:00
---
2024-05-28 12:54:07 +02:00
name : Proto_1
2024-05-26 23:56:28 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'dmey'
- type : identity
length : 195
2024-05-26 23:56:28 +02:00
scheduler :
reps_per_version : 8
agents_per_job : 8
latent_projector :
type : fc
2024-05-28 12:54:07 +02:00
latent_size : 8
layer_shapes : [ 24 , 12 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
2024-05-28 12:54:07 +02:00
region_latent_size : 8
num_peers : 3
2024-05-26 23:56:28 +02:00
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 4 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' ]
training :
epochs : 10000
batch_size : 32
num_batches : 1
learning_rate : 0.01
device : cpu
2024-05-28 12:54:07 +02:00
evaluation :
full_compression : true
2024-05-26 23:56:28 +02:00
---
2024-05-28 12:54:07 +02:00
name : Proto_2
2024-05-26 23:56:28 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'dmey'
- type : identity
length : 195
scheduler :
reps_per_version : 4
agents_per_job : 4
2024-05-26 23:56:28 +02:00
latent_projector :
type : fc
2024-05-28 12:54:07 +02:00
latent_size : 8
layer_shapes : [ 24 , 12 ]
activations : [ 'ReLU' , 'ReLU' ]
2024-05-26 23:56:28 +02:00
middle_out :
2024-05-28 12:54:07 +02:00
region_latent_size : 8
num_peers : 3
2024-05-26 23:56:28 +02:00
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 4 ]
activations : [ 'ReLU' ]
2024-05-26 23:56:28 +02:00
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 23:56:28 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
device : cpu
2024-05-28 12:54:07 +02:00
bitstream_encoding :
type : rice
evaluation :
full_compression : true
2024-05-26 23:56:28 +02:00
---
2024-05-28 12:54:07 +02:00
name : Proto_Light_0
2024-05-26 23:56:28 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : identity
length : 195
scheduler :
reps_per_version : 8
agents_per_job : 8
2024-05-26 23:56:28 +02:00
latent_projector :
2024-05-28 12:54:07 +02:00
type : fc
latent_size : 8
layer_shapes : [ 24 , 12 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
2024-05-28 12:54:07 +02:00
region_latent_size : 8
2024-05-26 23:56:28 +02:00
num_peers : 3
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 4 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 23:56:28 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
2024-05-28 12:54:07 +02:00
device : cpu
2024-05-26 23:56:28 +02:00
---
2024-05-28 12:54:07 +02:00
name : Proto_3_Light_SmolInp
2024-05-26 23:56:28 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : identity
length : 19
scheduler :
reps_per_version : 2
agents_per_job : 2
2024-05-26 23:56:28 +02:00
latent_projector :
2024-05-28 12:54:07 +02:00
type : fc
2024-05-26 23:56:28 +02:00
latent_size : 8
2024-05-28 12:54:07 +02:00
layer_shapes : [ 24 , 12 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
region_latent_size : 8
num_peers : 3
residual : true
predictor :
layer_shapes : [ 4 ]
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 23:56:28 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
2024-05-28 12:54:07 +02:00
device : cpu
bitstream_encoding :
type : rice
evaluation :
full_compression : true
2024-05-26 23:56:28 +02:00
---
2024-05-28 12:54:07 +02:00
name : Proto_3_Light_HugeInp
2024-05-26 23:56:28 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : identity
length : 1953
2024-05-26 23:56:28 +02:00
scheduler :
2024-05-28 12:54:07 +02:00
reps_per_version : 2
agents_per_job : 2
2024-05-26 23:56:28 +02:00
latent_projector :
type : fc
2024-05-28 12:54:07 +02:00
latent_size : 8
layer_shapes : [ 24 , 12 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
2024-05-28 12:54:07 +02:00
region_latent_size : 8
2024-05-26 23:56:28 +02:00
num_peers : 3
residual : true
2024-05-27 10:29:15 +02:00
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 4 ]
2024-05-27 10:29:15 +02:00
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-27 10:29:15 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
2024-05-28 12:54:07 +02:00
device : cpu
bitstream_encoding :
type : rice
k : 2
evaluation :
full_compression : true
2024-05-27 10:29:15 +02:00
---
2024-05-28 12:54:07 +02:00
name : Proto_3_Smol
2024-05-27 10:29:15 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 195 # (=0.01s)
transforms :
- type : 'wavelet'
wavelet_type : 'dmey'
- type : identity
length : 19
2024-05-27 10:29:15 +02:00
scheduler :
2024-05-28 12:54:07 +02:00
reps_per_version : 2
agents_per_job : 2
2024-05-27 10:29:15 +02:00
latent_projector :
type : fc
2024-05-28 12:54:07 +02:00
latent_size : 8
layer_shapes : [ 24 , 12 ]
2024-05-27 10:29:15 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
2024-05-28 12:54:07 +02:00
region_latent_size : 8
2024-05-27 10:29:15 +02:00
num_peers : 3
residual : true
2024-05-26 23:56:28 +02:00
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 4 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 23:56:28 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
2024-05-28 12:54:07 +02:00
device : cpu
bitstream_encoding :
type : rice
k : 2
evaluation :
full_compression : true
2024-05-26 23:56:28 +02:00
---
2024-05-28 12:54:07 +02:00
name : Proto_2_k2
2024-05-26 23:56:28 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'dmey'
- type : identity
length : 195
2024-05-26 23:56:28 +02:00
scheduler :
2024-05-28 12:54:07 +02:00
reps_per_version : 2
agents_per_job : 2
2024-05-26 23:56:28 +02:00
latent_projector :
type : fc
2024-05-28 12:54:07 +02:00
latent_size : 8
layer_shapes : [ 24 , 12 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
2024-05-28 12:54:07 +02:00
region_latent_size : 8
2024-05-26 23:56:28 +02:00
num_peers : 3
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 4 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' ]
training :
2024-05-28 12:54:07 +02:00
epochs : 10000
2024-05-26 23:56:28 +02:00
batch_size : 32
num_batches : 1
learning_rate : 0.01
2024-05-28 12:54:07 +02:00
device : cpu
bitstream_encoding :
type : rice
k : 2
evaluation :
full_compression : true
2024-05-26 23:56:28 +02:00
---
2024-05-28 12:54:07 +02:00
name : Proto_2_k4
2024-05-26 23:56:28 +02:00
import : $
2024-05-28 12:54:07 +02:00
feature_extractor :
input_size : 1953 # (=0.1s)
transforms :
- type : 'wavelet'
wavelet_type : 'dmey'
- type : identity
length : 195
2024-05-26 23:56:28 +02:00
scheduler :
2024-05-28 12:54:07 +02:00
reps_per_version : 2
agents_per_job : 2
2024-05-26 23:56:28 +02:00
latent_projector :
2024-05-28 12:54:07 +02:00
type : fc
latent_size : 8
layer_shapes : [ 24 , 12 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' , 'ReLU' ]
middle_out :
2024-05-28 12:54:07 +02:00
region_latent_size : 8
num_peers : 3
2024-05-26 23:56:28 +02:00
residual : true
predictor :
2024-05-28 12:54:07 +02:00
layer_shapes : [ 4 ]
2024-05-26 23:56:28 +02:00
activations : [ 'ReLU' ]
training :
epochs : 10000
batch_size : 32
num_batches : 1
learning_rate : 0.01
2024-05-28 12:54:07 +02:00
device : cpu
bitstream_encoding :
type : rice
k : 4
evaluation :
full_compression : true