This is an automated email from the ASF dual-hosted git repository.

liuxun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/submarine.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f5102f  SUBMARINE-523 Fix the wrong path in deepfm.json and fm.json
9f5102f is described below

commit 9f5102ff3e2171dac0a13f2fa66efee61d7c1812
Author: arbaobao <[email protected]>
AuthorDate: Wed Jun 10 04:03:39 2020 +0800

    SUBMARINE-523 Fix the wrong path in deepfm.json and fm.json
    
    ### What is this PR for?
    
    Fix the wrong path
    
    ### What type of PR is it?
    Bug Fix
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * Open an issue on Jira https://issues.apache.org/jira/browse/SUBMARINE-523/
    
    ### How should this be tested?
    * First time? Setup Travis CI as described on 
https://submarine.apache.org/contribution/contributions.html#continuous-integration
    * Strongly recommended: add automated unit tests for any new or changed 
behavior
    * Outline any manual steps to test the PR here.
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Author: arbaobao <[email protected]>
    
    Closes #307 from arbaobao/SUBMARINE-523 and squashes the following commits:
    
    4d13f2a [arbaobao] SUBMARINE-523 Fix the wrong path in deepfm.json and 
fm.json
---
 submarine-sdk/pysubmarine/example/tensorflow/deepfm/deepfm.json | 6 +++---
 submarine-sdk/pysubmarine/example/tensorflow/fm/fm.json         | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/submarine-sdk/pysubmarine/example/tensorflow/deepfm/deepfm.json 
b/submarine-sdk/pysubmarine/example/tensorflow/deepfm/deepfm.json
index 57aa9bf..6d94682 100644
--- a/submarine-sdk/pysubmarine/example/tensorflow/deepfm/deepfm.json
+++ b/submarine-sdk/pysubmarine/example/tensorflow/deepfm/deepfm.json
@@ -1,8 +1,8 @@
 {
   "input": {
-    "train_data": ["../data/tr.libsvm"],
-    "valid_data": ["../data/va.libsvm"],
-    "test_data": ["../data/te.libsvm"],
+    "train_data": ["../../data/tr.libsvm"],
+    "valid_data": ["../../data/va.libsvm"],
+    "test_data": ["../../data/te.libsvm"],
     "type": "libsvm"
   },
   "output": {
diff --git a/submarine-sdk/pysubmarine/example/tensorflow/fm/fm.json 
b/submarine-sdk/pysubmarine/example/tensorflow/fm/fm.json
index b71e30d..3bea0d7 100644
--- a/submarine-sdk/pysubmarine/example/tensorflow/fm/fm.json
+++ b/submarine-sdk/pysubmarine/example/tensorflow/fm/fm.json
@@ -1,8 +1,8 @@
 {
   "input": {
-    "train_data": ["../data/tr.libsvm"],
-    "valid_data": ["../data/va.libsvm"],
-    "test_data": ["../data/te.libsvm"],
+    "train_data": ["../../data/tr.libsvm"],
+    "valid_data": ["../../data/va.libsvm"],
+    "test_data": ["../../data/te.libsvm"],
     "type": "libsvm"
   },
   "output": {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to