-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.cpp
254 lines (196 loc) · 7.01 KB
/
main.cpp
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#include <iostream>
#include <string.h>
#include <locale.h>
#include <vector>
#include <map>
#include <stdlib.h>
#include <assert.h>
#include <sstream>
#include <fstream>
#include <math.h>
#include <algorithm>
#include <set>
#include <memory>
#include "BayesClassifier.h"
#include "LexerStem.h"
#include "LexerMyStem.h"
using namespace std;
typedef struct {
unsigned int counter;
string word;
} WordInfo;
typedef map <Hash32, WordInfo> WordList;
int learn(string file, lexer * Lexer) {
UErrorCode status = U_ZERO_ERROR;
RegexMatcher matcher("([a-zа-я])+", 0, status);
RegexMatcher header("^----class ([\\d]+) -----$", 0, status);
WordList words_all;
ClassifierList classifier;
ClassifierList::iterator words = classifier.end();
while (!cin.eof()) {
string buf;
std::getline(cin, buf);
UnicodeString ucs = UnicodeString::fromUTF8(buf.c_str());
header.reset(ucs);
if (header.find()) {
if (words != classifier.end()) {
Lexer->parse_end();
Lexer->word_stat(words->second.words);
}
string str;
header.group(1,status).toUTF8String(str);
int cl = atoi(str.c_str());
if (classifier.find(cl) == classifier.end()) {
ClassifierStat stat;
stat.docs_count = 0;
classifier[cl] = stat;
}
words = classifier.find(cl);
words->second.docs_count ++;
Lexer->parse_begin();
continue;
}
assert(words != classifier.end());
ucs.toLower();
Lexer->parse(ucs);
Lexer->word_stat(words->second.words);
}
Lexer->parse_end();
Lexer->word_stat(words->second.words);
BayesClassifier bayes;
bayes.setStats(classifier);
ofstream ofs(file.c_str());
bayes.saveToStream(ofs);
ofs.close();
/*
for(WordList::const_iterator item = words_all.begin(); item != words_all.end(); item++) {
cout << item->first << " " << item->second.word << " " << item->second.counter << endl;
}
for(ClassifierList::const_iterator classificator = classifier.begin(); classificator!= classifier.end(); classificator++) {
cout << "-----CLASSIFICATOR " << classificator->first << " --------" << endl;
for(WordsStat::const_iterator stats = classificator->second.begin(); stats != classificator->second.end(); stats++)
cout << stats->first << "\t" << stats->second << endl;
}
*/
return 0;
}
int classifier(string file, lexer * Lexer) {
BayesClassifier bayes;
ifstream ifs(file.c_str());
if (!ifs) {
cerr << "Файл не найден: " << file << endl;
exit(1);
}
bayes.loadFromStream(ifs);
ifs.close();
UErrorCode status = U_ZERO_ERROR;
RegexMatcher matcher("([a-zа-я])+", 0, status);
ClassifierList classifier;
WordsStat words;
while (!cin.eof()) {
stringstream text;
char sym;
do {
sym = cin.get();
if (sym == 0) break;
text << sym;
} while (cin.good());
Lexer->parse_begin();
while (!text.eof()) {
string buf;
getline(text, buf);
//cout << "buf: "<<buf << endl;
UnicodeString ucs = UnicodeString::fromUTF8(buf);
ucs.toLower();
Lexer->parse(ucs);
Lexer->word_stat(words);
}
Lexer->parse_end();
Lexer->word_stat(words);
ClassifierP p;
ClassifierP answer = bayes.classify(words);
//float k = (std::max_element(answer.begin(), answer.end()))->second;
for(ClassifierP::const_iterator i = answer.begin(); i != answer.end(); i ++) {
float sum = 0;
for(ClassifierP::const_iterator j = answer.begin(); j != answer.end(); j++ ) {
sum += exp( j->second - i->second );
}
p[i->first] = 1/ sum;
}
for(ClassifierP::const_iterator item = answer.begin(); item != answer.end(); item++) {
cout << item->first << ' ' << item->second << ' ' << p[item->first] << endl;
}
cout << endl;
words.clear();
}
return 0;
}
int main(int argc, char* argv[]) {
if (!setlocale(LC_ALL, "ru_RU.utf8"))
if (!setlocale(LC_ALL, "russian")) {
cerr << "Не могу установить русскую локаль: ru_RU.utf8";
return 1;
}
char *path = new char[strlen(argv[0])];
strcpy(path, argv[0]);
*(strrchr(path, '/') + 1) = 0; // Убираем имя программы
string program_path = path;
delete [] path;
if (argc < 3) {
cout <<
"Классификатор текста на основе классификатора Байеса (ver 0.04) \n"
"bayes [режим_работы] [имя_файла_конфигурации] [тип_лексера] [фильтр_лексем для лексера (mystem) ]\n"
"РЕЖИМЫ РАБОТЫ: \n"
" - L - обучение (после обучения данные будут записаны в файл конфигурации) \n"
"\t На stdin подается набор (много штук) -----CLASSIFICATOR {uint_классификатора} --------\\n + \n"
"\t текст для классификации. Где uint_классификатора -- класс к которому должен принадлежать текст во время классификации \n"
"\t После закрытия stdin классификатор формирует файл конфигурации. \n"
" - C - классификация. На stdin подаем классифицируемый текст с \\0 в конце. На stdout получаем численные оценки принадлежности c \\0 в конце. \n"
"\n"
"ТИПЫ ЛЕКСЕРОВ: \n"
"\t stem (по-умолчанию) - выделение слов, стемминг для русского и английского. \n"
"\t mystem - работа ведется через программу mystem (Яндекс) (mystem2 - лексемы будут составляться из пар слов, mystem3 - из троек слов) \n"
"\n\n Логунцов С.В. 2013 г. mailto: [email protected] \n";
return 0;
}
string file(argv[2]);
string mode(argv[1]);
lexer * Lexer = NULL;
if (argc > 3) {
string match = "";
if (argc > 4) match = argv[4];
string lexer(argv[3]);
if (lexer == "mystem") {
Lexer = new LexerMyStem(program_path, match);
} else
if (lexer == "mystem2") {
LexerMyStem *a = new LexerMyStem(program_path, match);
a->queue_size = 2;
Lexer = a;
} else
if (lexer == "mystem3") {
LexerMyStem *a = new LexerMyStem(program_path, match);
a->queue_size = 3;
Lexer = a;
} else
if (lexer == "stem") {
Lexer = new LexerStem();
}
if (Lexer == NULL) {
cerr << "Неизвестный тип лексера. Доступные варианты: mystem, stem";
return 1;
}
}
if (Lexer == NULL) {
Lexer = new LexerStem();
}
switch(argv[1][0]) {
case 'L' :
return learn(file, Lexer);
case 'C' :
return classifier(file, Lexer);
break;
}
delete Lexer;
return 0;
}