Thank you! We'll be in touch ASAP.
Something went wrong, please try again or contact us directly at contact@dagshub.com
#!/bin/bash # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. set -e # Configure download location DOWNLOAD_PATH="$BIOBERT_DATA" if [ "$BIOBERT_DATA" == "" ]; then echo "BIOBERT_DATA not set; downloading to default path ('data')." DOWNLOAD_PATH="./data" fi DOWNLOAD_PATH_TAR="$DOWNLOAD_PATH.tar.gz" # Download datasets wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=1cGqvAm9IZ_86C4Mj7Zf-w9CFilYVDl8j' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=1cGqvAm9IZ_86C4Mj7Zf-w9CFilYVDl8j" -O "$DOWNLOAD_PATH_TAR" && rm -rf /tmp/cookies.txt tar -xvzf "$DOWNLOAD_PATH_TAR" rm "$DOWNLOAD_PATH_TAR" echo "BioBERT dataset download done!"
Press p or to see the previous file or, n or to see the next file