-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathUmapConfig.java
More file actions
286 lines (245 loc) · 7.43 KB
/
Copy pathUmapConfig.java
File metadata and controls
286 lines (245 loc) · 7.43 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
package edu.jhuapl.trinity.data.messages.xai;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import edu.jhuapl.trinity.data.messages.MessageData;
import java.text.DecimalFormat;
import java.text.NumberFormat;
/**
* @author Sean Phillips
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class UmapConfig extends MessageData {
public static final String TYPESTRING = "umap_config";
//<editor-fold defaultstate="collapsed" desc="JSON Payload">
/*
'{
"messageType": "manifold_data",
"repulsionStrength":0.5,
"minDist": 0.1,
"spread": 0.1,
"opMixRatio":0.9,
"numberComponents":3,
"numberEpochs":200,
"numberNearestNeighbours":15,
"negativeSampleRate":10,
"localConnectivity":10,
"metric":"Euclidean",
"verbose":"true"
}
*/
//</editor-fold>
//<editor-fold defaultstate="collapsed" desc="Payload Fields">
private Float repulsionStrength;
private Float minDist;
private Float spread;
private Float opMixRatio;
private Integer numberComponents;
private Integer numberEpochs;
private Integer numberNearestNeighbours;
private Integer negativeSampleRate;
private Integer localConnectivity;
private Double threshold;
private Float targetWeight;
private String metric;
private Boolean verbose;
//</editor-fold>
public UmapConfig() {
messageType = TYPESTRING;
}
public static boolean isUmapConfig(String messageBody) {
return messageBody.contains("messageType")
&& messageBody.contains(TYPESTRING)
&& messageBody.contains("numberComponents")
&& messageBody.contains("numberNearestNeighbours");
}
public static String configToFilename(UmapConfig uc) {
NumberFormat format = new DecimalFormat("0.00");
StringBuilder sb = new StringBuilder("UmapConfig-");
// sb.append(targetWeightSlider.getValue()).append("-");
sb.append(uc.getMetric()).append("-");
sb.append("R").append(format.format(uc.getRepulsionStrength())).append("-");
sb.append("MD").append(format.format(uc.getMinDist())).append("-");
sb.append("S").append(format.format(uc.getSpread())).append("-");
sb.append("OPM").append(format.format(uc.getOpMixRatio())).append("-");
// uc.setNumberComponents((int) numComponentsSpinner.getValue());
// uc.setNumberEpochs((int) numEpochsSpinner.getValue());
sb.append("NN").append(uc.getNumberNearestNeighbours()).append("-");
sb.append("NSR").append(uc.getNegativeSampleRate()).append("-");
sb.append("LC").append(uc.getLocalConnectivity());
// uc.setThreshold((double) thresholdSpinner.getValue());
// uc.setVerbose(verboseCheckBox.isSelected());
return sb.toString();
}
public String prettyPrint() throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
return mapper.writerWithDefaultPrettyPrinter().writeValueAsString(this);
}
public String print() throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
return mapper.writeValueAsString(this);
}
//<editor-fold defaultstate="collapsed" desc="Properties">
/**
* @return the repulsionStrength
*/
public Float getRepulsionStrength() {
return repulsionStrength;
}
/**
* @param repulsionStrength the repulsionStrength to set
*/
public void setRepulsionStrength(Float repulsionStrength) {
this.repulsionStrength = repulsionStrength;
}
/**
* @return the minDist
*/
public Float getMinDist() {
return minDist;
}
/**
* @param minDist the minDist to set
*/
public void setMinDist(Float minDist) {
this.minDist = minDist;
}
/**
* @return the spread
*/
public Float getSpread() {
return spread;
}
/**
* @param spread the spread to set
*/
public void setSpread(Float spread) {
this.spread = spread;
}
/**
* @return the opMixRatio
*/
public Float getOpMixRatio() {
return opMixRatio;
}
/**
* @param opMixRatio the opMixRatio to set
*/
public void setOpMixRatio(Float opMixRatio) {
this.opMixRatio = opMixRatio;
}
/**
* @return the numberComponents
*/
public Integer getNumberComponents() {
return numberComponents;
}
/**
* @param numberComponents the numberComponents to set
*/
public void setNumberComponents(Integer numberComponents) {
this.numberComponents = numberComponents;
}
/**
* @return the numberEpochs
*/
public Integer getNumberEpochs() {
return numberEpochs;
}
/**
* @param numberEpochs the numberEpochs to set
*/
public void setNumberEpochs(Integer numberEpochs) {
this.numberEpochs = numberEpochs;
}
/**
* @return the numberNearestNeighbours
*/
public Integer getNumberNearestNeighbours() {
return numberNearestNeighbours;
}
/**
* @param numberNearestNeighbours the numberNearestNeighbours to set
*/
public void setNumberNearestNeighbours(Integer numberNearestNeighbours) {
this.numberNearestNeighbours = numberNearestNeighbours;
}
/**
* @return the negativeSampleRate
*/
public Integer getNegativeSampleRate() {
return negativeSampleRate;
}
/**
* @param negativeSampleRate the negativeSampleRate to set
*/
public void setNegativeSampleRate(Integer negativeSampleRate) {
this.negativeSampleRate = negativeSampleRate;
}
/**
* @return the localConnectivity
*/
public Integer getLocalConnectivity() {
return localConnectivity;
}
/**
* @param localConnectivity the localConnectivity to set
*/
public void setLocalConnectivity(Integer localConnectivity) {
this.localConnectivity = localConnectivity;
}
/**
* @return the metric
*/
public String getMetric() {
return metric;
}
/**
* @param metric the metric to set
*/
public void setMetric(String metric) {
this.metric = metric;
}
/**
* @return the verbose
*/
public Boolean getVerbose() {
return verbose;
}
/**
* @param verbose the verbose to set
*/
public void setVerbose(Boolean verbose) {
this.verbose = verbose;
}
/**
* @return the threshold
*/
public Double getThreshold() {
return threshold;
}
/**
* @param threshold the threshold to set
*/
public void setThreshold(Double threshold) {
this.threshold = threshold;
}
/**
* @return the targetWeight
*/
public Float getTargetWeight() {
return targetWeight;
}
/**
* @param targetWeight the targetWeight to set
*/
public void setTargetWeight(Float targetWeight) {
this.targetWeight = targetWeight;
}
//</editor-fold>
}