Skip to content

Commit 94ae5bb

Browse files
authored
Release version 1.0.0 (#32)
This patch releases version "1.0.0".
1 parent 2469a27 commit 94ae5bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ model.add(keras.layers.Dense(2, activation="softmax"))
4242
precision = km.binary_precision(label=1)
4343

4444
# Calculate recall for the first label.
45-
recall = km.recall(label=0)
45+
recall = km.binary_recall(label=0)
4646

4747
model.compile(optimizer="sgd",
4848
loss="binary_crossentropy",

keras_metrics/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from keras_metrics import casts
44

55

6-
__version__ = "0.0.7"
6+
__version__ = "1.0.0"
77

88

99
def metric_fn(cls, cast_strategy):

0 commit comments

Comments
 (0)