Skip to content

Commit

Permalink
Upgrade truefoundry version
Browse files Browse the repository at this point in the history
  • Loading branch information
chiragjn committed Oct 7, 2024
1 parent ef6d901 commit 30a8cb3
Show file tree
Hide file tree
Showing 14 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion batch-inference/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ python batch_infer.py \
1. Install `truefoundry`

```shell
python -m pip install -U "truefoundry[ml]>=0.2.0,<1.0.0"
python -m pip install -U "truefoundry>=0.4.1,<0.5.0"
```

2. Login
Expand Down
2 changes: 1 addition & 1 deletion batch-inference/deployment-requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
truefoundry[ml]>=0.2.0,<1.0.0
truefoundry>=0.4.1,<0.5.0
10 changes: 5 additions & 5 deletions customer-churn/python_sdk_customer_churn.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"\n",
"Before we begin, make sure you have the following prerequisites in place:\n",
"\n",
"### Install `truefoundry[ml]`. \n",
"### Install `truefoundry`. \n",
"You can install it using the following command:\n"
]
},
Expand All @@ -32,7 +32,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install -U \"truefoundry[ml]>=0.2.0,<1.0.0\""
"%pip install -U \"truefoundry>=0.4.1,<0.5.0\""
]
},
{
Expand Down Expand Up @@ -531,9 +531,9 @@
"provenance": []
},
"kernelspec": {
"display_name": "jupyter-base",
"display_name": "venv311",
"language": "python",
"name": "jupyter-base"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand All @@ -545,7 +545,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.9"
"version": "3.11.2"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion customer-churn/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ matplotlib-inline==0.1.6
matplotlib==3.8.2
pandas==1.5.0
pydantic>=1.10.0,<2.0.0
truefoundry[ml]>=0.2.0,<1.0.0
truefoundry>=0.4.1,<0.5.0
2 changes: 1 addition & 1 deletion deploy-ml-model/Deploy_your_first_service.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
},
"outputs": [],
"source": [
"%pip install -U \"truefoundry[ml]>=0.2.0,<1.0.0\""
"%pip install -U \"truefoundry>=0.4.1,<0.5.0\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docker-deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ python app.py
1. Install `truefoundry`

```shell
python -m pip install -U "truefoundry[ml]>=0.2.0,<1.0.0"
python -m pip install -U "truefoundry>=0.4.1,<0.5.0"
```

2. Login
Expand Down
2 changes: 1 addition & 1 deletion docker-deploy/deployment-requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
truefoundry[ml]>=0.2.0,<1.0.0
truefoundry>=0.4.1,<0.5.0
12 changes: 6 additions & 6 deletions llm-example/deploy_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"\n",
"To follow along with the notebook, you will have to do the following:\n",
"\n",
"- Install `truefoundry[ml]` and required ML Libraries\n",
"- Install `truefoundry` and required ML Libraries\n",
"- Setup logging\n",
"- Select the Workspace in which you want to deploy your application.\n",
"- Install the required packages\n"
Expand All @@ -31,7 +31,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install -U -q \"scikit-learn==1.5.0\" \"joblib==1.3.2\" \"pandas==2.1.0\" \"truefoundry[ml]>=0.2.0,<1.0.0\""
"%pip install -U -q \"scikit-learn==1.5.0\" \"joblib==1.3.2\" \"pandas==2.1.0\" \"truefoundry>=0.4.1,<0.5.0\""
]
},
{
Expand Down Expand Up @@ -142,7 +142,7 @@
"\n",
"We will use scikit-learn, a popular machine learning library, to build the model. It's important to save the trained model as an artifact for later use. Model artifacts are essential because they contain the learned parameters and configurations of the model, enabling us to deploy and use the model in different environments without retraining.\n",
"\n",
"We will be using `truefoundry[ml]` for logging and storing artifacts to a ML Repo"
"We will be using `truefoundry` for logging and storing artifacts to a ML Repo"
]
},
{
Expand Down Expand Up @@ -540,9 +540,9 @@
],
"metadata": {
"kernelspec": {
"display_name": "jupyter-base",
"display_name": "venv311",
"language": "python",
"name": "jupyter-base"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand All @@ -554,7 +554,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.9"
"version": "3.11.2"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion llm-example/deployment-requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
truefoundry[ml]>=0.2.0,<1.0.0
truefoundry>=0.4.1,<0.5.0
4 changes: 2 additions & 2 deletions mnist-classifaction/deploy_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"\n",
"To follow along with the notebook, you will have to do the following:\n",
"\n",
"- Install **truefoundry[ml]** and required ML Libraries\n",
"- Install `truefoundry` and required ML Libraries\n",
"- Setup logging\n",
"- Select the Workspace in which you want to deploy your application.\n",
"- Install the required packages\n"
Expand All @@ -29,7 +29,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install -U -q \"truefoundry[ml]>=0.2.0,<1.0.0\" \"tensorflow==2.15.0\" \"matplotlib==3.8.2\""
"%pip install -U -q \"truefoundry>=0.4.1,<0.5.0\" \"tensorflow==2.15.0\" \"matplotlib==3.8.2\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion mnist-classifaction/train_job/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
matplotlib==3.8.2
tensorflow==2.15.0
truefoundry[ml]>=0.2.0,<1.0.0
truefoundry>=0.4.1,<0.5.0
10 changes: 5 additions & 5 deletions mnist-classifaction/train_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"source": [
"# 🛠 Setup\n",
"To follow along with the notebook, you will have to do the following:\n",
"* Install `truefoundry[ml]` and required ML Libraries\n",
"* Install `truefoundry` and required ML Libraries\n",
"* Setup logging\n",
"* Select the Workspace in which you want to deploy your application.\n",
"* Install the required packages"
Expand All @@ -37,7 +37,7 @@
},
"outputs": [],
"source": [
"%pip install -U -q \"truefoundry[ml]>=0.2.0,<1.0.0\" \"tensorflow==2.15.0\" \"matplotlib==3.8.2\""
"%pip install -U -q \"truefoundry>=0.4.1,<0.5.0\" \"tensorflow==2.15.0\" \"matplotlib==3.8.2\""
]
},
{
Expand Down Expand Up @@ -496,9 +496,9 @@
"provenance": []
},
"kernelspec": {
"display_name": "jupyter-base",
"display_name": "venv311",
"language": "python",
"name": "jupyter-base"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand All @@ -510,7 +510,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.9"
"version": "3.11.2"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion rag-onboarding-notebook/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ tiktoken==0.6.0
tokenizers==0.19.0
torch>=2.0.0,<3.0.0
transformers==4.40.2
truefoundry[ml]>=0.2.0,<1.0.0
truefoundry>=0.4.1,<0.5.0
unstructured==0.5.12
4 changes: 2 additions & 2 deletions train-model/Deploy_your_first_job.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"id": "Vr3iFsrv67Mc"
},
"source": [
"Let's start with installing `truefoundry[ml]`.\n"
"Let's start with installing `truefoundry`.\n"
]
},
{
Expand All @@ -83,7 +83,7 @@
},
"outputs": [],
"source": [
"%pip install -U \"truefoundry[ml]>=0.2.0,<1.0.0\""
"%pip install -U \"truefoundry>=0.4.1,<0.5.0\""
]
},
{
Expand Down

0 comments on commit 30a8cb3

Please sign in to comment.