#!/bin/bash urle () { [[ "${1}" ]] || return 1; local LANG=C i x; for (( i = 0; i < ${#1}; i++ )); do x="${1:i:1}"; [[ "${x}" == [a-zA-Z0-9.~-] ]] && echo -n "${x}" || printf '%%%02X' "'${x}"; done; echo; } # username and password input # echo -e "\nIf you do not have an account you can register at https://flame.is.tue.mpg.de/ following the installation instruction." # read -p "Username (FLAME):" username # read -p "Password (FLAME):" password # username=$(urle $username) # password=$(urle $password) username="2729020028@qq.com" password="1234qwer" echo -e "\nDownloading FLAME..." mkdir -p data/FLAME2020/ wget --post-data "username=$username&password=$password" 'https://download.is.tue.mpg.de/download.php?domain=flame&sfile=FLAME2020.zip&resume=1' -O './FLAME2020.zip' --no-check-certificate --continue unzip FLAME2020.zip -d data/FLAME2020/ rm -rf FLAME2020.zip echo -e "\nDownloading MICA..." mkdir -p data/pretrained/ wget -O data/pretrained/mica.tar "https://keeper.mpdl.mpg.de/f/db172dc4bd4f4c0f96de/?dl=1" # https://github.com/deepinsight/insightface/issues/1896 # Insightface has problems with hosting the models echo -e "\nDownloading insightface models..." mkdir -p ~/.insightface/models/ if [ ! -d ~/.insightface/models/antelopev2 ]; then wget -O ~/.insightface/models/antelopev2.zip "https://keeper.mpdl.mpg.de/f/2d58b7fed5a74cb5be83/?dl=1" unzip ~/.insightface/models/antelopev2.zip -d ~/.insightface/models/antelopev2 fi if [ ! -d ~/.insightface/models/buffalo_l ]; then wget -O ~/.insightface/models/buffalo_l.zip "https://keeper.mpdl.mpg.de/f/8faabd353cfc457fa5c5/?dl=1" unzip ~/.insightface/models/buffalo_l.zip -d ~/.insightface/models/buffalo_l fi # echo -e "\nInstalling conda env..." # conda env create -f environment.yml # echo -e "\nInstallation has finished!"