add script
parent
b120d51969
commit
9d6f1dd3d7
|
@ -96,7 +96,9 @@ amlt/*
|
|||
MODELS
|
||||
MODELS/*
|
||||
|
||||
*.sh
|
||||
eval_seem.sh
|
||||
train_seem.sh
|
||||
train_seem_v0.sh
|
||||
|
||||
draws/
|
||||
plot/
|
||||
|
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue