Skip to content

Commit

Permalink
fix typo ShusenTang#93
Browse files Browse the repository at this point in the history
  • Loading branch information
ShusenTang committed Feb 23, 2020
1 parent 42a724c commit 0102bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/chapter04_DL_computation/4.5_read-write.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

## 4.5.1 读写`Tensor`

我们可以直接使用`save`函数和`load`函数分别存储和读取`Tensor``save`使用Python的pickle实用程序将对象进行序列化,然后将序列化的对象保存到disk,使用`save`可以保存各种对象,包括模型、张量和字典等。而`laod`使用pickle unpickle工具将pickle的对象文件反序列化为内存。
我们可以直接使用`save`函数和`load`函数分别存储和读取`Tensor``save`使用Python的pickle实用程序将对象进行序列化,然后将序列化的对象保存到disk,使用`save`可以保存各种对象,包括模型、张量和字典等。而`load`使用pickle unpickle工具将pickle的对象文件反序列化为内存。

下面的例子创建了`Tensor`变量`x`,并将其存在文件名同为`x.pt`的文件里。

Expand Down

0 comments on commit 0102bc6

Please sign in to comment.