Spaces:
Runtime error
Runtime error
File size: 1,297 Bytes
6ecf14b |
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 45 46 47 48 |
# Part 2 - Creation of the Medical Dataset
[back](../README.md)
In this part we are going to build the Datasets that will be used create the **Medical Model**
Once we have created our enviorment in the part 1. We will create our Dataset to create our model.
```
jupyter lab
```

Let us go the the second folder called 2-data.
There we load the **2-Data.ipynb** notebook

This notebook will create the dataframes in csv format for each document that are int he folder Medical-Dialogue-System
```
C:.
├───data
│ ├───csv
│ ├───dialogue_0
│ ├───dialogue_1
│ ├───dialogue_2
│ ├───dialogue_3
│ ├───dialogue_4
│
├───Medical-Dialogue-System
└───tools
```
and saved in the ./data./csv/
Then those csv will be cleaned and merged into single file called `dialogues.csv`

This csv has 256916 dialogues between a Patient and Doctor.
In the following part we are going to build the model. [3-Modeling](../3-Modeling/README.md)
|