Commit c1426f30 authored by Neal Wu's avatar Neal Wu Committed by GitHub
Browse files

Merge pull request #1169 from tensorflow/typos

Fix two typos
parents 5d758ef0 ee017e0d
...@@ -604,7 +604,7 @@ We find that the evaluation arrives at roughly 93.4% precision@1 after the model ...@@ -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. has been running for 2000 steps.
```shell ```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: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.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] 2016-03-01 16:53:05.450471: precision @ 1 = 0.9340 recall @ 5 = 0.9960 [500 examples]
......
...@@ -60,7 +60,7 @@ def maybe_download(directory, filename, url): ...@@ -60,7 +60,7 @@ def maybe_download(directory, filename, url):
print "Downloading %s to %s" % (url, filepath) print "Downloading %s to %s" % (url, filepath)
filepath, _ = urllib.request.urlretrieve(url, filepath) filepath, _ = urllib.request.urlretrieve(url, filepath)
statinfo = os.stat(filepath) statinfo = os.stat(filepath)
print "Succesfully downloaded", filename, statinfo.st_size, "bytes" print "Successfully downloaded", filename, statinfo.st_size, "bytes"
return filepath return filepath
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment