Mapping (CMUdict) ARPAbet to Oculus visemes
For a colleague
Using the Oculus viseme reference with blanks filled in based on the Microsoft SPVISEMES
%%capture
%pip install pandas
import pandas as pd
df = pd.read_csv('/tmp/arpa-oculus.tsv', sep='\t', header=None, na_filter=False)
from IPython.core.display import HTML
HTML(df.to_html())
df2 = pd.read_csv('/tmp/msviseme-oculus.tsv', sep='\t', header=0, na_filter=False)
HTML(df2.to_html())