Reflect parameter changes in `experiment.py`
This commit is contained in:
parent
d8a140d793
commit
af8862d360
|
@ -35,9 +35,8 @@ def train_with_parameters(
|
||||||
"""
|
"""
|
||||||
model = constellation.ConstellationNet(
|
model = constellation.ConstellationNet(
|
||||||
order=order,
|
order=order,
|
||||||
encoder_layers_sizes=layer_sizes,
|
encoder_layers=layer_sizes,
|
||||||
decoder_layers_sizes=layer_sizes[::-1],
|
decoder_layers=layer_sizes[::-1],
|
||||||
channel_model=constellation.GaussianChannel()
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# List of training examples (not shuffled)
|
# List of training examples (not shuffled)
|
||||||
|
|
Loading…
Reference in New Issue