deepfake_ecg / README.md
vlbthambawita's picture
Update README.md
67b1fcb
|
raw
history blame
172 Bytes
# To generate synthetic ECGs
```python
from transformers import AutoModels
model = AutoModels.from_pretrained("deepsynthbody/deepfake_ecg")
out = model(num_samples=5)
```