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
Hello ,
I have question about the code of wikihow-fine-tuning-T5
I tried the code in google colab but I face a problem with data, how can I have the data splitted.
my way is that I download the 2 files (wikihowAll.csv, wikihowSep.csv) locally in my PC then I upload it to google drive( as .rar file then I unrar it by code )then when I run this code print(dataset.keys())
its output is Index(['headline','title', 'text'], dtype='object')
does this mean that I should run the code that configure the tensorflow here https://www.tensorflow.org/datasets/api_docs/python/tfds/download/DownloadConfig
if yes what should I put in the value of the attributes (extract_dir, manual_dir)?
but when I try to run the code with jupyter editor (locally in my PC its work well and the output is dict_keys(['train', 'validation', 'test']) but I can't work with jupyter, I think it is because my PC doesn't have GPU and I face problem when I try to train the model by this code model = T5FineTuner(args) , the output as following ValueError: Cannot acquire lock, caching file might be used by another process, you should setup a unique 'experiment_id' for this run.
I am confused, how can I run the code well
I need the steps with details or if you have a video explain the tutorial it will be better
I am beginner to this field, so please guide me
The text was updated successfully, but these errors were encountered:
Hello ,
I have question about the code of wikihow-fine-tuning-T5
I tried the code in google colab but I face a problem with data, how can I have the data splitted.
my way is that I download the 2 files (wikihowAll.csv, wikihowSep.csv) locally in my PC then I upload it to google drive( as .rar file then I unrar it by code )then when I run this code
print(dataset.keys())
its output is
Index(['headline','title', 'text'], dtype='object')
does this mean that I should run the code that configure the tensorflow here https://www.tensorflow.org/datasets/api_docs/python/tfds/download/DownloadConfig
if yes what should I put in the value of the attributes (extract_dir, manual_dir)?
but when I try to run the code with jupyter editor (locally in my PC its work well and the output is
dict_keys(['train', 'validation', 'test'])
but I can't work with jupyter, I think it is because my PC doesn't have GPU and I face problem when I try to train the model by this codemodel = T5FineTuner(args)
, the output as followingValueError: Cannot acquire lock, caching file might be used by another process, you should setup a unique 'experiment_id' for this run.
I am confused, how can I run the code well
I need the steps with details or if you have a video explain the tutorial it will be better
I am beginner to this field, so please guide me
The text was updated successfully, but these errors were encountered: