-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ValueError: not enough values to unpack (expected 2, got 1) #11
Comments
On colab there must not have been a directory name, as directories on drive
might be structured unusually.
Best,
Dan Hendrycks
…On Tue, Jun 21, 2022 at 7:07 PM lazir0lufias ***@***.***> wrote:
Hi, sorry im new in this field.
!python tune_gpt.py --khan-dataroot /content/amps/khan/ --save-dir
/content/drive/MyDrive/model/
when i using the above code on google colap, i got error
Traceback (most recent call last):
File "tune_gpt.py", line 333, in
main()
File "tune_gpt.py", line 318, in main
train_data = get_dataset(args)
File "tune_gpt.py", line 239, in get_dataset
len_multiplier, dirname = args.khan_dataroot.split("@")
ValueError: not enough values to unpack (expected 2, got 1)
How to fix this?
—
Reply to this email directly, view it on GitHub
<#11>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZBITT7QYZZD52LS2UTWITVQJYOJANCNFSM5ZOQHKGA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
free drive just 15gb but amps 23gb, how can i edit the scripts so that can be trained on colap ? |
I have the same problem here. I am running it on my machine, not on colab. Any ideas? Update: python t5_tune.py \
--mathematica-dataroot "/home/gui/dev/t5math/data/amps/mathematica/*/*/*.txt" However, it should be passed as a path (i.e., without the quotes): python t5_tune.py \
--mathematica-dataroot /home/gui/dev/t5math/data/amps/mathematica/*/*/*.txt The problem now is that I am getting an error |
I believe that dataroot is the path to the directories, i.e. |
I understand the problem now. It should be python t5_tune.py \
--mathematica-dataroot="/home/gui/dev/t5math/data/amps/mathematica/*/*/*.txt" in your case. |
Hi, sorry im new in this field.
!python tune_gpt.py --khan-dataroot /content/amps/khan/ --save-dir /content/drive/MyDrive/model/
when i using the above code on google colap, i got error
Traceback (most recent call last):
File "tune_gpt.py", line 333, in
main()
File "tune_gpt.py", line 318, in main
train_data = get_dataset(args)
File "tune_gpt.py", line 239, in get_dataset
len_multiplier, dirname = args.khan_dataroot.split("@")
ValueError: not enough values to unpack (expected 2, got 1)
How to fix this?
The text was updated successfully, but these errors were encountered: