-
Notifications
You must be signed in to change notification settings - Fork 1
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
Experiment run command #49
Conversation
@rchan26 all looks good but do we really need that option where you pass just the name of the file and if the file is not in the same directory checks if it's in input? Can't we simplify it by just allowing the correct path where the file is? |
yeah, I was thinking and debating about this. it is a bit messier, but I was thinking about the case where your data folder isn't
in this setup, you could do
to run But I think I agree with you, it's a bit confusing, especially if for some reason you have |
Fix #10. The filename must be the full path to the file,
Example usage:
test.jsonl
is in the current directory, it'll get moved to the input folder of the data folder, which isdata/input
by default:test.jsonl
is not in the current directory, you must provide the full path to it and it'll get moved to the input folder of the data folder if it isn't already. if it is in the data folder:-d
as usual, and there are flags for max-queries per minute (-m
) and max retry attempts (-a
) and whether or not to run the experiment in "parallel" (-p
) by querying different APIs in parallel - just like the standardprompto_run_pipeline
commandNote: the below is not an option anymore but keeping here as a record: