I have a DataFrame with one column containing .txt files.
How can I access the text files?
When I try:
f = open(df.embedding_file.iloc[0], "r")
I get the following error :
FileNotFoundError: [Errno 2] No such file or directory: 'doc_embeddings_1.txt'