Skip to content

Commit 5ac6ee0

Browse files
committed
EasyML 1.2.0 version, which include tensorflow support and other new improvements in release document.
1 parent e110e8a commit 5ac6ee0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1029
-301
lines changed

QuickStart.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,12 @@ Because the hadoop cluster network communication depend on ssh, we need to confi
188188
189189
### Init Mysql database
190190
* Run `sh init_mysql.sh` to prepare the databases for *Oozie* and *EasyML Studio*
191+
### Add Tensorflow Support
192+
Our EML installation package in version 1.2.0 or above could support Tensorflow mode.Follow the steps bellow If you want to have a try.
193+
194+
* Enter the `hadoop-master` container via  docker exec -it hadoop-master /bin/bash 
195+
* Run `sh /root/config-tensorflow.sh` to config the environment that tensorflow need.
196+
* If you want to config the environment yourself, you can do use the tensorflow folder scripts in EasyML Project.
191197
### Start HDFS,spark and Yarn service
192198
* Enter the *hadoop-master* container via `docker exec -it hadoop-master /bin/bash` (a vital important command to enter every container)
193199
* Run `sh /root/start-hadoop.sh` to start hadoop and spark service

mysql/studio/account.sql

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
/*
22
Navicat MySQL Data Transfer
33
4-
Source Server : BDA(烟台)
54
Source Server Version : 50717
6-
Source Host : 10.20.13.7:3306
75
Source Database : studio
86
97
Target Server Type : MYSQL
108
Target Server Version : 50717
119
File Encoding : 65001
1210
13-
Date: 2017-10-18 16:18:47
11+
Date: 2018-03-29 10:36:38
1412
*/
1513

1614
SET FOREIGN_KEY_CHECKS=0;
1715

1816
-- ----------------------------
19-
-- Table structure for account
17+
-- Table structure for `account`
2018
-- ----------------------------
2119
DROP TABLE IF EXISTS `account`;
2220
CREATE TABLE `account` (

mysql/studio/bdajob.sql

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

mysql/studio/category.sql

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
/*
22
Navicat MySQL Data Transfer
33
4-
Source Server : BDA(烟台)
54
Source Server Version : 50717
6-
Source Host : 10.20.13.7:3306
75
Source Database : studio
86
97
Target Server Type : MYSQL
108
Target Server Version : 50717
119
File Encoding : 65001
1210
13-
Date: 2017-10-18 16:27:48
11+
Date: 2018-03-29 10:36:46
1412
*/
1513

1614
SET FOREIGN_KEY_CHECKS=0;
1715

1816
-- ----------------------------
19-
-- Table structure for category
17+
-- Table structure for `category`
2018
-- ----------------------------
2119
DROP TABLE IF EXISTS `category`;
2220
CREATE TABLE `category` (

mysql/studio/dataset.sql

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
/*
22
Navicat MySQL Data Transfer
33
4-
Source Server : BDA(烟台)
54
Source Server Version : 50717
6-
Source Host : 10.20.13.7:3306
75
Source Database : studio
86
97
Target Server Type : MYSQL
108
Target Server Version : 50717
119
File Encoding : 65001
1210
13-
Date: 2017-10-18 16:27:57
11+
Date: 2018-03-29 10:36:02
1412
*/
1513

1614
SET FOREIGN_KEY_CHECKS=0;
1715

1816
-- ----------------------------
19-
-- Table structure for dataset
17+
-- Table structure for `dataset`
2018
-- ----------------------------
2119
DROP TABLE IF EXISTS `dataset`;
2220
CREATE TABLE `dataset` (
@@ -37,4 +35,5 @@ CREATE TABLE `dataset` (
3735
-- ----------------------------
3836
-- Records of dataset
3937
-- ----------------------------
40-
INSERT INTO `dataset` VALUES ('Dataset', 'DataSet', 'System Data', 'bdaict@hotmail.com', '/EML/Data/Dataset', '0', null, '0.1', '2017-04-29 16:34:01', '', 'General');
38+
INSERT INTO `dataset` VALUES ('A2EEE4A9-EA84-47D2-9EAA-CC8CE701FD49', 'Dataset', '0A0F402F-670F-4696-9D9C-42F0E0D665A00', 'bdaict@hotmail.com', '/EML/Data/A2EEE4A9-EA84-47D2-9EAA-CC8CE701FD49', '0', null, '0.1', '2018-03-28 18:40:08', '', '');
39+
INSERT INTO `dataset` VALUES ('EA15288C-40D5-4E44-884E-0B0C508651BF', 'mnist', '0A0F402F-670F-4696-9D9C-42F0E0D665A00', 'bdaict@hotmail.com', '/EML/Data/EA15288C-40D5-4E44-884E-0B0C508651BF', '0', null, '0.1', '2018-03-28 18:39:27', '', '');

mysql/studio/jobcron.sql

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
/*
22
Navicat MySQL Data Transfer
33
4-
Source Server : BDA(烟台)
54
Source Server Version : 50717
6-
Source Host : 10.20.13.7:3306
75
Source Database : studio
86
97
Target Server Type : MYSQL
108
Target Server Version : 50717
119
File Encoding : 65001
1210
13-
Date: 2017-10-18 16:28:07
11+
Date: 2018-03-29 10:36:53
1412
*/
1513

1614
SET FOREIGN_KEY_CHECKS=0;
1715

1816
-- ----------------------------
19-
-- Table structure for jobcron
17+
-- Table structure for `jobcron`
2018
-- ----------------------------
2119
DROP TABLE IF EXISTS `jobcron`;
2220
CREATE TABLE `jobcron` (

mysql/studio/moduleversion.sql

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
/*
22
Navicat MySQL Data Transfer
33
4-
Source Server : BDA(烟台)
54
Source Server Version : 50717
6-
Source Host : 10.20.13.7:3306
75
Source Database : studio
86
97
Target Server Type : MYSQL
108
Target Server Version : 50717
119
File Encoding : 65001
1210
13-
Date: 2017-10-18 16:28:16
11+
Date: 2018-03-29 10:37:05
1412
*/
1513

1614
SET FOREIGN_KEY_CHECKS=0;
1715

1816
-- ----------------------------
19-
-- Table structure for moduleversion
17+
-- Table structure for `moduleversion`
2018
-- ----------------------------
2119
DROP TABLE IF EXISTS `moduleversion`;
2220
CREATE TABLE `moduleversion` (

mysql/studio/oozieaction.sql

Lines changed: 214 additions & 40 deletions
Large diffs are not rendered by default.

mysql/studio/ooziejob.sql

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

mysql/studio/program.sql

Lines changed: 21 additions & 18 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)