https://github.com/rafaelpadilla/spatial-temporal-action-detection
https://github.com/rafaelpadilla/spatial-temporal-action-detection
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rafaelpadilla/spatial-temporal-action-detection
- Owner: rafaelpadilla
- Created: 2021-08-20T17:26:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-07T10:44:05.000Z (over 1 year ago)
- Last Synced: 2025-02-09T16:43:00.587Z (4 months ago)
- Language: Python
- Size: 22.9 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spatial-temporal-action-detection
## Getting Started
### 1. Setup Environment
#### 1.1 Create Virtual Environment
Create Virtual (Windows) Environment:
```shell script
python -m venv env
.\env\Scripts\activate
```Create Virtual (Linux/Mac) Environment:
```shell script
python -m venv env
source env/bin/activate
```#### 1.2 Install packages
```shell script
pip install -r requirements.txt
``````shell script
# install torch with cuda
pip install torch==1.8.0+cu111 torchvision==0.9.0+cu111 torchaudio==0.8.0 -f https://download.pytorch.org/whl/torch_stable.html
```