This is my parrot model + patterns + model history notes.
A parrot model should be trained and specific to your own voice, so I only recommend this for reference.
- pop
- cluck
- tut
- palate
- ah
- oh
- guh
- eh
- nn
- ee
- er
- t
- sh
- ss
- background - moving mic around, breathing, AC, table bumps, keyboard presses, door closing, adjusting things on the table, sitting in chair
- cough - throat clears, cough, nose clear, etc.
Use Parrot Tester tool for testing your parrot model.
Made one change from the original, for grace thresholds to work.
Old:
throttles = {}
if 'throttle' in pattern:
if name not in pattern['throttle']:
pattern['throttle'][name] = 0
throttles = pattern['throttle']
New:
throttles = {}
if 'throttle' in pattern:
# if name not in pattern['throttle']:
# pattern['throttle'][name] = 0
throttles = pattern['throttle']
You can check the Parrot Tester tool README for more information on this.