Skip to content

Commit

Permalink
Added checkpints options to run on other servers
Browse files Browse the repository at this point in the history
  • Loading branch information
NEGU93 committed Oct 8, 2020
1 parent baba6cd commit 0c11bc5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cvnn/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.35'
__version__ = '0.3.36'
6 changes: 4 additions & 2 deletions cvnn/montecarlo.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ def mlp_run_real_comparison_montecarlo(dataset: cvnn.dataset.Dataset, open_datas
epochs=150, batch_size=100, display_freq=1, optimizer='sgd',
shape_raw=None, activation='cart_relu', debug=False, polar=False, do_all=True,
dropout=0.5, validation_split=0.2, validation_data=None,
capacity_equivalent=True, equiv_technique='ratio', do_conf_mat=True):
capacity_equivalent=True, equiv_technique='ratio', do_conf_mat=True,
checkpoints=False):
"""
This function is used to compare CVNN vs RVNN performance over statistical non-circular data.
1. Automatically creates two Multi-Layer Perceptrons (MLP), one complex and one real.
Expand Down Expand Up @@ -369,7 +370,8 @@ def mlp_run_real_comparison_montecarlo(dataset: cvnn.dataset.Dataset, open_datas
monte_carlo.run(dataset.x, dataset.y, iterations=iterations,
epochs=epochs, batch_size=batch_size, display_freq=display_freq,
shuffle=False, debug=debug, data_summary=dataset.summary(), polar=polar,
validation_split=validation_split, validation_data=validation_data, do_conf_mat=do_conf_mat)
validation_split=validation_split, validation_data=validation_data, do_conf_mat=do_conf_mat,
checkpoints=checkpoints)
if do_all:
monte_carlo.monte_carlo_analyzer.do_all()

Expand Down
Binary file removed dist/cvnn-0.3.34.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Complex-Valued Neural Network (CVNN)
====================================

:Author: J. Agustin Barrachina
:Version: 0.3.35 of 10/08/2020
:Version: 0.3.36 of 10/08/2020


Content
Expand Down

0 comments on commit 0c11bc5

Please sign in to comment.