BaseGenerator
BaseGeneratoris the base class for all generators.
You can also easily inherit this base class to customize your own generator class. Just override the
__init__andgeneratemethod.
Constructor
__init__(self, target_dir: str = "data/generations/")Parameters
target_dir(str): The specified directory to store the generated instruction files.
Last updated