Skip to content
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

Question: about test set "retrieve"? #14

Open
FutureWithoutEnding opened this issue Oct 26, 2023 · 0 comments
Open

Question: about test set "retrieve"? #14

FutureWithoutEnding opened this issue Oct 26, 2023 · 0 comments

Comments

@FutureWithoutEnding
Copy link

Code in data/dpr_wikitext103_1024/test_retrieve.py

def search_one_job(worker_id):

    # encode the test prefix
    # with open(f'../{args["dataset"]}/new_test.txt') as f:
    with open(f'../{args["dataset"]}/test.txt') as f:
        datasets = [line.strip() for line in tqdm(f.readlines())]
        test_set = []
        for line in datasets:
            words = nltk.word_tokenize(line)
            if len(words) >= 32:
                # prefix = clean_data(words[:32])
                prefix = clean_data(words)     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
                # reference = clean_data(words[32:32+128])
                reference = clean_data(words)
                test_set.append((prefix, reference))
    print(f'[!] collect {len(test_set)} samples from the test set')

I think the prefix should not the whole,
becase “actual generation, behind is unknow”

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant