Skip to content

Commit 52a5b8b

Browse files
authored
fix: readme toy example (#95)
1 parent 38eab58 commit 52a5b8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ import torch
5151

5252
# save a model
5353
model = torch.nn.Module()
54-
upload_model(model=model, name="model-name")
54+
lm.upload_model(model=model, name="model-name")
5555

5656
# load a model
57-
model = load_model(name="model-name")
57+
model = lm.load_model(name="model-name")
5858
```
5959

6060
# Examples

0 commit comments

Comments
 (0)