Not able to download the imdb dataset

Please guide me from where to download imdb movie review classification dataset as I am not able to download and find the dataset in txt format the dataset.

I think IMDB Dataset is available in CSV formats on open source websites, which can be handled using pandas. If you want it in txt format, you may convert it to txt format using python.

Just store the reviews in X and sentiments in Y, convert it to Numpy array, and use python to convert and store it in txt format :

txt = ""
for i in range(X.shape[0]) :
    temp = str(X[i]) + " " + str(Y[i]) + "\t"  // You can change this format
    txt += temp

Then save it as txt file :

with open('IMDB_Dataset.txt','w') as file :
    file.write(txt)

You may use Google Colab for this, since it’s a memory intensive operation. (It’s not necessary to use Colab :p)

hey @sanyakaushik2365 ,
have a look at here

You can find them here.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.