-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrepareDebateDataFilePerTopic.java
More file actions
283 lines (225 loc) · 6.49 KB
/
Copy pathPrepareDebateDataFilePerTopic.java
File metadata and controls
283 lines (225 loc) · 6.49 KB
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
package com.research.course.debate.preproc;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import com.research.course.debate.preproc.PrepareDebateDataFilePerTopic.DebateInstance;
public class PrepareDebateDataFilePerTopic {
/**
* @param args
*/
@SuppressWarnings("rawtypes")
public
class DebateInstance implements Comparable
{
public int getDebateId() {
return debateId;
}
public void setDebateId(int debateId) {
this.debateId = debateId;
}
public String getSpeakerId() {
return speakerId;
}
public void setSpeakerId(String speakerId) {
this.speakerId = speakerId;
}
public String getPoliticsRef() {
return politicsRef;
}
public void setPoliticsRef(String politicsRef) {
this.politicsRef = politicsRef;
}
public String getMention() {
return mention;
}
public void setMention(String mention) {
this.mention = mention;
}
public String getVote() {
return vote;
}
public void setVote(String vote) {
this.vote = vote;
}
public int getHtmlPageId() {
return htmlPageId;
}
public void setHtmlPageId(int htmlPageId) {
this.htmlPageId = htmlPageId;
}
public int getSpeechSeqnId() {
return speechSeqnId;
}
public void setSpeechSeqnId(int speechSeqnId) {
this.speechSeqnId = speechSeqnId;
}
public String toString()
{
return debateId+"\t"+speakerId+"\t"+htmlPageId+"\t"+speechSeqnId+"\t"+politicsRef
+"\t"+mention+"\t"+vote+"\t"+(speakerId+"-"+htmlPageId+"-"+ speechSeqnId)+"\t"+speech;
}
private int debateId;
private String speakerId;
private String politicsRef ;
private String mention ;
private String vote ;
private int htmlPageId;
private int speechSeqnId ;
private String speech;
@Override
public int compareTo(Object arg0)
{
// TODO Auto-generated method stub
int htmlPageId1 = this.getHtmlPageId() ;
int htmlPageId2 = ((DebateInstance) arg0).getHtmlPageId() ;
if(htmlPageId1 > htmlPageId2)
{
return 1;
}
else if ( htmlPageId1 < htmlPageId2 )
{
return 0 ;
}
else
{
//check the speech seqn
int speechSeqnId1 = this.getSpeechSeqnId();
int speechSeqnId2 = ((DebateInstance) arg0).getSpeechSeqnId() ;
if ( speechSeqnId1 > speechSeqnId2 )
{
return 1 ;
}
else
{
return 0 ;
}
}
}
public void setText(String fullText)
{
// TODO Auto-generated method stub
this.speech = fullText ;
}
public String getText() {
// TODO Auto-generated method stub
return speech;
}
}
private HashMap<Integer, List<DebateInstance>> debateDataMap;
public PrepareDebateDataFilePerTopic()
{
debateDataMap = new HashMap<Integer,List<DebateInstance> >();
}
@SuppressWarnings("unchecked")
public void loadDataFromTestFolder( String path ) throws IOException
{
File file = new File ( path +"/topics_separate/" );
String files[] = file.list();
DebateInstance debateObj = null ;
List<DebateInstance> debateInstancesList = null ;
for ( String f : files )
{
File fl = new File (path + "/topics_separate/" + f );
if(fl.isDirectory())
{
continue ;
}
if (f.contains("Store"))
{
continue;
}
//016_400005_0103006_RMY.txt
//016 = debate id
//400005 = rep id (speaker identifier)
//0103 = original HTML page id
//006 = position of the speech in the debate - important for the order
//R = republican
//M = "bill is mentioned"
//Y = "ground truth - vote
//sort the files based on the order (timeline) as the debate progresses
String features[] = f.split("_");
String debateId = features[0];
String speakerId = features[1];
String htmlPageId = features[2].substring(0,4);
String speechPosnId = features[2].substring(4,7);
String politicalId = features[3].substring(0,1);
String mentionId = features[3].substring(1,2);
String voteId = features[3].substring(2,3);
// if(!debateId.contains("16"))
// {
// continue ;
// }
String fullText = getTextFromFile(path+"/topics_separate/" + f);
debateObj = new DebateInstance();
debateObj.setDebateId(Integer.valueOf(debateId));
debateObj.setSpeakerId(speakerId);
debateObj.setHtmlPageId(Integer.valueOf(htmlPageId));
debateObj.setSpeechSeqnId(Integer.valueOf(speechPosnId));
debateObj.setPoliticsRef(politicalId);
debateObj.setMention(mentionId);
debateObj.setVote(voteId);
debateObj.setText(fullText);
debateInstancesList = debateDataMap.get(Integer.valueOf(debateId));
if (null == debateInstancesList )
{
debateInstancesList = new ArrayList<DebateInstance>();
}
debateInstancesList.add(debateObj);
debateDataMap.put(Integer.valueOf(debateId),debateInstancesList) ;
}
// java.util.Collections.sort(debateInstancesList) ;
Writer writer = null ;
for ( Integer debate : debateDataMap.keySet() )
{
writer = new BufferedWriter( new OutputStreamWriter ( new FileOutputStream ( path + "/topics_together/"+debate +".txt"
), "UTF8") );
writer.write("DebateId"+"\t"+"SpeakerId"+"\t"+"HTMLPageId"+"\t"+
"SpeechSeqnId"+"\t"+"PoliticsRef" +"\t" + "Mention"+"\t"+
"Vote"+"\t"+"SpeechID"+"\t"+"Speech");
writer.write("\n") ;
debateInstancesList = debateDataMap.get(debate);
java.util.Collections.sort(debateInstancesList);
for ( DebateInstance di : debateInstancesList)
{
writer.write(di.toString());
writer.write("\n");
}
writer.close();
}
}
private String getTextFromFile(String file) throws IOException
{
// TODO Auto-generated method stub
BufferedReader reader = new BufferedReader(new InputStreamReader (
new FileInputStream( file) , "UTF8") );
StringBuffer buffer = new StringBuffer();
while (true)
{
String line = reader.readLine();
if (line == null)
{
break;
}
buffer.append(line.trim());
buffer.append(" ");
}
reader.close();
return buffer.toString();
}
public static void main(String[] args) throws IOException
{
// TODO Auto-generated method stub
String path = "data/convote_v1.1/data_stage_one/development_set/";
PrepareDebateDataFilePerTopic debateDataObj = new PrepareDebateDataFilePerTopic();
debateDataObj.loadDataFromTestFolder(path);
}
}