python 1e-5とはどういう意味ですか?
2022-02-21 04:06:16
x = 1e-4
印刷 x
は0.0001を出力します
もし、e-5が欲しいなら、次のように書く必要があります。
1e-5
1e-05が出力される、彼が変更しなかったわけではないが、それは自動的に0.00001から1e-05に変換される
x = 0.00001を試すことができます
印刷 x
1つのことを出力する 1e-05
#encoding=utf8
import os
import pandas as pd
if os.path.exists('. /step2/result.csv'):
os.remove('. /step2/result.csv')
#********* Begin *********#
# Get the training data
train_data = pd.read_csv('. /step2/train_data.csv')
# Get training labels
train_label = pd.read_csv('. /step2/train_label.csv')
train_label = train_label['target']
# Get the test data
test_data = pd.read_csv('. /step2/test_data.csv')
from sklearn.neural_network import MLPClassifier
mlp = MLPClassifier(solver='lbfgs',max_iter =10,
alpha=1e-5,hidden_layer_sizes=(10,5))
mlp.fit(train_data, train_label)
results = mlp.predict(test_data)
df = pd.DataFrame(results,columns =['result'])
df.to_csv(". /step2/result.csv", encoding="utf-8-sig", mode="a", header=True, index=False)
# ********* End *********#
#encoding=utf8
import os
import pandas as pd
if os.path.exists('. /step2/result.csv'):
os.remove('. /step2/result.csv')
#********* Begin *********#
# Get the training data
train_data = pd.read_csv('. /step2/train_data.csv')
# Get the training label
train_label = pd.read_csv('. /step2/train_label.csv')
train_label = train_label['target']
# Get the test data
test_data = pd.read_csv('. /step2/test_data.csv')
from sklearn.neural_network import MLPClassifier
mlp = MLPClassifier(solver='lbfgs',max_iter =10,
alpha=0.00001,hidden_layer_sizes=(10,5))
mlp.fit(train_data, train_label)
results = mlp.predict(test_data)
df = pd.DataFrame(results,columns =['result'])
df.to_csv(". /step2/result.csv", encoding="utf-8-sig", mode="a", header=True, index=False)
# ********* End *********#
#encoding=utf8
import os
import pandas as pd
if os.path.exists('. /step2/result.csv'):
os.remove('. /step2/result.csv')
#********* Begin *********#
# Get the training data
train_data = pd.read_csv('. /step2/train_data.csv')
# Get the training label
train_label = pd.read_csv('. /step2/train_label.csv')
train_label = train_label['target']
# Get the test data
test_data = pd.read_csv('. /step2/test_data.csv')
from sklearn.neural_network import MLPClassifier
mlp = MLPClassifier(solver='lbfgs',max_iter =10,
alpha=0.00001,hidden_layer_sizes=(10,5))
mlp.fit(train_data, train_label)
results = mlp.predict(test_data)
df = pd.DataFrame(results,columns =['result'])
df.to_csv(". /step2/result.csv", encoding="utf-8-sig", mode="a", header=True, index=False)
# ********* End *********#
上と下の結果は同じです
関連
-
Python】import pandas, error pandas Missing required dependencies ['numpy'] Reason Analysis
-
pythonがggplotパッケージを呼び出すとエラーが発生する AttributeError: 'DataFrame' オブジェクトに 'sort' 属性がない
-
'dict' オブジェクトには 'has_key' という属性がありません。
-
Pythonがエラーを報告する AttributeError:'numpy.ndarray' オブジェクトに 'index' という属性がない
-
AttributeError: モジュール 'tensorflow'に属性 'placeholder' がない問題
-
Pythonでナンバープレート自動認識システムを作ろう!楽しくて実用的です。
-
知っておきたいPythonの一行コード50選
-
Python3 はエンコーディングの問題を解決します: UnicodeEncodeError: 'gbk' codec can't encode character '\xa9' in position
-
Python - pickleファイルの異なるPython環境への変換
-
float32とfloat64の本質的な違い(ディープラーニングへの型影響とpythonの活用)。
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
from scipy.interpolate import spline errorImportError: cannot import name 'spline'.
-
AttributeError: モジュール 'time' には属性 'clock' がありません。
-
pythonフレームワーク Scrapyエラー TypeError: 'float' object is not iterable Solve
-
Python OSError: [Errno 22] 無効な引数: solution
-
Logistics Regressionにおけるcoef_とintercept_の具体的な意味についてsklearnで解説します。
-
dict_keys' オブジェクトはインデックス作成ソリューションに対応していません。
-
Pythonです。相対インポート 相対パス ValueError: パッケージ以外での相対インポートの試み
-
plt.acorr() 関数の使用例 - ValueError: object too deep for desired array (オブジェクトが深すぎて、必要な配列が得られない)
-
Mac環境でのbrewコマンドが見つからないエラーの解決方法
-
pygalマッピング "AttributeError: 'NoneType' オブジェクトには 'decode' という属性がありません"