Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

metadata.py 721 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  1. """A python dictionary to store meta-data about the speakers."""
  2. metadata = {
  3. 'jackson': {
  4. 'gender': 'male',
  5. 'accent': 'USA/neutral',
  6. 'language': 'english'
  7. },
  8. 'nicolas': {
  9. 'gender': 'male',
  10. 'accent': 'BEL/French',
  11. 'language': 'english'
  12. },
  13. 'theo': {
  14. 'gender': 'male',
  15. 'accent': 'USA/neutral',
  16. 'language': 'english'
  17. },
  18. 'yweweler': {
  19. 'gender': 'male',
  20. 'accent': 'DEU/German',
  21. 'language': 'english'
  22. },
  23. 'george': {
  24. 'gender': 'male',
  25. 'accent': 'GRC/Greek',
  26. 'language': 'english'
  27. },
  28. 'lucas': {
  29. 'gender': 'male',
  30. 'accent': 'DEU/German',
  31. 'language': 'english'
  32. }
  33. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...