marinone94
commited on
Commit
•
101ce09
1
Parent(s):
49a13a3
add results in email
Browse files
run_speech_recognition_seq2seq_streaming.py
CHANGED
@@ -20,6 +20,7 @@ with 🤗 Datasets' streaming mode.
|
|
20 |
# You can also adapt this script for your own sequence to sequence speech
|
21 |
# recognition task. Pointers for this are left as comments.
|
22 |
|
|
|
23 |
import logging
|
24 |
import os
|
25 |
import sys
|
@@ -653,7 +654,7 @@ def main():
|
|
653 |
trainer.create_model_card(**kwargs)
|
654 |
|
655 |
# Training complete notification
|
656 |
-
notify_me()
|
657 |
|
658 |
return results
|
659 |
|
|
|
20 |
# You can also adapt this script for your own sequence to sequence speech
|
21 |
# recognition task. Pointers for this are left as comments.
|
22 |
|
23 |
+
import json
|
24 |
import logging
|
25 |
import os
|
26 |
import sys
|
|
|
654 |
trainer.create_model_card(**kwargs)
|
655 |
|
656 |
# Training complete notification
|
657 |
+
notify_me(recipient="marinone94@gmail.com", message=json.dumps(kwargs, indent=4))
|
658 |
|
659 |
return results
|
660 |
|