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