adityamity
adityamity
@dosu I want to understand where exactly in the code, the ground_truth is generated as a column in testset?
@dosu for my documents, how RAGAS generate ground_truth and on what basis?
@dosu in the above answer i am not able to understand, how ground_truth is generated. Is there any prompt that RAGAS is using to create the ground_truth?if yes, where exactly...
@dosu which of these prompt are specifically used for ground_truth generation?
@dosu : For my document, i found that for many questions the the ground_truth value is coming as "`The answer to given question is not present in context"`. After checking...
@dosu From where does RAGAS get contexts in the testset using TestSetGenerator. Also as the `contexts` column contain list of context, what is the length of this list and where...
@dosu - The testset generated from TestSetGenerator class contains columns` 'question', 'contexts', 'ground_truth','evolution_type','metadata','episode_done'`. 1 - I want to know from where does this 'contexts' column values come from. 2 -...
@dosu In the below code , what is the use of test_size paramater. I have given test_size =5, what does this means? ``` generator = TestsetGenerator.from_llama_index( generator_llm =llm_model, critic_llm =...
@dosu is the above test_size is also used when generating the list of context in the contexts column?
@dosu The testset generated from TestSetGenerator class contains columns 'question', 'contexts', 'ground_truth','evolution_type','metadata','episode_done'.Here the `contexts` columns is generated from the nodes, but does ragas used any pormpt for generating these `contexts`...