Skip to content

Commit 3fb81b1

Browse files
committed
Moved *.json files for MQNLI notebook into tutorial_data folder
1 parent 92c00f1 commit 3fb81b1

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

tutorials/advanced_tutorials/MQNLI.ipynb

+5-5
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
" def __hash__(self):\n",
130130
" return hash(frozenset(self))\n",
131131
"\n",
132-
"with open('q_projectivity.json') as f:\n",
132+
"with open('tutorial_data/mqnli_q_projectivity.json') as f:\n",
133133
" determiner_signatures = json.load(f)\n",
134134
" determiner_signatures = Hashabledict({\n",
135135
" q1: Hashabledict({\n",
@@ -145,16 +145,16 @@
145145
" for q1 in determiner_signatures\n",
146146
" })\n",
147147
"\n",
148-
"with open('neg_signature.json') as f:\n",
148+
"with open('tutorial_data/mqnli_neg_signature.json') as f:\n",
149149
" negation_signature = Hashabledict(json.load(f))\n",
150150
"\n",
151-
"with open('empty_signature.json') as f:\n",
151+
"with open('tutorial_data/mqnli_empty_signature.json') as f:\n",
152152
" emptystring_signature = Hashabledict(json.load(f))\n",
153153
"\n",
154-
"with open('cont_signature.json') as f:\n",
154+
"with open('tutorial_data/mqnli_cont_signature.json') as f:\n",
155155
" compose_contradiction_signature = Hashabledict(json.load(f))\n",
156156
"\n",
157-
"with open('neg_cont_signature.json') as f:\n",
157+
"with open('tutorial_data/mqnli_neg_cont_signature.json') as f:\n",
158158
" compose_neg_contradiction_signature = Hashabledict(json.load(f))"
159159
]
160160
},

0 commit comments

Comments
 (0)