title: Activity Recognition
|
type: community
|
group: Time Series Analysis
|
image: /static/templates/activity-recognition.png
|
details: |
|
<h1>Track and classify activity from sensors and IMU devices</h1>
|
<dl>
|
<dt>Industry Applications</dt>
|
<dd>fitness tracking, health monitoring, elderly care, sports performance, rehabilitation, smartphone applications, wearable devices, smart home systems, assisted living, behavior analysis, clinical research, physical therapy, athlete training, IoT sensor monitoring</dd>
|
<dt>Associated Models</dt>
|
<dd>LSTM, CNN-LSTM, Random Forest, SVM, Hidden Markov Models, attention mechanisms</dd>
|
<dt>Domain Terminology</dt>
|
<dd>CSV, Excel, XLS, Sheet, human activity recognition, HAR, IMU sensors, accelerometer, gyroscope, motion sensing</dd>
|
</dl>
|
config: |
|
<View>
|
<!-- Control tag for region labels -->
|
<TimeSeriesLabels name="label" toName="ts">
|
<Label value="Run" background="red"/>
|
<Label value="Walk" background="green"/>
|
<Label value="Fly" background="blue"/>
|
<Label value="Swim" background="#f6a"/>
|
<Label value="Ride" background="#351"/>
|
</TimeSeriesLabels>
|
|
<!-- Object tag for time series data source -->
|
<TimeSeries name="ts" valueType="url" value="$timeseriesUrl"
|
sep=","
|
timeColumn="time"
|
timeFormat="%Y-%m-%d %H:%M:%S.%f"
|
timeDisplayFormat="%Y-%m-%d"
|
overviewChannels="velocity">
|
|
<Channel column="velocity"
|
units="miles/h"
|
displayFormat=",.1f"
|
strokeColor="#1f77b4"
|
legend="Velocity"/>
|
|
<Channel column="acceleration"
|
units="miles/h^2"
|
displayFormat=",.1f"
|
strokeColor="#ff7f0e"
|
legend="Acceleration"/>
|
</TimeSeries>
|
</View>
|