forked from nyu-mll/jiant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_config.sh
31 lines (24 loc) · 1.06 KB
/
path_config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# DO NOT COMMIT CHANGES TO THIS FILE! Make a local copy and follow the
# instructions below.
# Copy this to /etc/profile.d/ to auto-set environment vars on login.
# Or, make a copy of this, customize, and run immediately before the training
# binary:
# cp path_config.sh ~/my_path_config.sh
# source ~/my_path_config.sh; python main.py --config ../config/demo.conf \
# --overrides "do_pretrain = 0"
# Default environment variables for JSALT code. May be overwritten by user.
# See https://github.com/jsalt18-sentence-repl/jiant for more.
##
# Example of custom paths for a local installation:
# export JIANT_PROJECT_PREFIX=/Users/Bowman/Drive/JSALT
# export JIANT_DATA_DIR=/Users/Bowman/Drive/JSALT/jiant/glue_data
# export JIANT_DATA_DIR=/home/raghu1991_p_gmail_com/
# export WORD_EMBS_FILE=~/glove.840B.300d.txt
# export FASTTEXT_MODEL_FILE=None
# export FASTTEXT_EMBS_FILE=None
export JIANT_PROJECT_PREFIX=exp
export JIANT_DATA_DIR=/nfs/jsalt/home/
export NFS_PROJECT_PREFIX=/nfs/jsalt/exp/nkim
export NFS_DATA_DIR=/nfs/jsalt/home/
# echo "Loaded Sam's config."