-
-
Notifications
You must be signed in to change notification settings - Fork 45
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
Showing
12 changed files
with
102 additions
and
17 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
# docker run -it ambianic/ambianic:v0.1.1 | ||
# docker run -it ambianic/ambianic bash | ||
# python3 ambianic.py | ||
# --rm : remove docker container on exit | ||
docker run -it --rm \ | ||
--name ambianic-dev \ | ||
--mount type=bind,source="$(pwd)",target=/workspace \ | ||
--publish 1234:1234 \ | ||
--publish 8778:8778 \ | ||
--entrypoint 'bash' \ | ||
ambianic/ambianic:dev /workspace/tests/run-tests.sh |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Metadata-Version: 2.1 | ||
Name: ambianic | ||
Version: 0.0.11 | ||
Summary: AI framework for home and business automation | ||
Home-page: https://ambianic.ai | ||
Author: Ivelin Ivanov | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Description: ![Build Status](https://travis-ci.org/ambianic/ambianic.svg?branch=master) ![Docker Automated](https://img.shields.io/docker/cloud/automated/ambianic/ambianic.svg) ![Docker Build](https://img.shields.io/docker/cloud/build/ambianic/ambianic.svg) | ||
|
||
![Ambianic logo][logo] | ||
|
||
# Project mission | ||
Helpful AI for Home and Business Automation | ||
|
||
Local data, custom AI models, federated learning | ||
|
||
# Project Status | ||
At this time, Ambianic is in active early formation stages. Lots of design and implementation decisions are made daily with focus on advancing the project to an initial stable version as soon as possible. | ||
|
||
If you are willing to take the risk that comes with early stage code and are able to dive deep into Python, Javascript, Gstreamer, and Tensorflow code, then please keep reading. Otherwise click on the Watch button above (Releases Only option) to be notified when we release a stable end user version. | ||
|
||
# How to run in development mode | ||
If you are interested to try the development version, follow these steps: | ||
1. Clone this git repository. | ||
2. `./ambianic-start.sh` | ||
3. Study `config.yaml` and go from there. | ||
|
||
# Contributors | ||
If you are interested in becoming a contributor to the project, please read the [Contributing](CONTRIBUTING.md) page and follow the steps. Looking forward to hearing from you! | ||
|
||
[logo]: https://avatars2.githubusercontent.com/u/52052162?s=200&v=4 | ||
|
||
Platform: UNKNOWN | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: License :: OSI Approved :: Apache 2.0 | ||
Classifier: Operating System :: OS Independent | ||
Description-Content-Type: text/markdown |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
README.md | ||
setup.py | ||
ambianic/__init__.py | ||
ambianic/service.py | ||
ambianic.egg-info/PKG-INFO | ||
ambianic.egg-info/SOURCES.txt | ||
ambianic.egg-info/dependency_links.txt | ||
ambianic.egg-info/top_level.txt | ||
ambianic/pipeline/__init__.py | ||
ambianic/pipeline/gstreamer.py | ||
ambianic/pipeline/interpreter.py | ||
ambianic/pipeline/store.py | ||
ambianic/pipeline/ai/__init__.py | ||
ambianic/pipeline/ai/face_detect.py | ||
ambianic/pipeline/ai/inference.py | ||
ambianic/pipeline/ai/object_detect.py | ||
ambianic/webapp/__init__.py | ||
ambianic/webapp/flaskr.py | ||
ambianic/webapp/server/__init__.py | ||
ambianic/webapp/server/samples.py | ||
tests/__init__.py | ||
tests/startup_test.py |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ambianic | ||
tests |
This file was deleted.
Oops, something went wrong.
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
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
Empty file.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
# verbose mode, exit on error | ||
set -ex | ||
|
||
pip3 install -U pytest # unit test tool | ||
BASEDIR=$(dirname $0) | ||
echo "Script location: ${BASEDIR}" | ||
# install ambianic package in edit mode | ||
# cd $TESTS_DIR | ||
# pip3 install -e "${BASEDIR}/../" | ||
TESTS_DIR="${BASEDIR}/../tests" | ||
python3 -m pytest $TESTS_DIR |
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