Skip to content

Commit

Permalink
YOLOX new
Browse files Browse the repository at this point in the history
  • Loading branch information
PINTO0309 committed Aug 8, 2021
1 parent 8eea89d commit 74f3ca6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions 132_YOLOX/download_nano_new.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

curl -sc /tmp/cookie "https://drive.google.com/uc?export=download&id=1BRfOsVn4dpI_ESEvoRMBrxJ5RfPFevfK" > /dev/null
CODE="$(awk '/_warning_/ {print $NF}' /tmp/cookie)"
curl -Lb /tmp/cookie "https://drive.google.com/uc?export=download&confirm=${CODE}&id=1BRfOsVn4dpI_ESEvoRMBrxJ5RfPFevfK" -o resources.tar.gz
tar -zxvf resources.tar.gz
rm resources.tar.gz

echo Download finished.
9 changes: 9 additions & 0 deletions 132_YOLOX/download_tiny_new.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

curl -sc /tmp/cookie "https://drive.google.com/uc?export=download&id=1SLz8BEqyZvdIrSeKcq6edfOr-la1QojB" > /dev/null
CODE="$(awk '/_warning_/ {print $NF}' /tmp/cookie)"
curl -Lb /tmp/cookie "https://drive.google.com/uc?export=download&confirm=${CODE}&id=1SLz8BEqyZvdIrSeKcq6edfOr-la1QojB" -o resources.tar.gz
tar -zxvf resources.tar.gz
rm resources.tar.gz

echo Download finished.

0 comments on commit 74f3ca6

Please sign in to comment.