You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Compute Cloud: added instructions on how to manage disk encryption via YC CLI.
* Managed Service for Kubernetes: updated k8s versions.
* Object Storage: added a tutorial on how to store Veeam backups in a bucket.
* Smart Web Security: added a tutorial on how to configure Smart protection for backends in Manage Service for Kubernetes cluster via Application Load Balancer Ingress controller.
* Translations updated.
* Fixes and improvements.
Copy file name to clipboardexpand all lines: en/_includes/datasphere/migration/configurations.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -5,25 +5,25 @@ Since projects run on different {{ yandex-cloud }} platforms with different comp
5
5
{% endnote %}
6
6
7
7
8
-
|Name | Number of vCPUs | Number of GPUs | RAM, GB | VRAM, GB|
8
+
Name | Number of vCPUs | Number of GPUs | RAM, GB | VRAM, GB
9
9
---- | ---- | ---- | ---- | ----
10
10
**Configurations with vCPUs based on [Intel Ice Lake](../../../compute/concepts/performance-levels.md)**
11
11
**c1.4** (default) | 4 | 0 | 32 | —
12
12
**c1.8** | 8 | 0 | 64 | —
13
13
**c1.32** ^1^ | 32 | 0 | 256 | —
14
14
**c1.80** ^2^ | 80 | 0 | 640 | —
15
-
**Configurations with vCPUs based on [Intel Broadwell](../../../compute/concepts/performance-levels.md) and [NVIDIA® Tesla® V100](../../../compute/concepts/gpus.md)GPU**
16
-
**g1.1** | 8 | 1 | From 48 to 96 | 32
17
-
**g1.2** | 16 | 2 | From 96 to 192 | 64
18
-
**g1.4** ^1^ | 32 | 4 | From 192 to 384 | 128
19
-
**Configurations with vCPUs based on [AMD EPYC™](../../../compute/concepts/gpus.md) and [NVIDIA® Ampere® A100](https://www.nvidia.com/en-us/data-center/a100/)GPU**
15
+
**Configurations with [Intel Broadwell](../../../compute/concepts/performance-levels.md)vCPUs and [NVIDIA® Tesla® V100](../../../compute/concepts/gpus.md)GPUs**
16
+
**g1.1** | 8 | 1 | 48 to 96 | 32
17
+
**g1.2** | 16 | 2 | 96 to 192 | 64
18
+
**g1.4** ^1^ | 32 | 4 | 192 to 384 | 128
19
+
**Configurations with [AMD EPYC™](../../../compute/concepts/gpus.md)vCPUs and [NVIDIA® Ampere® A100](https://www.nvidia.com/en-us/data-center/a100/)GPUs**
20
20
**g2.1** ^1^ | 28 | 1 | 119 | 80
21
21
**g2.2** ^1^ | 56 | 2 | 238 | 160
22
22
**g2.4** ^1^ | 112 | 4 | 476 | 320
23
-
**g2.8** ^2^ | 224 | 8 | 952 | From 320 to 640
24
-
**Configurations with vCPUs based on [Intel Ice Lake](../../../compute/concepts/performance-levels.md) and [NVIDIA® Tesla® T4](https://www.nvidia.com/en-us/data-center/tesla-t4/)GPU**
23
+
**g2.8** ^2^ | 224 | 8 | 952 | 320 to 640
24
+
**Configurations with [Intel Ice Lake](../../../compute/concepts/performance-levels.md)vCPUs and [NVIDIA® Tesla® T4](https://www.nvidia.com/en-us/data-center/tesla-t4/)GPUs**
25
25
**gt4.1** ^1^ | 4 | 1 | 16 | 16
26
-
**Configurations with vCPUs based on [Intel Ice Lake](../../../compute/concepts/performance-levels.md) and [NVIDIA® Tesla® T4i](../../../compute/concepts/gpus.md#t4i)GPU**
26
+
**Configurations with [Intel Ice Lake](../../../compute/concepts/performance-levels.md)vCPUs and [NVIDIA® Tesla® T4i](../../../compute/concepts/gpus.md#t4i)GPUs**
27
27
**gt4i.1** ^1^ | 8 | 1 | 32 | 24
28
28
29
29
^1^ Available after you deposit at least $10 to your billing account or upon request to the support team.
from yandex_cloud_ml_sdk.auth import YandexCloudCLIAuth
9
+
10
+
11
+
deflocal_path(path: str) -> pathlib.Path:
12
+
return pathlib.Path(__file__).parent / path
13
+
14
+
15
+
asyncdefmain():
16
+
17
+
sdk = AsyncYCloudML(
18
+
folder_id="<folder_ID>",
19
+
auth="<API_key>",
20
+
)
21
+
22
+
# Creating a tuning dataset for the {{ gpt-lite }} base model
23
+
dataset_draft = sdk.datasets.draft_from_path(
24
+
task_type="<classification_type>",
25
+
path="<path_to_file>",
26
+
upload_format="jsonlines",
27
+
name="multiclass",
28
+
)
29
+
30
+
# Waiting for the data to be uploaded and the dataset to be created
31
+
operation =await dataset_draft.upload_deferred()
32
+
dataset =await operation
33
+
print(f"new {dataset=}")
34
+
35
+
36
+
if__name__=="__main__":
37
+
asyncio.run(main())
38
+
```
39
+
40
+
Where:
41
+
42
+
*`<folder_ID>`: [ID of the folder](../../../resource-manager/operations/folder/get-id.md) the [service account](../../../iam/concepts/users/service-accounts.md) was created in.
43
+
*`<API_key>`: Service account [API key](../../../iam/concepts/authorization/api-key.md) you got earlier required for [authentication in the API](../../../foundation-models/api-ref/authentication.md).
44
+
45
+
{% include [sdk-auth-details-paragraph](../sdk-auth-details-paragraph.md) %}
46
+
*`<classification_type>`: [Classification type](../../../foundation-models/concepts/classifier/index.md) the model will be tuned for using the new dataset. The possible values are:
47
+
48
+
*`TextClassificationMultilabel`: Binary classification or multi-label classification.
_Model tuning based on the {{ lora }} method is at the [Preview](../../overview/concepts/launch-stages.md) stage and available upon request. You can fill out the form in the [management console]({{ link-console-main }}/link/foundation-models/)._
Copy file name to clipboardexpand all lines: en/_includes/foundation-models/public-talks.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,10 @@
3
3
4
4
## Videos {#video}
5
5
6
+
### 2025 {#2025}
7
+
8
+
* {{ yandexart-name }} for businesses. Watch the video on [YouTube](https://www.youtube.com/watch?v=I9Fpsxv8Hlc) or [Yandex](https://runtime.strm.yandex.ru/player/episode/vplefdetiqv7tasxrbyk).
9
+
6
10
### 2024 {#2024}
7
11
8
12
* Creating AI assistants. [Click here to view the video](https://www.youtube.com/watch?v=kKbMaWSi20I).
@@ -37,7 +41,7 @@
37
41
38
42
### 2023 {#2023-articles}
39
43
40
-
* Feedback analysis, chat assistance, and creatives: what {{ yagpt-full-name }}'s skillset. [Read our article](https://vc.ru/services/945084-analiz-otzyvov-pomosh-v-chate-i-kreativy-chto-umeet-yandexgpt-api)
* How to ditch servers, get your business analytics going, and give {{ yagpt-name }} a test. [Read our article](https://vc.ru/offline/845622-oboitis-bez-serverov-nastroit-biznes-analitiku-i-protestirovat-yandexgpt)
1.[Create](../../iam/operations/sa/create.md) a service account and [assign](../../iam/operations/sa/assign-role-for-sa.md) the `ai.editor`[role](../../foundation-models/security/index.md#languageModels-user) to it.
8
+
1.[Get](../../iam/operations/api-key/create.md) the service account API key and save it.
9
+
10
+
{% include [sdk-auth-details-paragraph](./sdk-auth-details-paragraph.md) %}
11
+
1. Use the [pip](https://pip.pypa.io/en/stable/) package manager to install the [{{ ml-sdk-name }} library](../../foundation-models/sdk/index.md):
12
+
13
+
```bash
14
+
pip install yandex-cloud-ml-sdk
15
+
```
16
+
17
+
- cURL {#curl}
18
+
19
+
1. {% include notitle [ai-before-beginning](./yandexgpt/ai-before-beginning.md) %}
For [asynchronous recognition](../../{{ speechkit-slug }}/stt/transcribation.md), a language model that can operate in two modes is available:
2
2
1. In standard mode, recognition is processed in a standard priority queue. This mode works when the `general` model is selected.
3
-
1. In deferred mode, the audio file to be recognized is placed in a low priority queue and processed at the least busy time. [Special pricing](../../{{ speechkit-slug }}/pricing.md#prices-stt) applies to deferred recognition. The time required to process an audio file in deferred mode is 24 hours or less. Recognition in deferred mode is available when the `deferred-general` tag is specified.
3
+
1. In deferred mode, the audio file to be recognized is placed in a low priority queue and processed at the least busy time. [Special pricing](../../{{ speechkit-slug }}/pricing.md#prices-stt) applies to deferred recognition. The time required to process an audio file in deferred mode is 24 hours or less. Recognition in deferred mode is only available with [API v2](../../speechkit/stt/api/transcribation-api.md) when the `deferred-general` tag is specified.
0 commit comments