You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking through your Translation.ipynb code, your READ.ME in Dataset folder costs nothing. No description for how to name and store datasets provided. You mention full_data folder, but files must be stored in train, test and val folders.
It comes from train_files = glob.glob('train/*.csv') test_files = glob.glob('test/*.csv') val_files = glob.glob('val/*.csv') files= train_files+test_files+val_files
Fix it please!
The text was updated successfully, but these errors were encountered:
Looking through your
Translation.ipynb
code, yourREAD.ME
inDataset
folder costs nothing. No description for how to name and store datasets provided. You mentionfull_data
folder, but files must be stored intrain
,test
andval
folders.It comes from
train_files = glob.glob('train/*.csv')
test_files = glob.glob('test/*.csv')
val_files = glob.glob('val/*.csv')
files= train_files+test_files+val_files
Fix it please!
The text was updated successfully, but these errors were encountered: