├── .gitignore ├── LICENSE ├── README.md ├── examples ├── accelerometerMachineryFailureRecognitionNrf52840 │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── baggingOnEsp32 │ ├── .gitignore │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── bechmarkBreastCancerOnEsp32 │ ├── platformio.ini │ └── src │ │ ├── Breast_cancer.h │ │ └── main.cpp ├── bechmarkHeartDiseaseOnEsp32 │ ├── platformio.ini │ └── src │ │ ├── Heart_disease.h │ │ └── main.cpp ├── bechmarkIrisWithAIEFSOnEsp32 │ ├── platformio.ini │ └── src │ │ ├── Iris_flowers.h │ │ ├── TDC │ │ └── main.cpp ├── bechmarkingOnArduinoUno │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── bechmarkingOnEsp32 │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── bencharkIrisWithAIEFSOnNrf52 │ ├── .gitignore │ ├── platformio.ini │ └── src │ │ ├── AIEFS │ │ ├── Iris_flowers.h │ │ └── main.cpp ├── benchmarkBreastCancerWithAIEFS │ ├── platformio.ini │ └── src │ │ ├── AIEFS │ │ ├── Breast_cancer.h │ │ └── main.cpp ├── benchmarkingOnNrf52840 │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── binaryPhysicalActivityClassificationOnNrf52840 │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── cncLearnerOnEsp32C6 │ ├── .gitignore │ ├── measuredData │ │ ├── class_1 │ │ │ ├── 1_num_0_class_1.csv │ │ │ ├── 1_num_1_class_1.csv │ │ │ ├── num_0_class_1.csv │ │ │ ├── num_1_class_1.csv │ │ │ ├── num_2_class_1.csv │ │ │ ├── num_3_class_1.csv │ │ │ ├── try1_num_0_class_1.csv │ │ │ └── try1_num_1_class_1.csv │ │ ├── class_2 │ │ │ ├── 1_1num_0_class_2.csv │ │ │ ├── 1_num_1_class_2.csv │ │ │ ├── num_0_class_2.csv │ │ │ ├── num_1_class_2.csv │ │ │ ├── num_2_class_2.csv │ │ │ ├── num_3_class_2.csv │ │ │ ├── try1_num_1_class_2.csv │ │ │ └── try1_num_2_class_2.csv │ │ └── tree.csv │ ├── platformio.ini │ └── src │ │ ├── computationFunctions.h │ │ ├── globals.h │ │ ├── main.cpp │ │ └── sdHelpFunctions.h ├── irisTestTrainFromSDOnEsp32 │ ├── iris_test_ok.csv │ ├── iris_train_ok.csv │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── saveLoadMBEDonNrf52840 │ ├── mbed_app.json │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── saveLoadOnEsp32 │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── saveLoadOnNrf52 │ ├── platformio.ini │ └── src │ │ └── main.cpp ├── sitStandWalkClassificationOnNrf52840 │ ├── platformio.ini │ └── src │ │ └── main.cpp └── testForMemoryLeaksOnEsp32 │ ├── platformio.ini │ └── src │ └── main.cpp ├── img ├── aLotOfSamples.png ├── benchmarking.png ├── libmanagerinstallation.png ├── pioinst.png └── someSamples.png ├── library.properties ├── robots.txt └── src ├── ProcessingFunctions.h ├── TinyDecisionTreeClassifier.cpp └── TinyDecisionTreeClassifier.h /.gitignore: -------------------------------------------------------------------------------- 1 | library.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/README.md -------------------------------------------------------------------------------- /examples/accelerometerMachineryFailureRecognitionNrf52840/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/accelerometerMachineryFailureRecognitionNrf52840/platformio.ini -------------------------------------------------------------------------------- /examples/accelerometerMachineryFailureRecognitionNrf52840/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/accelerometerMachineryFailureRecognitionNrf52840/src/main.cpp -------------------------------------------------------------------------------- /examples/baggingOnEsp32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/baggingOnEsp32/.gitignore -------------------------------------------------------------------------------- /examples/baggingOnEsp32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/baggingOnEsp32/platformio.ini -------------------------------------------------------------------------------- /examples/baggingOnEsp32/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/baggingOnEsp32/src/main.cpp -------------------------------------------------------------------------------- /examples/bechmarkBreastCancerOnEsp32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkBreastCancerOnEsp32/platformio.ini -------------------------------------------------------------------------------- /examples/bechmarkBreastCancerOnEsp32/src/Breast_cancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkBreastCancerOnEsp32/src/Breast_cancer.h -------------------------------------------------------------------------------- /examples/bechmarkBreastCancerOnEsp32/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkBreastCancerOnEsp32/src/main.cpp -------------------------------------------------------------------------------- /examples/bechmarkHeartDiseaseOnEsp32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkHeartDiseaseOnEsp32/platformio.ini -------------------------------------------------------------------------------- /examples/bechmarkHeartDiseaseOnEsp32/src/Heart_disease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkHeartDiseaseOnEsp32/src/Heart_disease.h -------------------------------------------------------------------------------- /examples/bechmarkHeartDiseaseOnEsp32/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkHeartDiseaseOnEsp32/src/main.cpp -------------------------------------------------------------------------------- /examples/bechmarkIrisWithAIEFSOnEsp32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkIrisWithAIEFSOnEsp32/platformio.ini -------------------------------------------------------------------------------- /examples/bechmarkIrisWithAIEFSOnEsp32/src/Iris_flowers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkIrisWithAIEFSOnEsp32/src/Iris_flowers.h -------------------------------------------------------------------------------- /examples/bechmarkIrisWithAIEFSOnEsp32/src/TDC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkIrisWithAIEFSOnEsp32/src/TDC -------------------------------------------------------------------------------- /examples/bechmarkIrisWithAIEFSOnEsp32/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkIrisWithAIEFSOnEsp32/src/main.cpp -------------------------------------------------------------------------------- /examples/bechmarkingOnArduinoUno/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkingOnArduinoUno/platformio.ini -------------------------------------------------------------------------------- /examples/bechmarkingOnArduinoUno/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkingOnArduinoUno/src/main.cpp -------------------------------------------------------------------------------- /examples/bechmarkingOnEsp32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkingOnEsp32/platformio.ini -------------------------------------------------------------------------------- /examples/bechmarkingOnEsp32/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bechmarkingOnEsp32/src/main.cpp -------------------------------------------------------------------------------- /examples/bencharkIrisWithAIEFSOnNrf52/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bencharkIrisWithAIEFSOnNrf52/.gitignore -------------------------------------------------------------------------------- /examples/bencharkIrisWithAIEFSOnNrf52/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bencharkIrisWithAIEFSOnNrf52/platformio.ini -------------------------------------------------------------------------------- /examples/bencharkIrisWithAIEFSOnNrf52/src/AIEFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bencharkIrisWithAIEFSOnNrf52/src/AIEFS -------------------------------------------------------------------------------- /examples/bencharkIrisWithAIEFSOnNrf52/src/Iris_flowers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bencharkIrisWithAIEFSOnNrf52/src/Iris_flowers.h -------------------------------------------------------------------------------- /examples/bencharkIrisWithAIEFSOnNrf52/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/bencharkIrisWithAIEFSOnNrf52/src/main.cpp -------------------------------------------------------------------------------- /examples/benchmarkBreastCancerWithAIEFS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/benchmarkBreastCancerWithAIEFS/platformio.ini -------------------------------------------------------------------------------- /examples/benchmarkBreastCancerWithAIEFS/src/AIEFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/benchmarkBreastCancerWithAIEFS/src/AIEFS -------------------------------------------------------------------------------- /examples/benchmarkBreastCancerWithAIEFS/src/Breast_cancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/benchmarkBreastCancerWithAIEFS/src/Breast_cancer.h -------------------------------------------------------------------------------- /examples/benchmarkBreastCancerWithAIEFS/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/benchmarkBreastCancerWithAIEFS/src/main.cpp -------------------------------------------------------------------------------- /examples/benchmarkingOnNrf52840/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/benchmarkingOnNrf52840/platformio.ini -------------------------------------------------------------------------------- /examples/benchmarkingOnNrf52840/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/benchmarkingOnNrf52840/src/main.cpp -------------------------------------------------------------------------------- /examples/binaryPhysicalActivityClassificationOnNrf52840/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/binaryPhysicalActivityClassificationOnNrf52840/platformio.ini -------------------------------------------------------------------------------- /examples/binaryPhysicalActivityClassificationOnNrf52840/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/binaryPhysicalActivityClassificationOnNrf52840/src/main.cpp -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/.gitignore -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_1/1_num_0_class_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_1/1_num_0_class_1.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_1/1_num_1_class_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_1/1_num_1_class_1.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_1/num_0_class_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_1/num_0_class_1.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_1/num_1_class_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_1/num_1_class_1.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_1/num_2_class_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_1/num_2_class_1.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_1/num_3_class_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_1/num_3_class_1.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_1/try1_num_0_class_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_1/try1_num_0_class_1.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_1/try1_num_1_class_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_1/try1_num_1_class_1.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_2/1_1num_0_class_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_2/1_1num_0_class_2.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_2/1_num_1_class_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_2/1_num_1_class_2.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_2/num_0_class_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_2/num_0_class_2.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_2/num_1_class_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_2/num_1_class_2.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_2/num_2_class_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_2/num_2_class_2.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_2/num_3_class_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_2/num_3_class_2.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_2/try1_num_1_class_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_2/try1_num_1_class_2.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/class_2/try1_num_2_class_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/class_2/try1_num_2_class_2.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/measuredData/tree.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/measuredData/tree.csv -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/platformio.ini -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/src/computationFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/src/computationFunctions.h -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/src/globals.h -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/src/main.cpp -------------------------------------------------------------------------------- /examples/cncLearnerOnEsp32C6/src/sdHelpFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/cncLearnerOnEsp32C6/src/sdHelpFunctions.h -------------------------------------------------------------------------------- /examples/irisTestTrainFromSDOnEsp32/iris_test_ok.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/irisTestTrainFromSDOnEsp32/iris_test_ok.csv -------------------------------------------------------------------------------- /examples/irisTestTrainFromSDOnEsp32/iris_train_ok.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/irisTestTrainFromSDOnEsp32/iris_train_ok.csv -------------------------------------------------------------------------------- /examples/irisTestTrainFromSDOnEsp32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/irisTestTrainFromSDOnEsp32/platformio.ini -------------------------------------------------------------------------------- /examples/irisTestTrainFromSDOnEsp32/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/irisTestTrainFromSDOnEsp32/src/main.cpp -------------------------------------------------------------------------------- /examples/saveLoadMBEDonNrf52840/mbed_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/saveLoadMBEDonNrf52840/mbed_app.json -------------------------------------------------------------------------------- /examples/saveLoadMBEDonNrf52840/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/saveLoadMBEDonNrf52840/platformio.ini -------------------------------------------------------------------------------- /examples/saveLoadMBEDonNrf52840/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/saveLoadMBEDonNrf52840/src/main.cpp -------------------------------------------------------------------------------- /examples/saveLoadOnEsp32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/saveLoadOnEsp32/platformio.ini -------------------------------------------------------------------------------- /examples/saveLoadOnEsp32/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/saveLoadOnEsp32/src/main.cpp -------------------------------------------------------------------------------- /examples/saveLoadOnNrf52/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/saveLoadOnNrf52/platformio.ini -------------------------------------------------------------------------------- /examples/saveLoadOnNrf52/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/saveLoadOnNrf52/src/main.cpp -------------------------------------------------------------------------------- /examples/sitStandWalkClassificationOnNrf52840/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/sitStandWalkClassificationOnNrf52840/platformio.ini -------------------------------------------------------------------------------- /examples/sitStandWalkClassificationOnNrf52840/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/sitStandWalkClassificationOnNrf52840/src/main.cpp -------------------------------------------------------------------------------- /examples/testForMemoryLeaksOnEsp32/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/testForMemoryLeaksOnEsp32/platformio.ini -------------------------------------------------------------------------------- /examples/testForMemoryLeaksOnEsp32/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/examples/testForMemoryLeaksOnEsp32/src/main.cpp -------------------------------------------------------------------------------- /img/aLotOfSamples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/img/aLotOfSamples.png -------------------------------------------------------------------------------- /img/benchmarking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/img/benchmarking.png -------------------------------------------------------------------------------- /img/libmanagerinstallation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/img/libmanagerinstallation.png -------------------------------------------------------------------------------- /img/pioinst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/img/pioinst.png -------------------------------------------------------------------------------- /img/someSamples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/img/someSamples.png -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/library.properties -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/robots.txt -------------------------------------------------------------------------------- /src/ProcessingFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/src/ProcessingFunctions.h -------------------------------------------------------------------------------- /src/TinyDecisionTreeClassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/src/TinyDecisionTreeClassifier.cpp -------------------------------------------------------------------------------- /src/TinyDecisionTreeClassifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allexoK/TinyDecisionTreeClassifier/HEAD/src/TinyDecisionTreeClassifier.h --------------------------------------------------------------------------------