Created
June 2, 2015 14:41
-
-
Save TNick/f5e49e25f9389e908dfa to your computer and use it in GitHub Desktop.
Files related to pylearn-users topic: https://groups.google.com/forum/#!topic/pylearn-users/a1sjKKIC2BY
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 | -0.8626198972520791 | 0.009085761037543617 | 2.2958860030635573 | 0.23291712283561183 | 0.13435410323793845 | 0.4262145840009325 | 0.11283843036941744 | 0.2725705693469231 | -0.5384864000386496 | 1.4375791820246675 | 0.5111120646089605 | 0.5228546756712258 | 0.199208346448477 | -0.7945393092112507 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | -1.1665949159478515 | -0.15932708395411033 | -0.08508583445766538 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
51 | -0.3152821953177781 | 0.024031943986622662 | 2.6742863361662805 | 0.31525195820084917 | -0.11020464858852762 | 0.5895104816059669 | 0.11283843036941744 | 0.27523622267809505 | -0.5384864000386496 | 1.4375791820246675 | 0.5111120646089605 | 0.49576074148738586 | 0.10330607681396907 | -0.650077616627387 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | -1.089658334238373 | -0.14466261679023773 | -0.012810359971564735 | |
52 | 0.4847292450206044 | 0.09876285873201789 | 2.6742863361662805 | 0.23291712283561183 | -1.2553790156118954 | 0.4240253313473069 | 0.5643585679378907 | 0.27123774268133705 | -0.5384864000386496 | 1.4375791820246675 | 0.5154481103407768 | 0.5248019440085037 | -1.9431870613550606 | -0.5056159240435232 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | -0.5778131823313818 | -0.1299981496263651 | -0.012810359971564735 | |
66 | 1.0598976775617217 | -0.02080660486061447 | 3.052686669269004 | 0.2603620679573576 | -1.2506326851396805 | 0.589584992463289 | -0.9030818791596478 | 0.27390339601250907 | -0.5384864000386496 | 1.4375791820246675 | 0.5154481103407768 | 0.4943084756968285 | -1.826919797920902 | -0.3611542314596594 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | 0.17032087779313354 | -0.056675813807002075 | -0.012810359971564735 | |
54 | 1.223342187572878 | 0.038978126935701705 | 3.052686669269004 | 0.6445912996617984 | -0.30063028035158745 | 0.4258988292503961 | 0.4514785335457725 | 0.2925629693307131 | -0.28249786314949055 | 1.4375791820246675 | 0.5155205806273933 | 0.5257814035808157 | -1.1768066125720333 | -0.21669253887579565 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | 0.7081920543733502 | -0.056675813807002075 | 0.27629153797283784 | |
79 | 1.3777539165976036 | 0.05392430988478075 | 3.4310870023717266 | 0.31525195820084917 | -0.9573643953124263 | 0.5859398553381264 | 0.11283843036941744 | 0.29522862266188504 | -0.28249786314949055 | 1.4375791820246675 | 0.5155205806273933 | 0.4937758389485976 | -1.6149178065108407 | -0.07223084629193188 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | 0.8610378747131043 | -0.056675813807002075 | 0.27629153797283784 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!obj:pylearn2.train.Train { | |
dataset: &train !obj:pylearn2.datasets.csv_dataset.CSVDataset { | |
path: 'csv_dataset_test.csv', | |
task: 'regression' | |
}, | |
model: !obj:pylearn2.models.mlp.MLP { | |
layers: [ | |
!obj:pylearn2.models.mlp.RectifiedLinear { | |
layer_name: 'h0', | |
dim: 150, | |
sparse_init: 1, | |
use_bias: True | |
}, | |
!obj:pylearn2.models.mlp.Linear { | |
layer_name: 'y', | |
sparse_init: 1, | |
dim: 1, | |
} | |
], | |
nvis: 21, | |
}, | |
algorithm: !obj:pylearn2.training_algorithms.sgd.SGD { | |
batch_size: 10, | |
learning_rate: .002, | |
learning_rule: !obj:pylearn2.training_algorithms.learning_rule.Momentum { | |
init_momentum: .05 | |
}, | |
monitoring_dataset: | |
{ | |
'train' : *train, | |
'valid' : !obj:pylearn2.datasets.csv_dataset.CSVDataset { | |
path: 'csv_dataset_valid.csv', | |
task: 'regression' | |
}, | |
}, | |
termination_criterion: !obj:pylearn2.termination_criteria.EpochCounter { | |
max_epochs: 150 | |
} | |
}, | |
extensions: [ | |
!obj:pylearn2.train_extensions.best_params.MonitorBasedSaveBest { | |
channel_name: "valid_objective", | |
save_path: "best_Jonas.pkl" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 | -0.3152821953177781 | 0.024031943986622662 | 2.6742863361662805 | 0.31525195820084917 | -0.11020464858852762 | 0.5895104816059669 | 0.11283843036941744 | 0.27523622267809505 | -0.5384864000386496 | 1.4375791820246675 | 0.5111120646089605 | 0.49576074148738586 | 0.10330607681396907 | -0.650077616627387 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | -1.089658334238373 | -0.14466261679023773 | -0.012810359971564735 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
52 | 0.4847292450206044 | 0.09876285873201789 | 2.6742863361662805 | 0.23291712283561183 | -1.2553790156118954 | 0.4240253313473069 | 0.5643585679378907 | 0.27123774268133705 | -0.5384864000386496 | 1.4375791820246675 | 0.5154481103407768 | 0.5248019440085037 | -1.9431870613550606 | -0.5056159240435232 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | -0.5778131823313818 | -0.1299981496263651 | -0.012810359971564735 | |
66 | 1.0598976775617217 | -0.02080660486061447 | 3.052686669269004 | 0.2603620679573576 | -1.2506326851396805 | 0.589584992463289 | -0.9030818791596478 | 0.27390339601250907 | -0.5384864000386496 | 1.4375791820246675 | 0.5154481103407768 | 0.4943084756968285 | -1.826919797920902 | -0.3611542314596594 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | 0.17032087779313354 | -0.056675813807002075 | -0.012810359971564735 | |
54 | 1.223342187572878 | 0.038978126935701705 | 3.052686669269004 | 0.6445912996617984 | -0.30063028035158745 | 0.4258988292503961 | 0.4514785335457725 | 0.2925629693307131 | -0.28249786314949055 | 1.4375791820246675 | 0.5155205806273933 | 0.5257814035808157 | -1.1768066125720333 | -0.21669253887579565 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | 0.7081920543733502 | -0.056675813807002075 | 0.27629153797283784 | |
79 | 1.3777539165976036 | 0.05392430988478075 | 3.4310870023717266 | 0.31525195820084917 | -0.9573643953124263 | 0.5859398553381264 | 0.11283843036941744 | 0.29522862266188504 | -0.28249786314949055 | 1.4375791820246675 | 0.5155205806273933 | 0.4937758389485976 | -1.6149178065108407 | -0.07223084629193188 | -1.5199302651824271 | -1.5513605736166458 | -1.4900106770167538 | 1.4375791820246675 | 0.8610378747131043 | -0.056675813807002075 | 0.27629153797283784 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment