Skip to content

Commit

Permalink
fix: Limit python to 3.11 due to tensorflow-metal being old.
Browse files Browse the repository at this point in the history
fix: Correct quantization conversion flag in configs.
  • Loading branch information
apage224 committed Oct 2, 2024
1 parent 373c8fe commit e547eb9
Show file tree
Hide file tree
Showing 18 changed files with 906 additions and 869 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "Python 3",
"image": "mcr.microsoft.com/devcontainers/python:1-3.12",
"image": "mcr.microsoft.com/devcontainers/python:1-3.11",

"features": {
"ghcr.io/devcontainers/features/git:1": {
"ppa": true,
"version": "latest"
"version": "system"
},
"ghcr.io/devcontainers-contrib/features/pipenv:2": {
"version": "latest"
Expand Down
2 changes: 1 addition & 1 deletion configs/arr-4-eff-lg.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/arr-4-eff-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/beat-2-eff-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/beat-3-eff-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/den-ppg-tcn-lg.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/den-ppg-tcn-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/den-tcn-lg.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/den-tcn-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/fnd-eff-lg.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/fnd-eff-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"qat": false,
"mode": "FP32",
"io_type": "float32",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/seg-2-tcn-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"qat": false,
"mode": "INT8",
"io_type": "int8",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/seg-4-tcn-lg.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"qat": false,
"mode": "INT8",
"io_type": "int8",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/seg-4-tcn-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"qat": false,
"mode": "INT8",
"io_type": "int8",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
2 changes: 1 addition & 1 deletion configs/seg-ppg-2-tcn-sm.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"qat": false,
"mode": "INT8",
"io_type": "int8",
"concrete": true,
"conversion": "CONCRETE",
"debug": false
},

Expand Down
Binary file added docs/assets/guides/tileio-dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,739 changes: 888 additions & 851 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "heartkit"
version = "1.5.0"
version = "1.5.1"
description = "AI driven heart monitoring kit for ultra low-power wearables."
license = "BSD-3-Clause"
authors = ["Ambiq AI <support.aitg@ambiq.com>"]
Expand Down Expand Up @@ -37,7 +37,7 @@ filterwarnings = [
]

[tool.poetry.dependencies]
python = ">=3.11,<3.13"
python = ">=3.11,<3.12"
tensorflow = {version = "^2.17.0"}
tensorflow-metal = {version = "^1.1.0", markers = "sys_platform == 'darwin'"}
numpy = "^1.26.4"
Expand Down

0 comments on commit e547eb9

Please sign in to comment.