[docs]classGenerativeModel:""" Generative models are algorithms which can be trained to learn patterns in existing datasets, and then be used to generate new synthetic datasets. These methods can be used in the :ref:`TrainGenModel` instruction, and previously trained models can be used to generate data using the :ref:`ApplyGenModel` instruction. """DOCS_TITLE="Generative models"OUTPUT_COLUMNS=[]def__init__(self,locus,name:str=None,region_type:RegionType=None):self.locus=locusself.name=nameself.region_type=region_type