Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix visual_relation timeout #175

Merged
merged 3 commits into from Nov 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions visual_relation/download_full_data.sh
Expand Up @@ -28,6 +28,7 @@ if [ "$RELOAD" = true ]; then
cd data

# download and unzip metadata and annotations
echo "Downloading full VRD dataset..."
wget $ANNOTATIONS_URL
unzip vrd.zip

Expand Down
1 change: 1 addition & 0 deletions visual_relation/download_sample_data.sh
Expand Up @@ -36,6 +36,7 @@ if [ "$RELOAD" = true ]; then
cd VRD

# Download and unzip sample images
echo "Downloading sample VRD dataset..."
mkdir sg_dataset
cd sg_dataset
git clone $SAMPLE_IMAGES_URL
Expand Down
2 changes: 1 addition & 1 deletion visual_relation/utils.py
Expand Up @@ -58,7 +58,7 @@ def vrd_to_pandas(
def load_vrd_data(sample=False, is_travis=False):
"""Download and load Pandas DataFrame of VRD relationships.

NOTE: Only loads semantic relationship data points.
NOTE: Only loads semantic relationships as data points.
"""

if sample or is_travis:
Expand Down