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
I just ran run_pipeline.py and got missing file errors:
FileNotFoundError: [Errno 2] No such file or directory: 'datasets/random-api-completion.test.jsonl'
As far as I understand, the random- prefix denotes split subsets for evaluation, as referred to in Section 3 of the original paper:
Eventually, a total of 1600 test samples are generated for the line completion dataset.
and
From these candidates, we then randomly select 200 non-repetitive API invocations from each repository, resulting in a total of 1600 test samples for the API invocation completion dataset.
For the purpose of reproduction , I would like to ask you about the following four subsets in utils.py:
classFilePathBuilder:
api_completion_benchmark='datasets/random-api-completion.test.jsonl'random_line_completion_benchmark='datasets/random-line-completion.test.jsonl'# short version for codegenshort_api_completion_benchmark='datasets/random-api-completion-short-version.test.jsonl'short_random_line_completion_benchmark='datasets/random-line-completion-short-version.test.jsonl'
The text was updated successfully, but these errors were encountered:
Thank you for your wonderful work!
I just ran
run_pipeline.py
and got missing file errors:As far as I understand, the
random-
prefix denotes split subsets for evaluation, as referred to in Section 3 of the original paper:and
For the purpose of reproduction , I would like to ask you about the following four subsets in
utils.py
:The text was updated successfully, but these errors were encountered: