Skip to content

Commit 785fee6

Browse files
committed
Fix:Minor
1 parent c322135 commit 785fee6

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ __pycache__/
1010
data/*
1111
*.log
1212
*.model
13+
*.model*
1314
*.out
1415
\#*#

models/cnn.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ def __init__(self, numpy_rng, theano_rng, batch_size, n_outs,conv_layer_configs,
8383
self.finetune_cost = self.logLayer.negative_log_likelihood(self.y)
8484

8585
self.errors = self.logLayer.errors(self.y)
86+
self.output = self.logLayer.prediction();
87+
8688

8789
"Getting CNN Feats Outputs"
8890
def build_out_function(self):

0 commit comments

Comments
 (0)