Commit b6dca3e0 authored by Lijiao's avatar Lijiao Committed by xuehui
Browse files

fix bug of randint in hyper-parameter graph (#1145)

parent 53d30bd7
...@@ -162,8 +162,8 @@ class Para extends React.Component<ParaProps, ParaState> { ...@@ -162,8 +162,8 @@ class Para extends React.Component<ParaProps, ParaState> {
parallelAxis.push({ parallelAxis.push({
dim: i, dim: i,
name: dimName[i], name: dimName[i],
max: searchKey._value[0] - 1, min: searchKey._value[0] + 1,
min: 0 max: searchKey._value[1] - 1,
}); });
break; break;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment