Neal Wu 8 anni fa
parent
commit
ee017e0dbf
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 1 1
      inception/README.md
  2. 1 1
      neural_gpu/wmt_utils.py

+ 1 - 1
inception/README.md

@@ -604,7 +604,7 @@ We find that the evaluation arrives at roughly 93.4% precision@1 after the model
 has been running for 2000 steps.
 
 ```shell
-Succesfully loaded model from /tmp/flowers/model.ckpt-1999 at step=1999.
+Successfully loaded model from /tmp/flowers/model.ckpt-1999 at step=1999.
 2016-03-01 16:52:51.761219: starting evaluation on (validation).
 2016-03-01 16:53:05.450419: [20 batches out of 20] (36.5 examples/sec; 0.684sec/batch)
 2016-03-01 16:53:05.450471: precision @ 1 = 0.9340 recall @ 5 = 0.9960 [500 examples]

+ 1 - 1
neural_gpu/wmt_utils.py

@@ -60,7 +60,7 @@ def maybe_download(directory, filename, url):
     print "Downloading %s to %s" % (url, filepath)
     filepath, _ = urllib.request.urlretrieve(url, filepath)
     statinfo = os.stat(filepath)
-    print "Succesfully downloaded", filename, statinfo.st_size, "bytes"
+    print "Successfully downloaded", filename, statinfo.st_size, "bytes"
   return filepath