Skip to content

Commit

Permalink
doc fix: tf.keras.model -> tf.keras.Model
Browse files Browse the repository at this point in the history
  • Loading branch information
galeone committed Aug 20, 2019
1 parent 8ddeb0c commit c3603ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ashpy/models/convolutional/decoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def _add_initial_block(self, initial_filters, input_res):

def _add_building_block(self, filters):
"""
Construct the core of the :py:obj:`tf.keras.model`.
Construct the core of the :py:obj:`tf.keras.Model`.
The layers specified here get added to the :py:obj:`tf.keras.Model` multiple times
consuming the hyperparameters generated in the :func:`_get_layer_spec`.
Expand Down
2 changes: 1 addition & 1 deletion ashpy/models/convolutional/discriminators.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def call(

def _add_building_block(self, filters, use_bn=False):
"""
Construct the core of the :py:obj:`tf.keras.model`.
Construct the core of the :py:obj:`tf.keras.Model`.
The layers specified here get added to the :py:obj:`tf.keras.Model` multiple times
consuming the hyper-parameters generated in the :func:`_get_layer_spec`.
Expand Down
2 changes: 1 addition & 1 deletion ashpy/models/convolutional/encoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __init__(

def _add_building_block(self, filters):
"""
Construct the core of the :py:obj:`tf.keras.model`.
Construct the core of the :py:obj:`tf.keras.Model`.
The layers specified here get added to the :py:obj:`tf.keras.Model` multiple times
consuming the hyper-parameters generated in the :func:`_get_layer_spec`.
Expand Down

0 comments on commit c3603ea

Please sign in to comment.