I am trying to read glove.6B.300d.txt file into a Pandas dataframe. (The file can be downloaded from here: https://github.com/stanfordnlp/GloVe)
Here are the exceptions I am getting:
glove = pd.read_csv(filename, sep = ' ')
ParserError: Error tokenizing data. C error: EOF inside string starting at line 8
glove = pd.read_csv(filename, sep = ' ', engine = 'python')
ParserError: field larger than field limit (131072)