We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb5dd8 commit 8ed084aCopy full SHA for 8ed084a
src/main/java/network/aika/neuron/activation/Activation.java
@@ -292,12 +292,20 @@ public double getUpperBound() {
292
return upperBound;
293
}
294
295
+ public void setUpperBound(double ub) {
296
+ upperBound = ub;
297
+ }
298
+
299
300
public double getLowerBound() {
301
return lowerBound;
302
303
304
305
+ public void setLowerBound(double lb) {
306
+ lowerBound = lb;
307
308
309
public Double getTargetValue() {
310
return targetValue;
311
0 commit comments