Skip to content

Commit

Permalink
Merge branch 'develop' into branch-2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paynie committed May 5, 2019
2 parents 2c8e712 + fc0eead commit 04f9205
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DeepFMTest extends PSFunSuite with SharedPSContext {
override def beforeAll(): Unit = {
super.beforeAll()

input = "data/census/census_148d_train.libsvm"
input = "../../data/census/census_148d_train.libsvm"

// build SharedConf with params
SharedConf.get()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class FactorizationMachineTest extends PSFunSuite with SharedPSContext {

override def beforeAll(): Unit = {
super.beforeAll()
input = "data/census/census_148d_train.libsvm"
input = "../../data/census/census_148d_train.libsvm"

// build SharedConf with params
SharedConf.get()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class LogisticRegressionTest extends PSFunSuite with SharedPSContext {
override def beforeAll(): Unit = {
super.beforeAll()

input = "data/census/census_148d_train.libsvm"
input = "../../data/census/census_148d_train.libsvm"

// build SharedConf with params
SharedConf.get()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class MixedLogisticRegressionTest extends PSFunSuite with SharedPSContext {
override def beforeAll(): Unit = {
super.beforeAll()

input = "data/census/census_148d_train.libsvm"
input = "../../data/census/census_148d_train.libsvm"

// build SharedConf with params
SharedConf.get()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class SVMTest extends PSFunSuite with SharedPSContext {
override def beforeAll(): Unit = {
super.beforeAll()

input = "data/census/census_148d_train.libsvm"
input = "../../data/census/census_148d_train.libsvm"

// build SharedConf with params
SharedConf.get()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class WideAndDeepTest extends PSFunSuite with SharedPSContext {
override def beforeAll(): Unit = {
super.beforeAll()

input = "data/census/census_148d_train.libsvm"
input = "../../data/census/census_148d_train.libsvm"

// build SharedConf with params
SharedConf.get()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import com.tencent.angel.spark.ml.embedding.line.LINEModel
import com.tencent.angel.spark.ml.{PSFunSuite, SharedPSContext}

class LINEModelSuite extends PSFunSuite with SharedPSContext {
val input = "data/bc/edge"
val input = "../../data/bc/edge"
val output = "model/"
val numPartition = 4
val lr = 0.025f
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import scala.util.Random

class Word2VecModelSuite extends PSFunSuite with SharedPSContext {

val input = "data/text8/text8.split.head"
val input = "../../data/text8/text8.split.head"
val output = "model/"
val lr = 0.1f
val dim = 32
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import scala.util.Random

class Word2VecSuite extends PSFunSuite with SharedPSContext {

private val input = "data/text8/text8.split.head"
private val input = "../../data/text8/text8.split.head"

override def beforeAll(): Unit = {
super.beforeAll()
Expand Down

0 comments on commit 04f9205

Please sign in to comment.