Porównaj commity

...

2 Commity

Autor SHA1 Wiadomość Data
Alex Wulff 64501dac6c Added lots of comments 2022-07-19 15:05:16 -04:00
Alex Wulff a70c90628c Continuous inferencing is maybe working? 2022-07-19 14:34:17 -04:00
2 zmienionych plików z 73 dodań i 32 usunięć

Wyświetl plik

@ -3,7 +3,7 @@
#include "Adafruit_NeoPixel.hpp"
#define PIN 7
#define NUM_STATES 4
#define NUM_STATES 3
#define NUM_LIGHTS 60
bool update_state(uint32_t *state, bool strip_on) {

Wyświetl plik

@ -12,17 +12,37 @@
// ############ ADC and Model Stuff ############
#define NSAMP 4000
// NSAMP is the number of samples collected between each run of the
// machine learning code. An NSAMP of 1000 at a 4 kHz sample rate
// means the model will run once every quarter second. As each new
// batch of NSAMP samples are collected, the last INSIZE-NSAMP samples
// collected from the previous run are wrapped around to the beginning
// of the sample buffer, and the next NSAMP samples are added on
#define NSAMP 1000
// INSIZE is the input size of the model. In most cases, this should
// be one second's worth of data, so it should be equal to the sample
// rate of the ADC.
#define INSIZE 4000
// set this to determine sample rate
// 0 = 500,000 Hz
// 960 = 50,000 Hz
// 9600 = 5,000 Hz
#define CLOCK_DIV 12000
// ADC channel
#define CAPTURE_CHANNEL 0
// Pin for light strip
#define LED_PIN 25
float features[NSAMP];
// cooldown time for activating start
#define COOLDOWN_US 1000000
float features[INSIZE];
uint16_t capture_buf[NSAMP];
uint16_t intermediate_buf[INSIZE];
uint64_t last_on_time = 0;
// ############ Functions ############
int raw_feature_get_data(size_t offset, size_t length, float *out_ptr) {
@ -35,19 +55,18 @@ int main()
stdio_usb_init();
stdio_init_all();
// function lives in lights.cpp
// Launch lighting core - function lives in lights.cpp
multicore_launch_core1(core1_entry);
gpio_init(LED_PIN);
gpio_set_dir(LED_PIN, GPIO_OUT);
// configure Edge Impulse things
ei_impulse_result_t result = {nullptr};
signal_t features_signal;
features_signal.total_length = NSAMP;
features_signal.total_length = INSIZE;
features_signal.get_data = &raw_feature_get_data;
if (NSAMP != EI_CLASSIFIER_DSP_INPUT_FRAME_SIZE) {
if (INSIZE != EI_CLASSIFIER_DSP_INPUT_FRAME_SIZE) {
while (1) {
printf("Input frame size incorrect!\n");
sleep_ms(2000);
@ -55,7 +74,6 @@ int main()
}
adc_gpio_init(26 + CAPTURE_CHANNEL);
adc_init();
adc_select_input(CAPTURE_CHANNEL);
adc_fifo_setup(
@ -81,7 +99,7 @@ int main()
// Pace transfers based on availability of ADC samples
channel_config_set_dreq(&cfg, DREQ_ADC);
while (true) {
adc_fifo_drain();
adc_run(false);
@ -95,6 +113,22 @@ int main()
gpio_put(LED_PIN, 1);
adc_run(true);
// copy everything to feature buffer. This math is so slow but
// it doesn't matter in comparison to the other ML ops?
uint16_t min = 32768;
uint16_t max = 0;
for (uint32_t i=0; i<INSIZE; i++) {
if (intermediate_buf[i] > max) max = intermediate_buf[i];
if (intermediate_buf[i] < min) min = intermediate_buf[i];
}
for (uint32_t i=0; i<INSIZE; i++) {
float val = ((float)intermediate_buf[i]-(float)min)/((float)max-(float)min)*2-1;
val = val*32766;
features[i] = val;
}
// invoke the impulse
EI_IMPULSE_ERROR res = run_classifier(&features_signal, &result,
@ -107,21 +141,24 @@ int main()
if (EI_CLASSIFIER_HAS_ANOMALY == 1) printf("Anomaly!\n");
const float thresh = 0.8;
const float thresh = 0.6;
uint32_t state = 0;
uint32_t model_result = 0;
for (size_t ix = 0; ix < EI_CLASSIFIER_LABEL_COUNT; ix++) {
if (ix == 2 && result.classification[ix].value > thresh) {
// activate only if it's above the threshold and cooldown is over
if (ix == 2 && result.classification[ix].value > thresh &&
time_us_64()-last_on_time>COOLDOWN_US) {
printf("START\n");
// Set the state to 1 for the keyword you use to turn the lights
// on and change the lighting state
state = 1;
last_on_time = time_us_64();
// Set the result to 1 for the keyword you use to turn the
// lights on and or change the lighting state
model_result = 1;
}
if (ix == 3 && result.classification[ix].value > thresh) {
printf("STOP\n");
// Set the state to 2 for the keyword that turns off the lights
state = 2;
// Set the result to 2 for the keyword that turns off the lights
model_result = 2;
}
printf("%0.2f, ",result.classification[ix].value);
@ -131,28 +168,32 @@ int main()
// If the lighting core wants a state update, and there's a state
// update to give, then we'll send it over.
if (multicore_fifo_rvalid() && state != 0) {
if (multicore_fifo_rvalid() && model_result != 0) {
multicore_fifo_pop_blocking();
multicore_fifo_push_blocking(state);
multicore_fifo_push_blocking(model_result);
}
// Signal processing done. Now wait for audio sampling to finish...
// You should see the LED flashing during the sampling period. If
// it is not flashing, the inferencing is taking too long and there
// is data loss between inferencing windows. See the tutorial for
// this project for more information.
gpio_put(LED_PIN, 0);
dma_channel_wait_for_finish_blocking(dma_chan);
// copy everything to feature buffer. This math is so slow but
// it doesn't matter in comparison to the other ML ops?
uint16_t min = 32768;
uint16_t max = 0;
for (uint32_t i=0; i<NSAMP; i++) {
if (capture_buf[i] > max) max = capture_buf[i];
if (capture_buf[i] < min) min = capture_buf[i];
// We want to be really quick here, otherwise we'll lose lots of
// audio between when we stopped sampling and when we start the next
// sampling window. Just doing some very fast moves (no conversions)
// wrap newest samples to beginning
for (uint32_t i=0; i<INSIZE-NSAMP; i++) {
intermediate_buf[i] = intermediate_buf[i+NSAMP];
}
// fill buffer with new data
for (uint32_t i=0; i<NSAMP; i++) {
float val = ((float)capture_buf[i]-(float)min)/((float)max-(float)min)*2-1;
val = val*32766;
features[i] = val;
intermediate_buf[i+INSIZE-NSAMP] = capture_buf[i];
}
}
}