Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ model = art.TrainableModel(
backend = ServerlessBackend(
api_key="your_wandb_api_key"
)
await model.register(backend)
model.register(backend)
# Edit and iterate in minutes, not hours!
```

Expand Down
2 changes: 1 addition & 1 deletion docs/fundamentals/art-backend.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ backend = await SkyPilotBackend.initialize_cluster(
)
```

When a training job is finished, you can shut down a cluster either through code or the cli.
When a training job is finished, you can shut down a cluster either through code or the CLI.

**Code:**

Expand Down
Loading