From 37a66f1506d00b1531db0f8932b044cf1565ce89 Mon Sep 17 00:00:00 2001 From: chenfeiyu Date: Thu, 10 Jun 2021 00:29:25 +0800 Subject: [PATCH] fix typos --- parakeet/training/chekpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parakeet/training/chekpoint.py b/parakeet/training/chekpoint.py index 2e327c4..0cfdd5b 100644 --- a/parakeet/training/chekpoint.py +++ b/parakeet/training/chekpoint.py @@ -28,7 +28,7 @@ class KBest(object): about the model or the optimizer, etc. It is basically a dynamically mantained K-bset Mapping. When a new item is - added to the map, save_fn is called. And when an item is remove from the + added to the map, save_fn is called. And when an item is removed from the map, del_fn is called. `save_fn` and `del_fn` takes a Path object as input and returns nothing.