Skip to content

Commit

Permalink
fixing abstract print.
Browse files Browse the repository at this point in the history
  • Loading branch information
ragav committed Feb 9, 2017
1 parent d3dc002 commit 76490a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
.eggs
*.png
/visualizer
/lenet5
.vscode
.yann_data
2 changes: 1 addition & 1 deletion pantry/tutorials/gan.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def cook_mnist( verbose = 1, **kwargs):

def mlgan ( dataset= None, verbose = 1 ):
"""
This function is a demo example of a sparse autoencoder.
This function is a demo example of a generative adversarial network.
This is an example code. You should study this code rather than merely run it.
Args:
Expand Down
3 changes: 1 addition & 2 deletions yann/layers/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ def print_layer(self, prefix = " ", nest = True, last = True, verbose = 2):
print(prefix_entry + " id: " + self.id)
print(prefix_entry + "=================------------------")
print(prefix_entry + " type: " + self.type)
print(prefix_entry + " output shape: ")
print(self.output_shape)
print(prefix_entry + " output shape: " + str(self.output_shape))
print(prefix_entry + "-----------------------------------")

if nest is False:
Expand Down

0 comments on commit 76490a9

Please sign in to comment.