Merge pull request #1602 from GoogleCloudPlatform/issue_1599

fix: issue 1599
This commit is contained in:
gericdong
2023-03-14 16:44:17 +00:00
committed by GitHub
@@ -863,8 +863,8 @@
" )\n",
" params = []\n",
" for _ in range(13):\n",
" x_train[_], max = scale(x_train[_])\n",
" x_test[_], _ = scale(x_test[_])\n",
" x_train[_], max = scale(x_train[_:_+1:])\n",
" x_test[_], _ = scale(x_test[_:_+1:])\n",
" params.append(max)\n",
"\n",
" # store the normalization (max) value for each feature\n",