This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
915f055
commit 0bb6d6a
Showing
6 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{% if platform == 'attiny' %} | ||
{% if isAttiny %} | ||
float w[{{ FEATURES_DIM }}]; | ||
{% endif %} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# user agrimag | ||
|
||
#git push origin master -f | ||
rm -rf dist/* | ||
python setup.py sdist | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
setup( | ||
name = 'micromlgen', | ||
packages = ['micromlgen'], | ||
version = '0.6', | ||
version = '0.7', | ||
license='MIT', | ||
description = 'Generate C code for microcontrollers from Python\'s sklearn classifiers', | ||
author = 'Simone Salerno', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/agrimagsrl/micromlgen', | ||
download_url = 'https://github.com/agrimagsrl/micromlgen/archive/v_06.tar.gz', | ||
download_url = 'https://github.com/agrimagsrl/micromlgen/archive/v_07.tar.gz', | ||
keywords = ['ML', 'microcontrollers', 'sklearn', 'machine learning'], | ||
install_requires=[ | ||
'jinja2', | ||
|