abhishtagatya
commited on
Commit
•
1a9795f
1
Parent(s):
d8046c9
Update README.md
Browse files
README.md
CHANGED
@@ -32,10 +32,10 @@ It achieves the following results on the evaluation set:
|
|
32 |
```python
|
33 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
34 |
|
35 |
-
config = AutoConfig.from_pretrained("abhishtagatya/
|
36 |
-
feature_extractor = Wav2Vec2FeatureExtractor.from_pretrained("abhishtagatya/
|
37 |
|
38 |
-
model = WavLMForSequenceClassification.from_pretrained("abhishtagatya/
|
39 |
|
40 |
# Your Logic Here
|
41 |
```
|
|
|
32 |
```python
|
33 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
34 |
|
35 |
+
config = AutoConfig.from_pretrained("abhishtagatya/wavlm-base-960h-itw-deepfake")
|
36 |
+
feature_extractor = Wav2Vec2FeatureExtractor.from_pretrained("abhishtagatya/wavlm-base-960h-itw-deepfake")
|
37 |
|
38 |
+
model = WavLMForSequenceClassification.from_pretrained("abhishtagatya/wavlm-base-960h-itw-deepfake", config=config).to(device)
|
39 |
|
40 |
# Your Logic Here
|
41 |
```
|