jonatasgrosman
commited on
Commit
•
6ca5789
1
Parent(s):
1582ddb
Update README.md
Browse files
README.md
CHANGED
@@ -132,14 +132,14 @@ test_dataset = test_dataset.map(speech_file_to_array_fn)
|
|
132 |
# Preprocessing the datasets.
|
133 |
# We need to read the audio files as arrays
|
134 |
def evaluate(batch):
|
135 |
-
|
136 |
|
137 |
-
|
138 |
-
|
139 |
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
|
144 |
result = test_dataset.map(evaluate, batched=True, batch_size=8)
|
145 |
|
|
|
132 |
# Preprocessing the datasets.
|
133 |
# We need to read the audio files as arrays
|
134 |
def evaluate(batch):
|
135 |
+
inputs = processor(batch["speech"], sampling_rate=16_000, return_tensors="pt", padding=True)
|
136 |
|
137 |
+
with torch.no_grad():
|
138 |
+
logits = model(inputs.input_values.to(DEVICE), attention_mask=inputs.attention_mask.to(DEVICE)).logits
|
139 |
|
140 |
+
pred_ids = torch.argmax(logits, dim=-1)
|
141 |
+
batch["pred_strings"] = processor.batch_decode(pred_ids)
|
142 |
+
return batch
|
143 |
|
144 |
result = test_dataset.map(evaluate, batched=True, batch_size=8)
|
145 |
|