From 043d8e1e64022abfbab464cd4571aa382a62a40c Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sun, 31 Dec 2023 15:02:57 +0900 Subject: [PATCH] [ConvNets/TF] Update conv2d_block.py paramater -> parameter --- .../Classification/ConvNets/model/blocks/conv2d_block.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TensorFlow/Classification/ConvNets/model/blocks/conv2d_block.py b/TensorFlow/Classification/ConvNets/model/blocks/conv2d_block.py index 7f2f3f108..1352afb22 100644 --- a/TensorFlow/Classification/ConvNets/model/blocks/conv2d_block.py +++ b/TensorFlow/Classification/ConvNets/model/blocks/conv2d_block.py @@ -39,10 +39,10 @@ def conv2d_block( ): if not isinstance(conv2d_hparams, tf.contrib.training.HParams): - raise ValueError("The paramater `conv2d_hparams` is not of type `HParams`") + raise ValueError("The parameter `conv2d_hparams` is not of type `HParams`") if not isinstance(batch_norm_hparams, tf.contrib.training.HParams) and use_batch_norm: - raise ValueError("The paramater `conv2d_hparams` is not of type `HParams`") + raise ValueError("The parameter `conv2d_hparams` is not of type `HParams`") with tf.variable_scope(name): if cardinality == 1: