Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed Random Forest Example #700

Merged
merged 4 commits into from
Dec 11, 2023
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
5 changes: 0 additions & 5 deletions docs/example/README.md

This file was deleted.

8 changes: 2 additions & 6 deletions docs/example/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
[tool.poetry]
name = "fast-track-test"
name = "fasttrackml-test"
version = "0.1.0"
description = "A Random Forest Classifier for EMG Data - Fast Track Test"
description = "Python Example for FastTrackML"
authors = ["Sharpz7 <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.9"
pandas = "^1.5.3"
scikit-learn = "^1.2.1"
mlflow-skinny = "^2.6.0"
matplotlib = "^3.7.2"

[tool.poetry.dev-dependencies]

[build-system]
Expand Down
101 changes: 0 additions & 101 deletions docs/example/random_forest.py

This file was deleted.

17 changes: 0 additions & 17 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,3 @@ After running this script, you should see the following output from http://local
![FastTrackML UI](images/runs_ui.png)

From here you can check out the metrics and run information to see more details about the run.

## Testing a Random Forest Model

**Note that since artifacts are not yet supported, most of the autolog features will not work.**

### Get the required data

From Kaggle, download https://www.kaggle.com/datasets/kyr7plus/emg-4?resource=download

Extract the zip file and move the files to `docs/example/data`.

### Run the script

```bash
poetry run python3 random_forest.py
```