33 lines
859 B
SQL
33 lines
859 B
SQL
/*
|
|
Navicat MySQL Data Transfer
|
|
|
|
Source Server : qiangge
|
|
Source Server Version : 50537
|
|
Source Host : localhost:3306
|
|
Source Database : zlb_github
|
|
|
|
Target Server Type : MYSQL
|
|
Target Server Version : 50537
|
|
File Encoding : 65001
|
|
|
|
Date: 2016-01-31 14:21:33
|
|
*/
|
|
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for numpy_sentences
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `numpy_sentences`;
|
|
CREATE TABLE `numpy_sentences` (
|
|
`project_id` int(11) DEFAULT NULL,
|
|
`number` int(11) DEFAULT NULL,
|
|
`text` text CHARACTER SET utf8mb4,
|
|
`issue_type` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
|
|
`kmeans` int(11) DEFAULT NULL,
|
|
`id` int(11) DEFAULT NULL,
|
|
`y_test` int(11) DEFAULT NULL,
|
|
`pred` int(11) DEFAULT NULL,
|
|
`diff` double DEFAULT NULL
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|