Giter Club home page Giter Club logo

training-platform's Introduction

#训练平台项目

##建表语句


-- Schema training_platform


CREATE SCHEMA IF NOT EXISTS training_platform DEFAULT CHARACTER SET utf8 ; USE training_platform ;


-- Table training_platform.model


CREATE TABLE model ( model_id int(11) NOT NULL AUTO_INCREMENT COMMENT '主键' , model_name varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '模型名称' , model_describe varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '模型描述' , create_time datetime NOT NULL COMMENT '创建时间' , update_time datetime NOT NULL COMMENT '更新时间' , model_type tinyint(2) NOT NULL COMMENT '模型类别:' , PRIMARY KEY (model_id) ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=2 ROW_FORMAT=DYNAMIC ;


-- Table training_platform.dataset


CREATE TABLE dataset ( dataset_id int(11) NOT NULL AUTO_INCREMENT , dataset_name varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '数据集名称' , create_time datetime NOT NULL , update_time datetime NOT NULL , dataset_type tinyint(2) NOT NULL COMMENT '数据集类型:1-训练集 2-校验集' , PRIMARY KEY (dataset_id) ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=2 ROW_FORMAT=DYNAMIC ;


-- Table training_platform.label


CREATE TABLE label ( label_id int(11) NOT NULL AUTO_INCREMENT , label_name varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '标签名称' , images varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '标签下面的图片' , create_time datetime NOT NULL , update_time datetime NOT NULL , dataset_id int(11) NOT NULL , PRIMARY KEY (label_id) ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=3 ROW_FORMAT=DYNAMIC ;


-- Table training_platform.application


CREATE TABLE NewTable ( application_id int(10) UNSIGNED NOT NULL AUTO_INCREMENT , application_type varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '应用类型' , application_version varchar(45) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '版本' , training_status tinyint(2) NOT NULL , training_start_time datetime NOT NULL , training_end_time datetime NULL DEFAULT NULL , appraisal_report varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '评估报告' , model_id int(11) NOT NULL , dataset_id int(11) NOT NULL , label_ids varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '标签id' , PRIMARY KEY (application_id) ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1 ROW_FORMAT=DYNAMIC ;

##swagger2文档地址
http://localhost:2029/training/platform/doc.html

training-platform's People

Contributors

wuleguang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.