From ed4dba249712e8bbaf5ed7c1486dff52b472daf4 Mon Sep 17 00:00:00 2001 From: Matt Crane Date: Fri, 22 Sep 2017 11:30:26 +0900 Subject: [PATCH] Typo fix (#54) --- sm_cnn/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sm_cnn/main.py b/sm_cnn/main.py index 83eec5b..a36a921 100644 --- a/sm_cnn/main.py +++ b/sm_cnn/main.py @@ -119,7 +119,7 @@ if __name__ == "__main__": ap.add_argument("--index-for-corpusIDF", help="fetches idf from Index. provide index path. will\ generate a vocabFile") ap.add_argument('--seed', help='Random seed', type=int, default=1234) - ap.add_argument('--nocudnn', help='Disable the CuDNN backend' action="store_true") + ap.add_argument('--nocudnn', help='Disable the CuDNN backend', action="store_true") args = ap.parse_args()