Skip to content

Latest commit

 

History

History
189 lines (140 loc) · 14.4 KB

README.md

File metadata and controls

189 lines (140 loc) · 14.4 KB

Project Dug

"Squirrel!" - Dug the Dog

"Hey, I know a joke! A squirrel walks up to a tree and says, 'I forgot to store acorns for the winter and now I am dead.' Ha! It is funny because the squirrel gets dead!" - Also Dug the Dog

Russell: Can we keep him, please? Carl Fredricksen: No. Russell: But it's a TALKING DOG!

Project Dug is an exploratory effort to extract actionable signal from a custom electroencephalogram (EEG) cap being built for a dog named Alma. We validate whether our captured signal is actionable by classifying whether Alma sees a treat ("Squirrel!") just using her neural response!

YouTube Video drawingdrawing

Team

  • Jessica Austriaco, Bioengineering 2019, Team Lead
  • Bliss Chapman, Statistics + Computer Science 2019, Signal Processing Lead
  • Matthew De Venecia, Bioengineering 2019, Hardware Lead
  • Amanda Maher, Mechanical Engineering 2020, Electrode + Materials + Cap Lead
  • Suva Laxminarayanan, Bioengineering 2022
  • Christine Lannon, Bioengineering 2019
  • James Soole, Bioengineering 2022
  • Kyla Swain, Bioengineering 2019

Technical Details

Electrodes are 3D-printed out of PLA and painted with a Nickel conductive coating.

drawing +drawing = drawing

Wires are connected to the electrodes by feeding an exposed end through the holes in the electrode base plate and the connection is solidified with conductive paint.

drawing

Two 3D printed electrodes are sewn into a headband and an elastic chin strap is connected to each end to keep the electrodes tightly pressed into Alma's scalp. One electrode is used as a ground measurement and is attached to Alma's ear. The wires are braided and coated in Nickel conductive paint to reduce electrical interference from other circuits as well as muscle activity.

drawing

Wires are run down Alma's back into an analog circuit that is mounted on Alma's harness. The analog circuit performs low and high pass filtering on the signal, attenuating signals with a frequency less than 7 hz and greater than 31 hz. The analog circuit also amplifies the signal with a gain of about 89.2 when using a 560 ohm resistor. A potentiometer was also used to create a mechanism for further adjustable signal amplification.

drawing

(Everything else was created by Bliss, but I'm new to Github, so I apologize that I don't know how to properly format this one paragraph that I'm in charge of. - Matthew De Venecia). The above diagram is the original circuit this was based on from https://www.instructables.com/id/DIY-EEG-and-ECG-Circuit/. However, some changes were made according to the diagrams shown below. In particular, the active notch filter was replaced by a passive twin T notch filter, and additional filtering circuitry was added at the end. You can view the actual circuit diagrams here: Part 1: https://drive.google.com/open?id=1iB77aMJjEO7Y_EY8I94byTmmPX7W-kRe Part 2: https://drive.google.com/open?id=18WFvdI3_vo2zRo0OEYezHG0h1kxLOrOw

Analog Circuit v1 and v2:

drawing + drawing -> drawing

The Arduino (Mega 2560) reads in the data from an analog pin and immediately writes the data to the serial port. The serial port of the Arduino is connected to the serial port of a Raspberry Pi (RPI 3 Model B).

drawing

The Raspberry Pi reads data from the Arduino in through the serial port and performs machine learning classification on the fourier transform of a sliding window of data.

drawing

Fourier Transform visual illustrations:

drawing drawing drawing

We are applying support vector machines in the frequency domain of our data to attempt to classify whether Alma is seeing a treat or not. Support vector machines (SVMs) are a supervised classification method that attempts to find a hyperplane that best divides our dataset into two classes. In our problem, the two classes are: (1) Alma does not see a treat and (2) Alma sees a treat.

drawing drawing

The Raspberry Pi is powered by a battery pack. The instrumentation amplifier in the analog circuit is powered by two 9V batteries.

drawing drawing drawing

If the machine learning algorithm classifies Alma's neural response as "Treat," then the Raspberry Pi triggers a pre-recorded Alma voice to play out of the speaker.

drawing


Dug Team Internal Documentation

Example Problem: Grasp and Lift EEG Detection

We were not able to start training or analyzing models on real data from Alma until after electrodes had been built and iterated. In the meantime, the signal processing team found toy problems to explore to familiarize ourselves with analysis and classification techniques for EEG data. Code for these problems lives in the toy_problems directory.

  1. Download the data from the Kaggle competition page.
  2. Move the downloaded train and test folders to examples/grasp_and_lift/data/train and examples/grasp_and_lift/data/test respectively.
  3. Install any required packages (sorry, I haven't added a requirements.txt file yet).
  4. In your terminal, run:
cd examples/grasp_and_lift
python2 -W ignore model_exploration.py

Raspberry Pi

arp -na | grep -i b8:27:eb    # Scan for RPI on the network
ssh pi@xx.x.x.xx              # Password is 'raspberry'

Changing Python Versions in Conda:

conda activate py27

References

1st Meeting Notes (1/3/2019)

OBJECTIVE

We are trying to classify EEG signals in response to a visual stimulus. This is a hard problem and we need to be realistic about what resources we have!

CHALLENGES

  • Real-time: This means we can’t use techniques like kNN. Inference has to be fast even if training is slow!
  • Training set size: We won’t be able to get enough high quality samples from Alma to try and train a sophisticated neural network model. We are probably orders of magnitude away from the number of samples needed for these methods.

These are good challenges! Since we won’t have a lot of data, we have to be clever and learn more about our data and the brain!

FEATURE EXTRACTION

Transform very high dimensional spatiotemporal data to lower dimensional data while preserving information that’s important to us!

Possible approaches:

  • Use prior knowledge about the brain!
    • event-related potentials (ERPs): in target-detection tasks in humans, there is a robust and specific target-related response in parietal regions ~300-500ms post-stimulus known as the P300 wave. Maybe this also occurs in dogs?
  • Use prior knowledge about our measuring tools!
  • Automatic unsupervised processes like PCA

NOTE: Typically, we need to worry about overfitting and reducing our model's ability to generalize across subjects. However, in our case we only need our model to work for Alma which alleviates some concern.

TEAM STRUCTURE

IMPORTANT: Every member of the team will work on all of these areas! However, we have a lot of ground to cover and a lot to learn so we will need to work together and play off each other's strengths to make this all work! If you take on one of these areas, you will own it and push yourself to go as far as you can, constantly communicating results and ideas back to the rest of the group so we can feed off your work.

MATERIALS

  • All required software is free to write / use
  • Raspberry Pi to run the software (Bliss has a bucket of them we can use for free)