-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path187.java
More file actions
327 lines (277 loc) · 8.38 KB
/
Copy path187.java
File metadata and controls
327 lines (277 loc) · 8.38 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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/*******************************************************************************
* Copyright (c) 2015-2018 Skymind, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://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.
*
* SPDX-License-Identifier: Apache-2.0
******************************************************************************/
package org.nd4j.linalg.primitives;
import java.io.Serializable;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
/**
* Simple counter implementation
* @author
*/
public class Counter<T> implements Serializable {
private static final long serialVersionUID = 119L;
protected ConcurrentHashMap<T, AtomicDouble> map = new ConcurrentHashMap<>();
protected AtomicDouble totalCount = new AtomicDouble(0);
protected AtomicBoolean dirty = new AtomicBoolean(false);
public Counter() {
}
public double getCount(T element) {
AtomicDouble t = map.get(element);
if (t == null)
return 0.0;
return t.get();
}
public void incrementCount(T element, double inc) {
AtomicDouble t = map.get(element);
if (t != null)
t.addAndGet(inc);
else {
map.put(element, new AtomicDouble(inc));
}
totalCount.addAndGet(inc);
}
/**
* This method will increment all elements in collection
*
* @param elements
* @param inc
*/
public void incrementAll(Collection<T> elements, double inc) {
for (T element: elements) {
incrementCount(element, inc);
}
}
/**
* This method will increment counts of this counter by counts from other counter
* @param other
*/
public <T2 extends T> void incrementAll(Counter<T2> other) {
for (T2 element: other.keySet()) {
double cnt = other.getCount(element);
incrementCount(element, cnt);
}
}
/**
* This method returns probability of given element
*
* @param element
* @return
*/
public double getProbability(T element) {
if (totalCount() <= 0.0)
throw new IllegalStateException("Can't calculate probability with empty counter");
return getCount(element) / totalCount();
}
/**
* This method sets new counter value for given element
*
* @param element element to be updated
* @param count new counter value
* @return previous value
*/
public double setCount(T element, double count) {
AtomicDouble t = map.get(element);
if (t != null) {
double val = t.getAndSet(count);
dirty.set(true);
return val;
} else {
map.put(element, new AtomicDouble(count));
totalCount.addAndGet(count);
return 0;
}
}
/**
* This method returns Set of elements used in this counter
*
* @return
*/
public Set<T> keySet() {
return map.keySet();
}
/**
* This method returns TRUE if counter has no elements, FALSE otherwise
*
* @return
*/
public boolean isEmpty() {
return map.size() == 0;
}
/**
* This method returns Set<Entry> of this counter
* @return
*/
public Set<Map.Entry<T, AtomicDouble>> entrySet() {
return map.entrySet();
}
/**
* This method returns List of elements, sorted by their counts
* @return
*/
public List<T> keySetSorted() {
List<T> result = new ArrayList<>();
PriorityQueue<Pair<T, Double>> pq = asPriorityQueue();
while (!pq.isEmpty()) {
result.add(pq.poll().getFirst());
}
return result;
}
/**
* This method will apply normalization to counter values and totals.
*/
public void normalize() {
for (T key : keySet()) {
setCount(key, getCount(key) / totalCount.get());
}
rebuildTotals();
}
protected void rebuildTotals() {
totalCount.set(0);
for (T key : keySet()) {
totalCount.addAndGet(getCount(key));
}
dirty.set(false);
}
/**
* This method returns total sum of counter values
* @return
*/
public double totalCount() {
if (dirty.get())
rebuildTotals();
return totalCount.get();
}
/**
* This method removes given key from counter
*
* @param element
* @return counter value
*/
public double removeKey(T element) {
AtomicDouble v = map.remove(element);
dirty.set(true);
if (v != null)
return v.get();
else
return 0.0;
}
/**
* This method returns element with highest counter value
*
* @return
*/
public T argMax() {
double maxCount = -Double.MAX_VALUE;
T maxKey = null;
for (Map.Entry<T, AtomicDouble> entry : map.entrySet()) {
if (entry.getValue().get() > maxCount || maxKey == null) {
maxKey = entry.getKey();
maxCount = entry.getValue().get();
}
}
return maxKey;
}
/**
* This method will remove all elements with counts below given threshold from counter
* @param threshold
*/
public void dropElementsBelowThreshold(double threshold) {
Iterator<T> iterator = keySet().iterator();
while (iterator.hasNext()) {
T element = iterator.next();
double val = map.get(element).get();
if (val < threshold) {
iterator.remove();
dirty.set(true);
}
}
}
/**
* This method checks, if element exist in this counter
*
* @param element
* @return
*/
public boolean containsElement(T element) {
return map.containsKey(element);
}
/**
* This method effectively resets counter to empty state
*/
public void clear() {
map.clear();
totalCount.set(0.0);
dirty.set(false);
}
@Override
public boolean equals(Object o){
if(!(o instanceof Counter))
return false;
Counter c2 = (Counter)o;
return map.equals(c2.map);
}
@Override
public int hashCode(){
return map.hashCode();
}
/**
* Returns total number of tracked elements
*
* @return
*/
public int size() {
return map.size();
}
/**
* This method removes all elements except of top N by counter values
* @param N
*/
public void keepTopNElements(int N){
PriorityQueue<Pair<T, Double>> queue = asPriorityQueue();
clear();
for (int e = 0; e < N; e++) {
Pair<T, Double> pair = queue.poll();
if (pair != null)
incrementCount(pair.getFirst(), pair.getSecond());
}
}
public PriorityQueue<Pair<T, Double>> asPriorityQueue() {
PriorityQueue<Pair<T, Double>> pq = new PriorityQueue<>(Math.max(1,map.size()), new PairComparator());
for (Map.Entry<T, AtomicDouble> entry : map.entrySet()) {
pq.add(Pair.create(entry.getKey(), entry.getValue().get()));
}
return pq;
}
public PriorityQueue<Pair<T, Double>> asReversedPriorityQueue() {
PriorityQueue<Pair<T, Double>> pq = new PriorityQueue<>(Math.max(1,map.size()), new ReversedPairComparator());
for (Map.Entry<T, AtomicDouble> entry : map.entrySet()) {
pq.add(Pair.create(entry.getKey(), entry.getValue().get()));
}
return pq;
}
public class PairComparator implements Comparator<Pair<T, Double>> {
@Override
public int compare(Pair<T, Double> o1, Pair<T, Double> o2) {
return Double.compare(o2.value, o1.value);
}
}
public class ReversedPairComparator implements Comparator<Pair<T, Double>> {
@Override
public int compare(Pair<T, Double> o1, Pair<T, Double> o2) {
return Double.compare(o1.value, o2.value);
}
}
}