diff --git a/unsel_dashboard-iterate.ipynb b/unsel_dashboard-iterate.ipynb index 842e134da640a29164520eb9a1cc1549576e05a0..fd5b0b0d01a4676fcb2bf730844eca18e89a7640 100644 --- a/unsel_dashboard-iterate.ipynb +++ b/unsel_dashboard-iterate.ipynb @@ -290,8 +290,8 @@ "#==============================================================================\n", "\n", "# Working directories\n", - "CONFIG_DIR = \"/opt/dashboards/tools/tenet/config/\"\n", - "FRAME_DIR = \"/opt/dashboards/tools/tenet/frame/\"\n", + "CONFIG_DIR = \"/opt/lib/tenet-unsel/config/\"\n", + "FRAME_DIR = \"/opt/lib/tenet-unsel/frame/\"\n", "CORPUS_DIR = storeBase\n", "OUTPUT_DIR = \"output/\"\n", "\n", @@ -499,7 +499,7 @@ " g = Graph()\n", " for ttl in ttlList :\n", " g.parse(ttl)\n", - " g.parse('/opt/dashboards/tools/tenet/frame/system-ontology.ttl')\n", + " g.parse(FRAME_DIR+'system-ontology.ttl')\n", " return(g)\n", "\n", "def loadSentences(directory):\n", @@ -508,7 +508,7 @@ " for ttl in ttlList :\n", " if 'factoid' not in ttl:\n", " g.parse(ttl)\n", - " g.parse('/opt/dashboards/tools/tenet/config/unl-rdf-schema.ttl')\n", + " g.parse(CONFIG_DIR+'unl-rdf-schema.ttl')\n", " return(g)\n", "\n", "possibleUnderspecificationQuery ='''\n",