djai.data.models package¶
DjAI DataSet/DataSource Model classes.
- class djai.data.models.AudioDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI Audio DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.CSVDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI CSV DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.DataSchema(*args, **kwargs)[source]¶
Bases:
polymorphic.models.PolymorphicModel
,djai.util.models._ModelWithUUIDPKAndOptionalUniqueNameAndTimestampsABC
DjAI DataSchema class.
- exception DoesNotExist¶
Bases:
django.core.exceptions.ObjectDoesNotExist
- exception MultipleObjectsReturned¶
Bases:
django.core.exceptions.MultipleObjectsReturned
- created¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- data_sets¶
Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.children
is aReverseManyToOneDescriptor
instance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()
defined below.
- get_next_by_created(*, field=<model_utils.fields.AutoCreatedField: created>, is_next=True, **kwargs)¶
- get_next_by_modified(*, field=<model_utils.fields.AutoLastModifiedField: modified>, is_next=True, **kwargs)¶
- get_previous_by_created(*, field=<model_utils.fields.AutoCreatedField: created>, is_next=False, **kwargs)¶
- get_previous_by_modified(*, field=<model_utils.fields.AutoLastModifiedField: modified>, is_next=False, **kwargs)¶
- modified¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- name: CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_ctype¶
The model field that stores the
ContentType
reference to the actual class.
- polymorphic_ctype_id¶
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- specs¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- uuid: UUIDField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class djai.data.models.DataSet(*args, **kwargs)[source]¶
Bases:
polymorphic.models.PolymorphicModel
,djai.util.models._ModelWithUUIDPKAndOptionalUniqueNameAndTimestampsABC
DjAI base DataSet class.
- exception DoesNotExist¶
Bases:
django.core.exceptions.ObjectDoesNotExist
- exception MultipleObjectsReturned¶
Bases:
django.core.exceptions.MultipleObjectsReturned
- RELATED_NAME: str = 'data_sets'¶
- RELATED_QUERY_NAME: str = 'data_set'¶
- created¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- get_next_by_created(*, field=<model_utils.fields.AutoCreatedField: created>, is_next=True, **kwargs)¶
- get_next_by_modified(*, field=<model_utils.fields.AutoLastModifiedField: modified>, is_next=True, **kwargs)¶
- get_previous_by_created(*, field=<model_utils.fields.AutoCreatedField: created>, is_next=False, **kwargs)¶
- get_previous_by_modified(*, field=<model_utils.fields.AutoLastModifiedField: modified>, is_next=False, **kwargs)¶
- in_db_json_data_sets¶
Accessor to the related object on the reverse side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Place.restaurant
is aReverseOneToOneDescriptor
instance.
- modified¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- name: CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_ctype¶
The model field that stores the
ContentType
reference to the actual class.
- polymorphic_ctype_id¶
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- schema: django.db.models.fields.related.ForeignKey¶
Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Child.parent
is aForwardManyToOneDescriptor
instance.
- schema_id¶
- uuid: UUIDField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- class djai.data.models.HDFDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI HDF DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.ImageDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI Image DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.InDBJSONDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base.DataSet
DjAI In-Database JSON DataSet class.
- exception DoesNotExist¶
- exception MultipleObjectsReturned¶
Bases:
djai.data.models.base.DataSet.MultipleObjectsReturned
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- in_db_json: django.db.models.fields.json.JSONField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.JSONDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.json._FileDataSetWithInDBJSONCacheABC
DjAI JSON DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.json._FileDataSetWithInDBJSONCacheABC.Meta
Django Model Class Metadata.
- abstract = False¶
- global_url: CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- indbjsondataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- indbjsondataset_ptr_id¶
- local_path: CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.LiveAPIDataSource(*args, **kwargs)[source]¶
Bases:
djai.data.models.base.DataSet
DjAI Image DataSet class.
- class Meta[source]¶
Bases:
polymorphic.models.PolymorphicModel.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.NumPyArray(*args, **kwargs)[source]¶
Bases:
djai.data.models.json._FileDataSetWithInDBJSONCacheABC
DjAI JSON DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.json._FileDataSetWithInDBJSONCacheABC.Meta
Django Model Class Metadata.
- abstract = False¶
- global_url: CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- indbjsondataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- indbjsondataset_ptr_id¶
- local_path: CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.ORCDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI ORC DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.PandasDataFrame(*args, **kwargs)[source]¶
Bases:
djai.data.models.json._FileDataSetWithInDBJSONCacheABC
DjAI JSON DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.json._FileDataSetWithInDBJSONCacheABC.Meta
Django Model Class Metadata.
- abstract = False¶
- global_url: CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- indbjsondataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- indbjsondataset_ptr_id¶
- local_path: CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.ParquetDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI Parquet DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.TFRecordDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI TFRecord DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.TextDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI Text DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
- class djai.data.models.VideoDataSet(*args, **kwargs)[source]¶
Bases:
djai.data.models.base._FileDataSetABC
DjAI Video DataSet class.
- class Meta[source]¶
Bases:
djai.data.models.base._FileDataSetABC.Meta
Django Model Class Metadata.
- abstract = False¶
- dataset_ptr¶
Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.place
is aForwardOneToOneDescriptor
instance.
- dataset_ptr_id¶
- global_url: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- local_path: django.db.models.fields.CharField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- path_is_dir: django.db.models.fields.BooleanField¶
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
- polymorphic_primary_key_name = 'uuid'¶
- polymorphic_super_sub_accessors_replaced = False¶
Subpackages¶
Submodules¶
- djai.data.models.audio module
- djai.data.models.base module
- djai.data.models.csv module
- djai.data.models.hdf module
- djai.data.models.image module
- djai.data.models.json module
- djai.data.models.live_api module
- djai.data.models.numpy module
- djai.data.models.orc module
- djai.data.models.pandas module
- djai.data.models.parquet module
- djai.data.models.text module
- djai.data.models.tfrecord module
- djai.data.models.video module