-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtext.go
190 lines (155 loc) · 4.16 KB
/
text.go
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*
Copyright (C) 2024 semi
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"bufio"
"encoding/json"
"errors"
"fmt"
"io"
"math"
"os"
"sort"
"unicode"
)
type TextData struct {
Letters map[string]int `json:"letters"`
Bigrams map[string]int `json:"bigrams"`
Trigrams map[string]int `json:"trigrams"`
TopTrigrams []FreqPair `json:"toptrigrams"`
Skipgrams map[string]float64 `json:"skipgrams"`
TotalBigrams int
Total int
}
func GetTextData(f string) TextData {
println("Reading...")
file, err := os.Open(f)
if err != nil {
panic(err)
}
defer file.Close()
var data TextData
data.Letters = make(map[string]int)
data.Bigrams = make(map[string]int)
data.Trigrams = make(map[string]int)
data.Skipgrams = make(map[string]float64)
validstr := Config.CorpusProcessing.ValidChars
maxSkipgramSize := int(Config.CorpusProcessing.MaxSkipgramSize)
onlySpanValidChars := Config.CorpusProcessing.SkipgramsMustSpanValidChars
substitutionslist := Config.CorpusProcessing.CharSubstitutions
validmap := make(map[rune]bool)
for _, c := range validstr {
validmap[c] = true
}
substitutionmap := make(map[rune]rune)
for _, pair := range substitutionslist {
substitutionmap[rune(pair[0][0])] = rune(pair[1][0])
}
powers := []float64{}
for i := 0; i < maxSkipgramSize; i++ {
powers = append(powers, 1/math.Pow(2, float64(i)))
}
var lastchars []rune
reader := bufio.NewReader(file)
var line int
for {
chars, err := reader.ReadString('\n')
if errors.Is(err, io.EOF) {
break
}
lastchars = []rune{}
line++
if line%1000 == 0 {
fmt.Printf("%d lines read...\r", line)
}
for _, char := range chars {
data.Total++
char = unicode.ToLower(char)
if sub, ok := substitutionmap[char]; ok {
char = sub
}
if !validmap[char] {
if onlySpanValidChars {
// reset lastchars in case of invalid character
lastchars = []rune{}
} else {
lastchars = append(lastchars, 'X') // sentinel value for invalid char
if len(lastchars) > maxSkipgramSize {
lastchars = lastchars[1 : maxSkipgramSize+1] // remove first character
}
}
continue
} else {
data.Letters[string(char)]++
length := len(lastchars)
last := length - 1 // index of the most recent character
for i := last; i >= 0; i-- {
c := lastchars[i]
if c == 'X' {
continue
}
if i == last {
if c != ' ' && char != ' ' {
data.TotalBigrams++
}
data.Bigrams[string(c)+string(char)]++
} else {
if i == last-1 && lastchars[last] != 'X' {
data.Trigrams[string(c)+string(lastchars[last])+string(char)]++
}
data.Skipgrams[string(c)+string(char)] += powers[length-i-2]
}
}
lastchars = append(lastchars, char)
if len(lastchars) > maxSkipgramSize {
lastchars = lastchars[1 : maxSkipgramSize+1] // remove first character
}
}
}
}
fmt.Println()
var sorted []FreqPair
for k, v := range data.Trigrams {
sorted = append(sorted, FreqPair{k, float64(v)})
}
sort.Slice(sorted, func(i, j int) bool {
return sorted[i].Count > sorted[j].Count
})
data.TopTrigrams = sorted
return data
}
func WriteData(data TextData, path string) {
f, err := os.Create(path)
if err != nil {
panic(err)
}
defer f.Close()
js, err := json.Marshal(data)
if err != nil {
panic(err)
}
f.WriteString(string(js))
}
func LoadData(path string) TextData {
b, err := os.ReadFile(path)
if err != nil {
panic(err)
}
var data TextData
err = json.Unmarshal(b, &data)
if err != nil {
panic(err)
}
return data
}