forked from tanglizhe1105/plda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
document.cc
152 lines (132 loc) · 4.77 KB
/
document.cc
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
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <cstdio>
#include "document.h"
#include <iostream>
#include <fstream>
namespace learning_lda {
LDADocument::WordOccurrenceIterator::WordOccurrenceIterator(
LDADocument* parent) {
parent_ = parent;
word_index_ = 0;
word_topic_index_ = 0;
SkipWordsWithoutOccurrences();
}
LDADocument::WordOccurrenceIterator::~WordOccurrenceIterator() { }
// Have we advanced beyond the last word?
bool LDADocument::WordOccurrenceIterator::Done() {
CHECK_GE(parent_->topic_assignments_->words_size(), word_index_);
return word_index_ == parent_->topic_assignments_->words_size();
}
// We iterate over all the occurrences of each word. If we have finished with
// the current word, we advance to the 0th ocurrence of the next word that has
// occurrences.
void LDADocument::WordOccurrenceIterator::Next() {
CHECK(!Done());
++word_topic_index_;
if (word_topic_index_ >
parent_->topic_assignments_->word_last_topic_index(word_index_)) {
++word_index_;
SkipWordsWithoutOccurrences();
}
}
int LDADocument::WordOccurrenceIterator::Topic() {
CHECK(!Done());
return parent_->topic_assignments_->wordtopics(word_topic_index_);
}
// Exchange the topic. Be sure to keep the topic count distribution up to
// date.
void LDADocument::WordOccurrenceIterator::SetTopic(int new_topic) {
CHECK(!Done());
CHECK_LE(0, new_topic);
CHECK_GT(parent_->topic_distribution_.size(), new_topic);
// Adjust the topic counts before we set the new topic and forget the old
// one.
parent_->topic_distribution_[Topic()] -= 1;
parent_->topic_distribution_[new_topic] += 1;
*(parent_->topic_assignments_->mutable_wordtopics(word_topic_index_)) = new_topic;
}
int LDADocument::WordOccurrenceIterator::Word() {
CHECK(!Done());
return parent_->topic_assignments_->word(word_index_);
}
void LDADocument::WordOccurrenceIterator::SkipWordsWithoutOccurrences() {
// The second part of the condition means "while the current word has no
// occurrences" (and thus no topic assignments).
while (
!Done() &&
parent_->topic_assignments_->wordtopics_count(word_index_) == 0) {
++word_index_;
}
}
void LDADocument::WordOccurrenceIterator::GotoWord(int new_word_index) {
word_index_ = new_word_index;
word_topic_index_ = parent_->topic_assignments_->wordtopics_start_index_[word_index_];
}
void LDADocument::CountTopicDistribution() {
for (int i = 0; i < topic_distribution_.size(); ++i) {
topic_distribution_[i] = 0;
}
for (WordOccurrenceIterator iter(this); !iter.Done(); iter.Next()) {
topic_distribution_[iter.Topic()] += 1;
}
}
string LDADocument::DebugString() {
string s;
for (int i = 0; i < topic_assignments_->wordtopics_.size(); ++i) {
char buf[100];
snprintf(buf, sizeof(buf), "%d", topic_assignments_->wordtopics_[i]);
s.append(buf);
s.append(" ");
}
s.append("#");
for (int i = 0; i < topic_distribution_.size(); ++i) {
char buf[100];
snprintf(buf, sizeof(buf), "%lld", topic_distribution_[i]);
s.append(buf);
s.append(" ");
}
return s;
}
LDADocument::LDADocument(const DocumentWordTopicsPB& topics,
int num_topics, int inputDocumentId) {
topic_assignments_ = new DocumentWordTopicsPB;
topic_assignments_->CopyFrom(topics);
topic_distribution_.resize(num_topics);
CountTopicDistribution();
this->documentId= inputDocumentId;
}
LDADocument::~LDADocument() {
delete topic_assignments_;
topic_assignments_ = NULL;
}
void LDADocument::ResetWordIndex(const map<string, int>& word_index_map) {
for (int i = 0; i < topic_assignments_->words_.size(); ++i) {
(*topic_assignments_).words_[i] = word_index_map.find((*topic_assignments_).words_s_[i])->second;
}
}
void outputPLDAPLUSCorpus(PLDAPLUSCorpus * t, std::ofstream& out){
LDACorpus* pCorpus = t->corpus; //list<LDADocument*> LDACorpus;
LDACorpus corpus = *pCorpus;
for(LDACorpus::iterator it= corpus.begin(); it!=corpus.end(); it++){
LDADocument * ldaDocument = *it;
const vector<int64>& topic_distribution = ldaDocument->topic_distribution();
out << ldaDocument->documentId << " : ";
for(int i = 0 ; i<topic_distribution.size(); i++){
out<<topic_distribution[i]<<" ";
}
out << std::endl;
}
}
} // namespace learning_lda