Skip to content
This repository has been archived by the owner on Oct 10, 2020. It is now read-only.

Commit

Permalink
add interpret ml setup
Browse files Browse the repository at this point in the history
  • Loading branch information
konabuta committed Sep 24, 2019
1 parent e656af5 commit fc86c5f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


# Agenda
### [事前準備](./Setup.md)
### [Setup](./Setup.md)
ワークショップの開発環境の準備

### [Introduction](./Introduction.md)
Expand Down
38 changes: 37 additions & 1 deletion Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
2. [Compute Target](#2-compute-target)
3. [Python SDK 環境](#3-python-sdk-環境)
4. [コードのインポート](#4-コードのインポート)
- [Other](#Other)

## Power BI Deskop
Power BI Desktop は無料で利用できる可視化ツールです。
Expand Down Expand Up @@ -95,7 +96,7 @@ Status が **Running** になっていることを確認し、**Jupyter** をク

1. [Miniconda](https://docs.conda.io/en/latest/miniconda.html) もしくは [Anaconda](https://www.anaconda.com/distribution/) をインストールします。

2. Anaconda Prompt を開いて、Pythonの myenv という名前の環境を作成します
2. Anaconda Prompt を開いて、myenv という名前の仮想環境を作成します

```bash
# New Conda
Expand Down Expand Up @@ -154,3 +155,38 @@ A. ローカルPCの作業フォルダにて、本リポジトリをクローン
git clone https://github.com/konabuta/DataExplore-Workshop
```
B. 本リポジトリの [Zip ファイル](https://github.com/konabuta/DataExplore-Workshop/archive/master.zip) をダウンロードし、ローカルPCの作業フォルダで解凍する 


## Other
### Microsoft Interpret ML
Microsoft Interpret ML のライブラリを利用する際には、Azure Machine Learning service とは競合を防ぐために別の conda 環境を利用することを推奨します。

1. Anaconda Prompt を開いて、interpretという名前の仮想環境を作成します。

```bash
# New Conda
conda create -n interpret Python=3.6
# Activate
conda activate interpret
```

3. Microsoft Interpret ML をインストールします。
```bash
# Package Install
pip install interpret
```

4. Jupyter Notebook をインストールし、カーネルを有効化します。
```bash
# Install Jupyer Notebook
conda install notebook ipykernel
```

```bash
# Jupyter Kernel Attach
python -m ipykernel install --user --name interpret --display-name interpret
```
```bash
# Start Jupyter Notebook
jupyter notebook
```

0 comments on commit fc86c5f

Please sign in to comment.