src.predictive_model package¶
Subpackages¶
- src.predictive_model.classification package
- Subpackages
- Submodules
- src.predictive_model.classification.apps module
- src.predictive_model.classification.classification module
- src.predictive_model.classification.custom_classification_models module
- src.predictive_model.classification.methods_default_config module
- src.predictive_model.classification.models module
- Module contents
- Subpackages
- src.predictive_model.regression package
- Subpackages
- Submodules
- src.predictive_model.regression.apps module
- src.predictive_model.regression.custom_regression_models module
- src.predictive_model.regression.methods_default_config module
- src.predictive_model.regression.models module
- src.predictive_model.regression.regression module
- Module contents
- Subpackages
- src.predictive_model.time_series_prediction package
- Subpackages
- Submodules
- src.predictive_model.time_series_prediction.TimeSeriesPredictorMixin module
- src.predictive_model.time_series_prediction.apps module
- src.predictive_model.time_series_prediction.custom_time_series_prediction_models module
- src.predictive_model.time_series_prediction.methods_default_config module
- src.predictive_model.time_series_prediction.models module
- src.predictive_model.time_series_prediction.time_series_prediction module
- Module contents
- Subpackages
Submodules¶
src.predictive_model.apps module¶
src.predictive_model.models module¶
-
class
src.predictive_model.models.PredictiveModel(*args, **kwargs)¶ Bases:
src.common.models.CommonModelContainer of Classification to be shown in frontend
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
classification¶ 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.restaurantis aReverseOneToOneDescriptorinstance.
-
get_predictive_model_display(*, field=<django.db.models.fields.CharField: predictive_model>)¶
-
id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
static
init(configuration)¶
-
job_set¶ 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.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
model_path¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
objects= <model_utils.managers.InheritanceManager object>¶
-
prediction_method¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
predictive_model¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
regression¶ 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.restaurantis aReverseOneToOneDescriptorinstance.
-
timeseriesprediction¶ 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.restaurantis aReverseOneToOneDescriptorinstance.
-
to_dict()¶
-
exception