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
5.*Copy the SAS URL:* After creating the SAS, click `Copy` to get the URL with token. This will be used as the value for **TRAINING_DATA_SAS_URL** or **REFERENCE_DOC_SAS_URL** when running the sample code.
6.*Set Environment Variables in `.env` File:* Add the SAS URL as value of **TRAINING_DATA_SAS_URL** and/or **REFERENCE_DOC_SAS_URL** and designated folder path as value of **TRAINING_DATA_PATH** or **REFERENCE_DOC_PATH** into the `.env` file.
17
-
18
-
```env
19
-
TRAINING_DATA_SAS_URL=<Blob container SAS URL>
20
-
TRAINING_DATA_PATH=<Designated folder path under the blob container>
21
-
REFERENCE_DOC_SAS_URL=<Blob container SAS URL>
22
-
REFERENCE_DOC_PATH=<Designated folder path under the blob container>
23
-
```
16
+
6.*Set Environment Variables in ".env" File:* Depending on the sample that you will run, you will need to set required environment variables in [.env](../notebooks/.env).
17
+
-[analyzer_training](../notebooks/analyzer_training.ipynb): Add the SAS URL as value of **TRAINIGN_DATA_SAS_URL**, and a prefix for **TRAINING_DATA_PATH**. You can choose any folder name you like for **TRAINING_DATA_PATH**. For example, you could use "training_files".
18
+
```env
19
+
TRAINING_DATA_SAS_URL=<Blob container SAS URL>
20
+
TRAINING_DATA_PATH=<Designated folder path under the blob container>
21
+
```
22
+
- [field_extraction_pro_mode](../notebooks/field_extraction_pro_mode.ipynb): Add the SAS URL as value of **REFERENCE_DOC_SAS_URL**, and a prefix for **REFERENCE_DOC_PATH**. You can choose any folder name you like for **REFERENCE_DOC_PATH**. For example, you could use "training_files".
23
+
```env
24
+
REFERENCE_DOC_SAS_URL=<Blob container SAS URL>
25
+
REFERENCE_DOC_PATH=<Designated folder path under the blob container>
26
+
```
24
27
25
28
Now, we have completed the preparation of the data environment. Next, we could create an analyzer through code.
0 commit comments