Commit da400f2e authored by Victor Zimmermann's avatar Victor Zimmermann
Browse files

Update directory structure.

parent 47c539dc
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
import os

'''
Configuration file
'''
@@ -6,12 +8,13 @@ Configuration file
Choose paths for corpus, dataset and output.
- The output directory should be empty when starting absinth.
'''
graph_path = "./.graphs/"
corpus = "/proj/absinth/wikipedia_shuffled2/"
trialset = "../evaluator/datasets/trial/"
testset = "../evaluator/datasets/test/"
base_out = "../output/baseline/"
output = "../output/system/"
graph_path = os.path.join(os.path.dirname(__file__), ".graphs/")
corpus = os.path.join(os.path.dirname(__file__), "/proj/absinth/wikipedia_shuffled2/")
trialset = os.path.join(os.path.dirname(__file__), "../evaluator/datasets/trial/")
testset = os.path.join(os.path.dirname(__file__), "../evaluator/datasets/test/")
devset = os.path.join(os.path.dirname(__file__), "../evaluator/datasets/development/")
output = os.path.join(os.path.dirname(__file__), "../output/")
final = os.path.join(os.path.dirname(__file__), "../output/.final/")

'''
Disambiguation Pipeline