Python: Wrong directory

The error is clear: No such file or directory: 'small_valid.txt'. Move your file into this path:

C:\Users\jre\Desktop\SentimentAnalysis-master\SentimentAnalysis-master

or update the next code lines to use an absolute path:

train = open('C:\..path_to_file..\small_train.txt', 'r')

valid = open('C:\..path_to_file..\small_valid.txt', 'r')

Leave a Comment