Yagami360 / MachineLearning_Exercises_Python_scikit-learn

Python&機械学習ライブラリ scikit-learn の使い方の練習コード集。機械学習の理論解説付き
http://yagami12.hatenablog.com/entry/2017/09/17/111400
15 stars 5 forks source link

各フォルダの README.md ファイルの共通のテンプレート #3

Open Yagami360 opened 7 years ago

Yagami360 commented 7 years ago

各フォルダに 共通のテンプレートの README.md を作成し、コードの実行結果&背景理論を記載するように修正する。 テンプレートは以下の通り。

README.md ファイルのテンプレート1

主に、機械学習の練習用プログラム用の README.md ファイルのテンプレート

項目 [Contents]

  1. 使用するライブラリ
  2. 使用するデータセット
  3. コードの実行結果
    1. 実行結果1
    2. 実行結果2
  4. 背景理論
    1. 背景理論1
    2. 背景理論2

使用するライブラリ

scikit-learn ライブラリ

データセット Dataset loading utilities : sklearn.datasets
http://scikit-learn.org/stable/datasets/index.html

モデル選択 : sklearn.model_selection

データの分割 : sklearn.model_selection.train_test_split()
http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.train_test_split.html

前処理 : sklearn.preprocessing

正規化処理 : sklearn.preprocessing.StandardScaler
http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.StandardScaler.html

その他ライブラリ

使用するデータセット

Iris データセット : datasets.load_iris()

コードの実行結果

実行結果1 : main1.py


実行結果2 : main2.py



背景理論

背景理論1

背景理論2

Yagami360 commented 7 years ago

<17/09/02> ./Perceptron ./AdaLineGD ./AdaLineSGD ./Perceptron_scikt-learn の項目の README.md ファイルの作成完了。

Yagami360 commented 7 years ago

<17/09/03> ./LogisticRegression_scikit-learn ./SVM_scikit-learn ./kNN_scikit-learn ./DecisionTree_scikit-learn の項目の README.md ファイルの作成完了。

Yagami360 commented 7 years ago

<17/09/06> README.md ファイルテンプレートの目次のリンクを ID でページ内リンク <a id=#ID></a> するように修正。