forked from 626_privacy/tensorflow_privacy
Minor changes to function arguments
This commit is contained in:
parent
b120d9c5d8
commit
3080b654b5
2 changed files with 5 additions and 5 deletions
|
@ -60,7 +60,7 @@ class BoltonModel(Model):
|
|||
self._layers_instantiated = False
|
||||
self._dtype = dtype
|
||||
|
||||
def call(self, inputs, training=False): # pylint: disable=arguments-differ
|
||||
def call(self, inputs): # pylint: disable=arguments-differ
|
||||
"""Forward pass of network
|
||||
|
||||
Args:
|
||||
|
|
|
@ -321,7 +321,7 @@
|
|||
" kernel_regularizer=reg_layer\n",
|
||||
" )\n",
|
||||
" \n",
|
||||
" def call(self, inputs, training=False):\n",
|
||||
" def call(self, inputs):\n",
|
||||
" return self.output_layer(inputs)\n",
|
||||
"\n",
|
||||
"optimizer = tf.optimizers.SGD()\n",
|
||||
|
@ -420,13 +420,13 @@
|
|||
"pycharm": {
|
||||
"stem_cell": {
|
||||
"cell_type": "raw",
|
||||
"source": [],
|
||||
"metadata": {
|
||||
"collapsed": false
|
||||
},
|
||||
"source": []
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 1
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue