コンテンツにスキップ

セグメント

当社のサービスでは、さまざまな種類のGPUカードを提供しています。すべてのカードは、VRAMサイズ、CUDAコア、ワーカータイプ(データセンター / コミュニティ)に基づいてセグメント化されています。以下の5種類のセグメントを提供しています:

  • ベーシック 代表的なGPU: Nvidia RTX 3060)
  • スタンダード (Nvidia RTX 3080)
  • プレミアム(Nvidia RTX 3090)
  • マックス Nvidia RTX A6000)
  • ハイエンド(Nvidia A100

すべてのセグメントは、データセンターとコミュニティの2つのバリアントで提供されています。

セグメントのリストを確認するには、以下のエンドポイントを使用してください:

https://api.modelserve.ai/api/v1/clusters/gpu-segments/
curl -s -X GET \
     -H 'Accept: application/json' \
     -H 'Content-Type: application/json' \
     -H 'Authorization: Bearer X' \
     'https://api.modelserve.ai/api/v1/clusters/gpu-segments/'
import requests

r = requests.get(
    "https://api.modelserve.ai/api/v1/clusters/gpu-segments/",
    headers={
        "Accept": "application/json",
        "Content-Type": "application/json",
        "Authorization": "Bearer X",
    },
)
fetch('https://api.modelserve.ai/api/v1/clusters/gpu-segments/', {
  "method": "GET",
  "headers": {
    "Accept": "application/json",
    "Content-Type": "application/json",
    "Authorization": "Bearer X"
  }
});

-

{
    "count": 10,
    "next": null,
    "previous": null,
    "results": [
        {
        "id": 1,
        "name": "BASIC",
        "price": null,
        "representative_gpu": "RTX 3060",
        "type": "datacenter"
        },
        {
        "id": 2,
        "name": "STANDARD",
        "price": "0.5070",
        "representative_gpu": "RTX 3080",
        "type": "datacenter"
        },
        {
        "id": 3,
        "name": "PREMIUM",
        "price": "0.6175",
        "representative_gpu": "RTX 3090",
        "type": "datacenter"
        },
        {
        "id": 4,
        "name": "MAX",
        "price": "1.2545",
        "representative_gpu": "RTX A6000",
        "type": "datacenter"
        },
        {
        "id": 5,
        "name": "HIGHEND",
        "price": "4.1470",
        "representative_gpu": "A100",
        "type": "datacenter"
        },
        {
        "id": 6,
        "name": "BASIC COMMUNITY",
        "price": "0.2285",
        "representative_gpu": "RTX 3060",
        "type": "community"
        },
        {
        "id": 7,
        "name": "STANDARD COMMUNITY",
        "price": "0.2925",
        "representative_gpu": "RTX 3080",
        "type": "community"
        },
        {
        "id": 8,
        "name": "PREMIUM COMMUNITY",
        "price": "0.6488",
        "representative_gpu": "RTX 3090",
        "type": "community"
        },
        {
        "id": 9,
        "name": "MAX COMMUNITY",
        "price": "1.0329",
        "representative_gpu": "RTX A6000",
        "type": "community"
        },
        {
        "id": 10,
        "name": "HIGHEND COMMUNITY",
        "price": "3.2850",
        "representative_gpu": "A100",
        "type": "community"
        }
    ]
 }
例:

  • "id": 9 - ユニークなセグメント番号
  • "name": "MAX COMMUNITY" - セグメント名
  • "price": "1.0329" - セグメント価格
  • "representative_gpu": "RTX A6000" - セグメント内の代表カード
  • "type": "community" - セグメントタイプ

「Bearer X」を実際のアクセストークンに置き換えることを忘れないでください。アクセストークン(Bearer)の見つけ方については、クイックスタートセクションで詳細をご覧ください。

🚀 クイックスタート