ipapy icon indicating copy to clipboard operation
ipapy copied to clipboard

ARPABETMapper generates phones that are not part of ARPABET

Open nkaenzig-aifund opened this issue 3 years ago • 0 comments

The ARPABETMapper class seems to map some IPA phones to phones that are not part of ARPABET. So far I've seen the following examples: {'EA', 'IA', 'OH', 'Q', 'UA'}

Code to reproduce:

from ipapy.arpabetmapper import ARPABETMapper
amapper = ARPABETMapper()
amapper.map_unicode_string('o' + 'ʔ', ignore=True, return_as_list=True)

# OUTPUT: ['OH', 'Q']

nkaenzig-aifund avatar Aug 23 '22 20:08 nkaenzig-aifund