some work done on the running of the model

This commit is contained in:
2024-03-06 23:33:54 +00:00
parent 30c5b57378
commit 4a95f0211d
17 changed files with 360 additions and 121 deletions

View File

@@ -29,7 +29,12 @@ create table if not exists model_classes (
id uuid primary key default gen_random_uuid(),
model_id uuid references models (id) on delete cascade,
name varchar (70) not null,
class_order integer
class_order integer,
-- 1: to_train
-- 2: training
-- 3: trained
status integer default 1,
);
-- drop table if exists model_data_point;