-
Notifications
You must be signed in to change notification settings - Fork 0
/
voynich.json
92 lines (88 loc) · 2.17 KB
/
voynich.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"id": "Voynich Test Flow",
"description": "Tests the phonological match report on part of the Voynich manuscript.",
"features": [
{
"path": "../resources/encodings/features.json"
}
],
"encodings": [
{
"id": "IPA",
"features": "Default",
"path": "../resources/encodings/ipa.json"
},
{
"id": "Romlex",
"features": "Default",
"path": "../resources/encodings/romlex.json"
},
{
"id": "SLP1",
"features": "Default",
"path": "../resources/encodings/slp1.json"
},
{
"id": "Vogt",
"features": "Default",
"path": "../resources/encodings/vogt.json"
}
],
"lexicons": [
{
"id": "Romlex",
"type": "Romlex",
"features": "Default",
"encoding": "Romlex",
"path": "../resources/lexicons/romlex/romlex.json"
},
{
"id": "SHS",
"type": "ShabdaSagara",
"features": "Default",
"encoding": "SLP1",
"path": "../resources/lexicons/shstxt/shs.txt"
}
],
"steps": [
{
"id": "Voynich Interlinear",
"description": "Reads lines from the Reed-Landini-Stolfi Interlinear file 16e6 (http://www.ic.unicamp.br/~stolfi/voynich/98-12-28-interln16e6/).",
"type": "VoynichInterlinear",
"encoding": "Vogt",
"path": "../resources/voynich/interlinear_text16e6.evt",
"locuses": [
"<f1r.P1.1;H>",
"<f1r.P1.2;H>"
//"<f1r.P1.3;H>",
//"<f1r.P1.4;H>",
//"<f1r.P1.5;H>",
//"<f1r.T1.6;H>",
//"<f1r.P2.7;H>",
//"<f1r.P2.8;H>",
//"<f1r.P2.9;H>",
//"<f1r.T2.10;H>",
//"<f1r.P3.11;H>",
//"<f1r.P3.12;H>",
//"<f1r.P3.13;H>",
//"<f1r.P3.14;H>",
//"<f1r.P3.15;H>",
//"<f1r.P3.16;H>"
]
},
{
"id": "Phonological Match",
"description": "Matches inputs against one or more lexicons.",
"type": "DTWMatcher",
"lexicons": [ "Romlex", "SHS" ],
"numOptions": 12,
"tolerance": 0.0,
"hypotheses": "hypotheses.json"
},
{
"id": "Match Report",
"type": "MatchReport",
"output": "../reports/voynich_report.html"
}
]
}