vlbthambawita
commited on
Commit
•
2473582
1
Parent(s):
a59557a
Update README.md
Browse files
README.md
CHANGED
@@ -10,9 +10,9 @@ tags:
|
|
10 |
---
|
11 |
# To generate synthetic ECGs
|
12 |
```python
|
13 |
-
from transformers import
|
14 |
|
15 |
-
model =
|
16 |
|
17 |
out = model(num_samples=5)
|
18 |
```
|
|
|
10 |
---
|
11 |
# To generate synthetic ECGs
|
12 |
```python
|
13 |
+
from transformers import AutoModel
|
14 |
|
15 |
+
model = AutoModel.from_pretrained("deepsynthbody/deepfake_ecg")
|
16 |
|
17 |
out = model(num_samples=5)
|
18 |
```
|