Update README.md
Browse files
README.md
CHANGED
@@ -35,18 +35,18 @@ The included English accents are:
|
|
35 |
# How to use this model
|
36 |
|
37 |
## Download repo
|
38 |
-
```
|
39 |
git clone [email protected]:tiantiaf0627/vox-profile-release.git
|
40 |
```
|
41 |
## Install the package
|
42 |
-
```
|
43 |
conda create -n vox_profile python=3.8
|
44 |
cd vox-profile-release
|
45 |
pip install -e .
|
46 |
```
|
47 |
|
48 |
## Load the model
|
49 |
-
```
|
50 |
# Load libraries
|
51 |
import torch
|
52 |
import torch.nn.functional as F
|
@@ -61,7 +61,7 @@ model.eval()
|
|
61 |
```
|
62 |
|
63 |
## Prediction
|
64 |
-
```
|
65 |
# Label List
|
66 |
english_accent_list = [
|
67 |
'East Asia', 'English', 'Germanic', 'Irish',
|
|
|
35 |
# How to use this model
|
36 |
|
37 |
## Download repo
|
38 |
+
```bash
|
39 |
git clone [email protected]:tiantiaf0627/vox-profile-release.git
|
40 |
```
|
41 |
## Install the package
|
42 |
+
```bash
|
43 |
conda create -n vox_profile python=3.8
|
44 |
cd vox-profile-release
|
45 |
pip install -e .
|
46 |
```
|
47 |
|
48 |
## Load the model
|
49 |
+
```python
|
50 |
# Load libraries
|
51 |
import torch
|
52 |
import torch.nn.functional as F
|
|
|
61 |
```
|
62 |
|
63 |
## Prediction
|
64 |
+
```python
|
65 |
# Label List
|
66 |
english_accent_list = [
|
67 |
'East Asia', 'English', 'Germanic', 'Irish',
|