Bin
2025-12-17 1442f92732d7c5311a627a7ba3aaa0bb8ffc539f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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>