Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
Fix paths in training config
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkgr committed Apr 14, 2021
1 parent acc3424 commit eaf76a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions training_config/vision/vilbert_vqa_pretrained.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ local vocabulary = if construct_vocab then {
{
"dataset_reader": {
"type": "vqav2",
"image_dir": std.format("/mnt/tank/dirkg/data/vision/vqa/%s", dataset),
[if !construct_vocab then "feature_cache_dir"]: std.format("/mnt/tank/dirkg/data/vision/vqa/%s/feature_cache", dataset),
"image_dir": std.format("/net/nfs2.allennlp/data/vision/vqa/%s", dataset),
[if !construct_vocab then "feature_cache_dir"]: std.format("/net/nfs2.allennlp/data/vision/vqa/%s/feature_cache", dataset),
#"image_dir": std.format("/Users/dirkg/Documents/data/vision/vqa/%s", dataset),
#[if !construct_vocab then "feature_cache_dir"]: std.format("/Users/dirkg/Documents/data/vision/vqa/%s/feature_cache", dataset),
[if !construct_vocab then "image_loader"]: "torch",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ local vocabulary = if construct_vocab then {
{
"dataset_reader": {
"type": "vqav2",
"image_dir": std.format("/mnt/tank/dirkg/data/vision/vqa/%s", dataset),
[if !construct_vocab then "feature_cache_dir"]: std.format("/mnt/tank/dirkg/data/vision/vqa/%s/feature_cache", dataset),
"image_dir": std.format("/net/nfs2.allennlp/data/vision/vqa/%s", dataset),
[if !construct_vocab then "feature_cache_dir"]: std.format("/net/nfs2.allennlp/data/vision/vqa/%s/feature_cache", dataset),
#"image_dir": std.format("/Users/dirkg/Documents/data/vision/vqa/%s", dataset),
#[if !construct_vocab then "feature_cache_dir"]: std.format("/Users/dirkg/Documents/data/vision/vqa/%s/feature_cache", dataset),
[if !construct_vocab then "image_loader"]: "torch",
Expand Down

0 comments on commit eaf76a7

Please sign in to comment.