Steps for setting up IF0

Install PolyglotDB
    - Clone/fork repo
    - From repo root:
        - pip install -r requirements.txt
        - python setup.py install (if windows, run in command prompt that is running as administrator)
        - python bin/pgdb.py install /path/to/where/you/want/data/to/be/stored
        
Anytime you want to start up the polyglot server:   
    - python bin/pgdb.py start (if windows, run in command prompt that is running as administrator)
    
When you're done working:
    - python bin/pgdb.py stop (if windows, run in command prompt that is running as administrator)
    
Scripts for IF0 are in that repo (mlml/intrinsicf0):
    Latest extraction script is extraction/all_langs.py
        - First thing is a lot of configuration dictionaries for each language
            - You'll want to download one from the NAS, updates paths to reflect your local machine
        - Also configs for segments, shouldn't have to touch these at all
        - Various function definitions for each step
            - Import
            - Enrichment
            - Extraction
        - Each step has checks for redundancy
            - If pitch gets encoded once, subsequent runs will not do pitch estimation
            - Use the redo_languages list to specify if a language should get redone (something went wrong, segment list got changed, etc)