Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions Machine Learning/Feature Importance/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Feature importance for data frame analytics

In the notebook we assume that you have [Elasticsearch 7.6 or later](https://www.elastic.co/downloads/elasticsearch) and you run it locally on the port 9200. If you don't, learn how to [get Elasticsearch up and running](https://www.elastic.co/guide/en/elasticsearch/reference/7.6/getting-started-install.html).

Set up a local instance of Jupyter using the following instructions

1. Set up a virtual environment called `env`

```
python3 -m venv env
```

2. Activate it

```
source env/bin/activate
```

3. Install the required dependencies for your chosen Jupyter notebook

```
pip install -r requirements.txt
```

4. Launch Jupyter

```
jupyter notebook
```

Loading