-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add prefetch model description
- Loading branch information
1 parent
afe4228
commit 06e2fe9
Showing
4 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
## SSBDPLUS - Models | ||
|
||
### M1 - Preprocessing: Prefetch | ||
![Prefetch image](./images/SSBDPreFetchArch.png) | ||
|
||
Code and documentation for this model can be found [here](../src/ssbdplus/prefetch.py) | ||
|
||
### M1 - Action presence detection | ||
![M1 image](./images/SSBDM1.png) | ||
|
||
Code and documentation for this model can be found [here](../src/m1.py) | ||
Code and documentation for this model can be found [here](../src/ssbdplus/m1.py) | ||
|
||
### M2 - Action type classification | ||
![M2 image](./images/SSBDM2.png) | ||
|
||
Code and documentation for this model can be found [here](../src/m2.py) | ||
Code and documentation for this model can be found [here](../src/ssbdplus/m2.py) | ||
|
||
## Running the pipeline | ||
|
||
To use the model used in the paper for your task, you can initialise an object defined in the [pipeline file](../src/pipeline.py) | ||
To use the model used in the paper for your task, you can initialise an object defined in the [pipeline file](../src/ssbdplus/pipeline.py) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = ssbdplus | ||
version = 2.1.0 | ||
version = 2.2.0 | ||
author = SARL, IIITB | ||
author_email = [email protected] | ||
description = Models pertaining to the paper, Introducing SSBD+ Dataset with a Convolutional Pipeline for detecting Self-Stimulatory Behaviours in Children using raw videos | ||
|