huggingface / transfer-learning-conv-ai

🦄 State-of-the-Art Conversational AI with Transfer Learning
MIT License
1.74k stars 430 forks source link

How should the value of --num_candidates and --personality_permutations be determined? #129

Open kassy11 opened 1 year ago

kassy11 commented 1 year ago

I don't understand what you mean by command line parameter --num_candidates and --personality_permutations.(even though read help)

Should these be changed depending on the content of the training data?

For example, if training data is like this:

{
    "personality": ["persona description"],
    "utterances": [
        {"candidates": [
            10 data
        ],
        "history": [
            "history",
        ]
        }
    ]
}

Should --num_candidates be set to 10??

And I don't fully understand about --personality_permutations.

I would appreciate it if you could let me know!!