We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb27bf9 commit 4f71b0cCopy full SHA for 4f71b0c
.gitignore
@@ -0,0 +1,2 @@
1
+.idea/
2
+venv/
LogisticRegression/LogisticRegression_scikit-learn.py
@@ -16,7 +16,7 @@ def logisticRegression():
16
17
# 归一化
18
scaler = StandardScaler()
19
- scaler.fit(x_train)
+ # scaler.fit(x_train)
20
x_train = scaler.fit_transform(x_train)
21
x_test = scaler.fit_transform(x_test)
22
readme.md
@@ -313,7 +313,6 @@ import numpy as np
313
```
314
315
316
317
318
319
0 commit comments