Quickstart#
You can easily train your model with Databricks Mosaic AI training with just a few simple steps. Before starting, make sure you’ve set up your account
Run “Hello World”#
To submit your first run, copy the below yaml into a file called ‘hello_world.yaml’.:
name: hello-world
compute:
gpus: 0
image: bash
command: |
sleep 2
echo Hello World!
Then, run:
mcli run -f hello_world.yaml --follow
If you see “Hello World!”, congratulations on setting up MCLI!