Skip to content

Latest commit

 

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Baseline Models (Train/Test Script Samples)

[1] Deep Conv LSTM

Python Script

# Train
python run_dcl.py mode=train debug=false

# Test (Test Set)
python run_dcl.py mode=test debug=false

# Test (Submission Set)
python run_dcl.py mode=test-on-submission debug=false

Tutorial: Modeling of Time-series

This notebook was created as a tutorial for participants of the OpenPack Challenge 2022, a work activity recognition competition to be held at the Percom 2023 Workshop BiRD. This tutorial will (1) provide an overview of OpenPack dataset and its tasks, and (2) run a sample program of an activity recognition model. Let's learn how to capture the characteristics of OpenPack dataset data and learn the concept of modeling to recognize the work activities of packaging.

このノートブックは, Percom 2023 Workshop BiRD で開催される行動認識コンペティション 「OpenPack Challenge 2022」の参加者用チュートリアルとして作成しました. このチュートリアルでは,(1) OpenPack の概要とタスクの説明,(2) 行動認識モデルのサンプルプログラムの実行を行います. OpenPack データセットのデータの性質を捉え, 梱包作業という作業行動を認識するためのモデリングの考え方を学んで行きましょう.

Reference

[2] U-Net

Notebooks

Open In Colab

Open In Colab (日本語版)

This is a tutorial of OpenPack Challenge 2022. In this notebook, we will build the U-Net, one of the basic architecture for segmentation, with the acceleration data from the left wrist (atr01). This notebook also shows how to make submission file (submission.json) for OpenPack Challenge 2022. In fact, the performance of this U-Net is poor. Please enjoy finding a better architecture and parameters.

Script

# Train
python run_unet.py mode=train debug=false

# Test (Test Set)
python run_unet.py mode=test debug=false

# Test (Submission Set)
python run_unet.py mode=test-on-submission debug=false

Reference

[3] ST-GCN

Script

# Train
python run_stgcn.py mode=train debug=false

# Test (Test Set)
python run_stgcn.py mode=test debug=false

# Test (Submission Set)
python run_stgcn.py mode=test-on-submission debug=false

Reference