heidloff.net - Building is my Passion
Post
Cancel

Deploying Foundation Models on watsonx.ai

Watsonx.ai is IBM’s AI platform built for business. It is provided as SaaS and as software which can be deployed on multiple clouds and on-premises. This post describes how to deploy custom models to watsonx.ai SaaS.

It’s possible to deploy models from HuggingFace and your own models to watsonx.ai:

We’re excited to announce a new feature update to watsonx.ai that delivers an open framework. This gives users access to a catalogue of built-in models and patterns that can be seamlessly extended through a “bring your model” capability. You can now do even more with our enterprise AI studio: upload and deploy your own custom foundation models across software and SaaS environments.

The documentation describes the supported model architectures, for example the modern architectures used by llama, mistral, mixtral and others. GPTQ can be used for quantization and float16 and bfloat16 as datatypes. Model weights need to be available in the safetensors format. Models in PyTorch formats can be converted.

The following resources describe the capabilities in more detail.

Let’s look at a simple example how to deploy mistralai/Mistral-7B-Instruct-v0.3 from HuggingFace.

Download Model

To download Mistral the following commands can be run.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export HF_TOKEN=xxx
git lfs install
git clone https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.3
ls -la
total 56631856
-rw-r--r--   1 nh        7820 Sep 11 09:42 README.md
-rw-r--r--   1 nh         601 Sep 11 09:42 config.json
-rw-r--r--   1 nh 14496078512 Sep 11 09:52 consolidated.safetensors
-rw-r--r--   1 nh         116 Sep 11 09:42 generation_config.json
-rw-r--r--   1 nh  4949453792 Sep 11 09:49 model-00001-of-00003.safetensors
-rw-r--r--   1 nh  4999819336 Sep 11 09:49 model-00002-of-00003.safetensors
-rw-r--r--   1 nh  4546807800 Sep 11 09:48 model-00003-of-00003.safetensors
-rw-r--r--   1 nh       23950 Sep 11 09:42 model.safetensors.index.json
-rwxr-xr-x   1 nh         202 Sep 11 09:42 params.json
-rw-r--r--   1 nh         414 Sep 11 09:42 special_tokens_map.json
-rw-r--r--   1 nh     1961548 Sep 11 09:42 tokenizer.json
-rw-r--r--   1 nh      587404 Sep 11 09:42 tokenizer.model
-rwxr-xr-x   1 nh      587404 Sep 11 09:42 tokenizer.model.v3
-rw-r--r--   1 nh      140874 Sep 11 09:42 tokenizer_config.json

Upload Model

Next upload the model to Cloud Object Storage.

1
2
3
4
5
6
7
8
export AWS_ACCESS_KEY_ID="xxx"
export AWS_SECRET_ACCESS_KEY="xxx"
export ENDPOINT="https://s3.us-south.cloud-object-storage.appdomain.cloud"
export BUCKET_NAME="demo-custom-model"
export MODEL_DIR=/Users/niklasheidloff/Desktop/instructlab/huggingface/Mistral-7B-Instruct-v0.3
export MODEL_FOLDER=mistral7b-instructv03

aws --endpoint-url ${ENDPOINT} s3 cp ${MODEL_DIR} s3://${BUCKET_NAME}/${MODEL_FOLDER}/ --recursive --follow-symlinks

Create Connection

To enable watsonx.ai to access object storage, a connection needs to be defined.

Note 1: The credentials need to be personal, not shared credentials! Enable Personal Credentials in your account first.

Note 2: For deploying models in projects there is a rate limit. Deploy the model from a deployment space instead.

Note 3: After having the model promoted to the deployment space, you need to define your personal credentials in the space again.

Create Model Asset

The following commands show how to create a model asset programmatically.

Note: For Mistral use bfloat16 and float16 (even though only float16 is supported).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
ibmcloud login --sso
ibmcloud iam oauth-tokens
export TOKEN=xxx
curl -X POST "https://us-south.ml.cloud.ibm.com/ml/v4/models?version=2024-01-29" \
-H "Authorization: Bearer $TOKEN" \
-H "content-type: application/json" \
--data '{
    "type": "custom_foundation_model_1.0",
    "framework": "custom_foundation_model",
    "version": "1.0",
    "name": "mistral7b-instructv03",
    "software_spec": {
        "name": "watsonx-cfm-caikit-1.0"
    },
    "space_id": "066d6f31-9f63-4498-aa17-cf8af695bac8",
    "foundation_model": {
        "model_id": "mistral7b-instructv03",
        "parameters": [
        {
            "name": "dtype",
            "default": "bfloat16",
            "type": "string",
            "display_name": "Data Type",
            "options": ["bfloat16"]
        },
        {
            "name": "max_batch_size",
            "default": 256,
            "type": "number",
            "display_name": "Max Batch Size"
        }],

        "model_location": {
            "type": "connection_asset",
            "connection": {
                "id": "niklas-custom-model"
            },
            "location": {
                "bucket": "demo-custom-model",
                "file_path": "mistral7b-instructv03"
            }
        }
    }
}'

Deploy Model

Next the model can be deployed.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
curl -X POST "https://us-south.ml.cloud.ibm.com/ml/v4/deployments?version=2024-01-29" \
-H "Authorization: Bearer $TOKEN" \
-H "content-type: application/json" \
--data '{
  "asset":{
    "id":"8835b2a4-25d9-44e1-8a6b-01eeb7bc9f15"
  },
  "online":{
    "parameters":{
      "serving_name":"test_custom_fm",
      "foundation_model": {
      }
    }
  },
  "hardware_request": {
    "size": "gpu_s",
    "num_nodes": 1
  },
  "description": "Testing deployment using custom foundation model",
  "name":"custom_fm_deployment",
  "space_id":"066d6f31-9f63-4498-aa17-cf8af695bac8"
}'

Invoke Model

The model can now be invoked via REST. The watsonx.ai user interface provides the access information too.

1
2
3
4
5
6
7
8
9
10
curl -X POST "https://us-south.ml.cloud.ibm.com/ml/v1/deployments/e35de6fc-09d8-44b1-8243-2d315994fed0/text/generation?version=2024-01-29" \
-H "Authorization: Bearer $TOKEN" \
-H "content-type: application/json" \
--data '{
 "input": "Hello, what is your name",
 "parameters": {
    "max_new_tokens": 200,
    "min_new_tokens": 20
 }
}'

image

The model can be accessed from the playground in watsonx.ai, if it has been deployed to a project (not only space).

Next Steps

To learn more, check out the Watsonx.ai documentation and the Watsonx.ai landing page.

Featured Blog Posts
Disclaimer
The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions.
Contents
Trending Tags