src.schema_model

Classes

User

Dataset

EmbeddingMethod

EmbeddingResult

ClusteringMethod

ClusteringResult

DimReductionMethod

DimReductionResult

Module Contents

class src.schema_model.User

Bases: extensions.sqlalchemy_db.Model, flask_login.UserMixin

__tablename__ = 'users'
__bind_key__ = 'user_db'
id
username
password
class src.schema_model.Dataset

Bases: extensions.sqlalchemy_db.Model

__tablename__ = 'datasets'
__bind_key__ = 'pipeline_db'
id
dataset_name
path_audio
created_at
is_selected
class src.schema_model.EmbeddingMethod

Bases: extensions.sqlalchemy_db.Model

__tablename__ = 'embedding_methods'
__bind_key__ = 'pipeline_db'
id
method_name
created_at
class src.schema_model.EmbeddingResult

Bases: extensions.sqlalchemy_db.Model

__tablename__ = 'embedding_results'
__bind_key__ = 'pipeline_db'
id
dataset_id
embedding_id
file_path
hyperparameters
evaluation_results
task_state
task_key
last_changed
created_at
dataset
method
class src.schema_model.ClusteringMethod

Bases: extensions.sqlalchemy_db.Model

__tablename__ = 'clustering'
__bind_key__ = 'pipeline_db'
id
method_name
created_at
class src.schema_model.ClusteringResult

Bases: extensions.sqlalchemy_db.Model

__tablename__ = 'clustering_results'
__bind_key__ = 'pipeline_db'
id
embedding_result_id
method_id
file_path
hyperparameters
evaluation_results
task_state
task_key
last_changed
created_at
embedding
method
class src.schema_model.DimReductionMethod

Bases: extensions.sqlalchemy_db.Model

__tablename__ = 'dimensionality_reduction'
__bind_key__ = 'pipeline_db'
method_id
method_name
created_at
class src.schema_model.DimReductionResult

Bases: extensions.sqlalchemy_db.Model

__tablename__ = 'dim_reduction_results'
__bind_key__ = 'pipeline_db'
result_id
clustering_result_id
method_id
reduction_file_path
hyperparameters
created_at
clustering_result
method