Skip to content

Commit

Permalink
test for num bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
jalencato committed Oct 5, 2023
1 parent 8163a08 commit 355b75b
Showing 1 changed file with 5 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,6 @@
"source_id_col" : "~from",
"dest_id_col" : "~to",
"relation": ["user", "rated", "movie"]
},
{
"files": "edges/director-directed-movie.csv",
"format": {
"name": "csv",
"separator" : ","
},
"source_id_col" : "~from",
"dest_id_col" : "~to",
"relation": ["director", "directed", "movie"]
}
],
"nodes" : [
Expand All @@ -40,7 +30,7 @@
},
{
"node_id_col": "~id",
"node_type": "movies",
"node_type": "movie",
"format": {"name": "csv", "separator": ","},
"files": ["nodes/movie.csv"]
},
Expand All @@ -49,16 +39,12 @@
"node_type": "user",
"format": {"name": "csv", "separator": ","},
"files": ["nodes/user.csv"],
"labels" : [
{
"label_col": "gender",
"task_type": "classification",
"split_pct" : [0.8, 0.1, 0.1]
}
],
"features": [
{
"feature_col": ["age"]
"feature_col": "age",
"transform": {"name": "max_min_norm",
"max_bound": 40,
"min_bound": 4}
}
]
}
Expand Down

0 comments on commit 355b75b

Please sign in to comment.