Skip to content

Commit c709185

Browse files
committed
updating projects with zenml login
1 parent 9e2e1f7 commit c709185

File tree

10 files changed

+13
-14
lines changed

10 files changed

+13
-14
lines changed

classifier-e2e/run_full.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"source": [
3939
"! pip3 install -r requirements.txt\n",
4040
"! zenml integration install sklearn xgboost -y\n",
41-
"! zenml connect --url https://1cf18d95-zenml.cloudinfra.zenml.io \n",
41+
"! zenml login https://1cf18d95-zenml.cloudinfra.zenml.io \n",
4242
"\n",
4343
"import IPython\n",
4444
"IPython.Application.instance().kernel.do_shutdown(restart=True)"

classifier-e2e/run_skip_basics.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"source": [
3939
"! pip3 install -r requirements.txt\n",
4040
"! zenml integration install sklearn xgboost -y\n",
41-
"! zenml connect --url https://1cf18d95-zenml.cloudinfra.zenml.io \n",
41+
"! zenml login https://1cf18d95-zenml.cloudinfra.zenml.io \n",
4242
"\n",
4343
"import IPython\n",
4444
"IPython.Application.instance().kernel.do_shutdown(restart=True)"

customer-satisfaction/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In case you already have an account, here is how you connect to a deployed
4646
server.
4747

4848
```bash
49-
zenml connect -u <INSERT_SERVER_URL_HERE>
49+
zenml login <INSERT_SERVER_URL_HERE>
5050
```
5151

5252
To run locally, you need
@@ -55,7 +55,7 @@ but first you must install the optional dependencies for the ZenML server:
5555

5656
```bash
5757
pip install zenml["server"]
58-
zenml up
58+
zenml login --local
5959
```
6060

6161
If you are running the `run_deployment.py` script, you will also need to install
@@ -237,7 +237,7 @@ A browser window should open for you and let you configure a product to run a pr
237237
zenml integration install mlflow -y
238238
```
239239

240-
2. If you are trying to start the ZenML server with `zenml up`, if you're running
240+
2. If you are trying to start the ZenML server with `zenml login --local`, if you're running
241241
on a Mac, you might want to set the following environment variable in your `.zshrc`
242242
file or in the environment in which you're running the pipeline:
243243

databricks-demo/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,8 @@ source .venv/bin/activate
5151
make setup
5252
# Optionally, provision default local stack
5353
make install-stack-local
54-
# Start the ZenML UI locally (recommended, but optional);
55-
# the default username is "admin" with an empty password
56-
zenml up
54+
# Start the ZenML UI locally (recommended, but optional)
55+
zenml login --local
5756
# Run the pipeline included in the project
5857
python run.py
5958
```

end-to-end-computer-vision/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export WANDB_DISABLED=True
5555
### Connect to your deployed ZenML instance
5656

5757
```bash
58-
zenml connect --url <INSERT_ZENML_URL_HERE>
58+
zenml login <INSERT_ZENML_URL_HERE>
5959
```
6060

6161
## Cloud Provider

explainability-shap/run.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"metadata": {},
1616
"outputs": [],
1717
"source": [
18-
"!zenml connect --url=https://d13d987c-zenml.cloudinfra.zenml.io"
18+
"!zenml login https://d13d987c-zenml.cloudinfra.zenml.io"
1919
]
2020
},
2121
{

flux-dreambooth/walkthrough.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"outputs": [],
3838
"source": [
3939
"# Connect to ZenML server\n",
40-
"!zenml connect --url <your-zenml-server-url>"
40+
"!zenml login <your-zenml-server-url>"
4141
]
4242
},
4343
{

label_studio_annotation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ cd label_studio_annotation
3232
zenml init
3333

3434
# Start the ZenServer to enable dashboard access
35-
zenml up
35+
zenml login --local
3636
```
3737

3838
You will need to install and start Label Studio locally:

llm-finetuning-simple/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ zenml integration install lightning s3 aws -y
4545

4646
# Initialize and connect to a deployed ZenML server
4747
zenml init
48-
zenml connect --url <MYZENMLSERVERURL>
48+
zenml login <MYZENMLSERVERURL>
4949
```
5050

5151
## Running the Pipeline

native-experiment-tracking/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ zenml integration install sklearn pandas -y
4141
zenml init
4242

4343
# Connect to your ZenML server
44-
zenml connect --url ...
44+
zenml login ...
4545

4646
python run.py --parallel
4747
```

0 commit comments

Comments
 (0)