Generators¶
Base Generator
BaseGenerator
¶
Bases: BaseModel
, ABC
Base Generator Class.
Source code in src/fed_rag/base/generator.py
prompt_template
abstractmethod
property
writable
¶
Prompt template for formating query and context.
generate
abstractmethod
¶
Generate an output from a given query and context.
complete
abstractmethod
¶
compute_target_sequence_proba
abstractmethod
¶
Compute P(target | prompt).
NOTE: this is used in LM Supervised Retriever fine-tuning.