Skip to content

Commit 0e0342d

Browse files
Merge pull request #10 from AdamMiltonBarker/main
1.0.0
2 parents 3a24d3d + 26cad67 commit 0e0342d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+11993
-392
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Repository structures **must be followed exactly** for all contributions. Pull
140140
- ubuntu.md (File)
141141
- index.md (File)
142142
- logs (Directory)
143-
- Autogenerated log files
143+
- Auto generated log files
144144
- modules (Directory)
145145
- AbstractClassifier.py (File)
146146
- AbstractData.py (File)

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33

44
![Acute Lymphoblastic Leukemia Arduino Nano 33 BLE Sense Classifier](assets/images/project-banner.jpg)
55

6-
[![CURRENT RELEASE](https://img.shields.io/badge/CURRENT%20RELEASE-0.1.0-blue.svg)](https://github.com/AMLResearchProject/ALL-Arduino-Nano-33-BLE-Sense-Classifier/tree/0.1.0) [![UPCOMING RELEASE](https://img.shields.io/badge/CURRENT%20DEV%20BRANCH-1.0.0-blue.svg)](https://github.com/AMLResearchProject/ALL-Arduino-Nano-33-BLE-Sense-Classifier/tree/1.0.0) [![Contributions Welcome!](https://img.shields.io/badge/Contributions-Welcome-lightgrey.svg)](CONTRIBUTING.md) [![Issues](https://img.shields.io/badge/Issues-Welcome-lightgrey.svg)](issues)
6+
[![CURRENT RELEASE](https://img.shields.io/badge/CURRENT%20RELEASE-1.0.0-blue.svg)](https://github.com/AMLResearchProject/ALL-Arduino-Nano-33-BLE-Sense-Classifier/tree/1.0.0) [![UPCOMING RELEASE](https://img.shields.io/badge/CURRENT%20DEV%20BRANCH-2.0.0-blue.svg)](https://github.com/AMLResearchProject/ALL-Arduino-Nano-33-BLE-Sense-Classifier/tree/2.0.0) [![Contributions Welcome!](https://img.shields.io/badge/Contributions-Welcome-lightgrey.svg)](CONTRIBUTING.md) [![Issues](https://img.shields.io/badge/Issues-Welcome-lightgrey.svg)](issues)
77

88
[![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/) [![Documentation Status](https://readthedocs.org/projects/all-arduino-nano-33-ble-sense-classifier/badge/?version=latest)](https://all-arduino-nano-33-ble-sense-classifier.readthedocs.io/en/latest/?badge=latest) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/5065/badge)](https://bestpractices.coreinfrastructure.org/projects/5065)
99

10+
![Unit Tests](https://img.shields.io/badge/Unit%20Tests-TODO-red)
11+
![Functional Tests](https://img.shields.io/badge/Functional%20Tests-TODO-red)
12+
1013
[![LICENSE](https://img.shields.io/badge/LICENSE-MIT-blue.svg)](LICENSE)
1114

1215
 
@@ -64,7 +67,7 @@ You need to be granted access to use the Acute Lymphoblastic Leukemia Image Data
6467

6568
# Getting Started
6669

67-
To get started follow the [getting started guide](docs/getting-started.md) to find out how to fork the repository.
70+
To get started follow the [official documentation](docs/index.md).
6871

6972
 
7073

arduino/all_nano_33_ble_sense/all_model.cpp

Lines changed: 4380 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
/* ALL Arduino Nano 33 BLE Sense Classifier
3+
4+
An experiment to explore how low powered microcontrollers, specifically the
5+
Arduino Nano 33 BLE Sense, can be used to detect Acute Lymphoblastic Leukemia.
6+
7+
MIT License
8+
9+
Copyright (c) 2021 Asociación de Investigacion en Inteligencia Artificial
10+
Para la Leucemia Peter Moss
11+
12+
Permission is hereby granted, free of charge, to any person obtaining a copy
13+
of this software and associated documentation files(the "Software"), to deal
14+
in the Software without restriction, including without limitation the rights
15+
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
16+
copies of the Software, and to permit persons to whom the Software is
17+
furnished to do so, subject to the following conditions:
18+
19+
The above copyright notice and this permission notice shall be included in all
20+
copies or substantial portions of the Software.
21+
22+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28+
SOFTWARE.
29+
30+
Contributors:
31+
- Adam Milton-Barker
32+
==============================================================================*/
33+
34+
#ifndef TENSORFLOW_LITE_MICRO_ACUTE_LYMPHOBLASTIC_LEUKEMIA_MODEL_DATA_H_
35+
#define TENSORFLOW_LITE_MICRO_ACUTE_LYMPHOBLASTIC_LEUKEMIA_MODEL_DATA_H_
36+
37+
extern const unsigned char all_model[];
38+
extern const int all_model_len;
39+
40+
#endif // TENSORFLOW_LITE_MICRO_ACUTE_LYMPHOBLASTIC_LEUKEMIA_MODEL_DATA_H_

0 commit comments

Comments
 (0)