add script

pull/139/head
MaureenZOU 2023-10-05 08:06:43 -05:00
parent b120d51969
commit 9d6f1dd3d7
3 changed files with 21 additions and 1 deletions

4
.gitignore vendored
View File

@ -96,7 +96,9 @@ amlt/*
MODELS
MODELS/*
*.sh
eval_seem.sh
train_seem.sh
train_seem_v0.sh
draws/
plot/

View File

@ -0,0 +1,5 @@
sudo apt update
sudo apt install ffmpeg
pip install -r assets/requirements/requirements.txt
pip install -r assets/requirements/requirements_custom.txt
python demo/seem/demo.py

View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
# ------------------------------------------------------------------------------------------------
# Deformable DETR
# Copyright (c) 2020 SenseTime. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 [see LICENSE for details]
# ------------------------------------------------------------------------------------------------
# Modified from https://github.com/chengdazhi/Deformable-Convolution-V2-PyTorch/tree/pytorch_1.0.0
# ------------------------------------------------------------------------------------------------
# Copyright (c) Facebook, Inc. and its affiliates.
# Modified by Bowen Cheng from https://github.com/fundamentalvision/Deformable-DETR
python setup.py build install --user