diff --git a/.gitignore b/.gitignore index 9c7a0ed..3ae4cbe 100644 --- a/.gitignore +++ b/.gitignore @@ -96,7 +96,9 @@ amlt/* MODELS MODELS/* -*.sh +eval_seem.sh +train_seem.sh +train_seem_v0.sh draws/ plot/ diff --git a/assets/scripts/run_demo.sh b/assets/scripts/run_demo.sh new file mode 100644 index 0000000..8819ca2 --- /dev/null +++ b/assets/scripts/run_demo.sh @@ -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 \ No newline at end of file diff --git a/modeling/vision/encoder/ops/make.sh b/modeling/vision/encoder/ops/make.sh new file mode 100755 index 0000000..c4ce889 --- /dev/null +++ b/modeling/vision/encoder/ops/make.sh @@ -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