We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81afab0 commit 3870650Copy full SHA for 3870650
3 files changed
examples/har_trees/README.md
@@ -153,7 +153,7 @@ You need to have Python (CPython) installed on the PC.
153
154
Install requirements
155
```
156
-pip install -r requirements.txt
+pip install .
157
158
159
Download training data (4 GB space)
examples/har_trees/pyproject.toml
@@ -0,0 +1,21 @@
1
+[project]
2
+name = "emlearn-har-trees"
3
+version = "0.0.1"
4
+dependencies = [
5
+ "pandas",
6
+ "pyarrow",
7
+ "emlearn>=0.22.0",
8
+ "leaf-clustering@git+https://github.com/jonnor/leaf-clustering",
9
+ "scikit-learn",
10
+ "setuptools",
11
+ "structlog",
12
+ "matplotlib",
13
+ "mpremote",
14
+ "pyyaml",
15
+]
16
+
17
+[tool.setuptools]
18
+py-modules = ["har_train"]
19
20
+[project.optional-dependencies]
21
+test = ["pytest"]
examples/har_trees/requirements.txt
0 commit comments