FIRST E.A.D: Convolutional Neural Networks (CNN)

Spatial Invariance

We essentially scan the waves with a motion detector and assign a score to each run of waves, indicating the likelihood the subject is lifting, grasping or holding.

CNNs systematize this idea of spatial invariance, exploiting it to learn useful representations with fewer parameters.

What does it mean by “Convolutional”? and why should we care?

While previously, we might have required billions of parameters to represent just a single layer in an data-processing network, we now typically need just a few hundred, without altering the dimensionality of either the inputs or the hidden representations. The price paid for this drastic reduction in parameters is that our features are now translation invariant and that our layer can only incorporate local information, when determining the value of each hidden activation. All learning depends on imposing inductive bias. When that bias agrees with reality, we get sample-efficient models that generalize well to unseen data. But of course, if those biases do not agree with reality, e.g., if data turned out not to be translation invariant, our models might struggle even to fit our training data.

Continue reading “FIRST E.A.D: Convolutional Neural Networks (CNN)”

FIRST E.A.D (EEG Aided Detection): Intro

Abstract

Working or Travelling in the backcountry carries inherent risk. In British Columbia (BC) there are 1900 incidents per year, out of which 2100 people have been rescued by 3000 volunteers in 79 SAR (Search and Rescue Groups) [Dwight Yochim]. The only mode of communication is a Satellite Emergency Messaging Device (SEND).these devices combine the functions of a GPS with a commercial satellite phone in text only (SMS) mode. They are not able to make voice calls, but they can send text messages through various gateways to email, mobile phones and to social media.

Triggering a SEND device means hitting the “SOS” or “911” button intended to issue an emergency alert call for help. When a SEND device is triggered, the following sequence of events occur:

  • User’s position and request for help are sent through a commercial satellite system to a ground monitoring agency.
  • Agency passes along the alert to the appropriate local responding agency. In British Columbia this is the Joint Rescue Coordination Centre (JRCC) in Victoria, BC.
  • The JRCC determines what kind of response is required. For ground-based alerts they send the message to EMBC’s Emergency Coordination Centre in Saanichton, BC.
  • The ECC activates the nearest BC ground search and rescue team.
  • The team mobilises with resources depending on the location and severity of the incident.

In the 2021-22 winter season 35 people died in the US and the average annual deaths related to winter activity is 22.8 [BC Coroners Service] in BC. This number is likely to climb as it is getting harder to anticipate hazards given climate change and rising uncertainties related to snowpack. Assuming we have the data, we believe it would be beneficial if we can predict real time health conditions in case of an emergency based on a pattern extracted from the past. Having a prediction will allow SAR groups to mobilise resources accordingly.

Continue reading “FIRST E.A.D (EEG Aided Detection): Intro”

Simple Moving Average Trading Strategy

A simple moving average (SMA) calculates the average of a selected range of prices, usually closing prices, by the number of periods in that range.
The SMA is a technical indicator that can aid in determining if an asset price will continue or reverse a bull or bear trend.
Strategy

The agent buys the AMZN stock when the SMA for 5 days, is greater than the SMA for 9 days. The agent sells vice versa.

 

Continue reading “Simple Moving Average Trading Strategy”

Spam prevention powered by Akismet