forked from emmaggie/nd4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
175 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,9 +25,9 @@ | |
import org.nd4j.linalg.api.ops.Op; | ||
|
||
/** | ||
* Sum the components | ||
* Absolute sum the components | ||
* | ||
* @author Adam Gibson | ||
* @author [email protected] | ||
*/ | ||
public class ASum extends BaseAccumulation { | ||
|
||
|
141 changes: 141 additions & 0 deletions
141
...-api-parent/nd4j-api/src/main/java/org/nd4j/linalg/api/ops/impl/accum/MatchCondition.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
/* | ||
* | ||
* * Copyright 2015 Skymind,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. | ||
* | ||
* | ||
*/ | ||
|
||
package org.nd4j.linalg.api.ops.impl.accum; | ||
|
||
import org.nd4j.linalg.api.complex.IComplexNumber; | ||
import org.nd4j.linalg.api.ndarray.INDArray; | ||
import org.nd4j.linalg.api.ops.BaseAccumulation; | ||
import org.nd4j.linalg.api.ops.Op; | ||
import org.nd4j.linalg.factory.Nd4j; | ||
import org.nd4j.linalg.indexing.conditions.Condition; | ||
|
||
/** | ||
* Absolute sum the components | ||
* | ||
* @author [email protected] | ||
*/ | ||
public class MatchCondition extends BaseAccumulation { | ||
|
||
double compare; | ||
double eps; | ||
int mode; | ||
|
||
public MatchCondition() { | ||
} | ||
|
||
|
||
public MatchCondition(INDArray x, Condition condition) { | ||
this(x, Nd4j.EPS_THRESHOLD, condition); | ||
} | ||
|
||
public MatchCondition(INDArray x, double eps, Condition condition) { | ||
super(x); | ||
this.compare = condition.getValue(); | ||
this.mode = condition.condtionNum(); | ||
this.eps = eps; | ||
|
||
this.extraArgs = new Object[] {compare, eps, (double) mode}; | ||
} | ||
|
||
@Override | ||
public int opNum() { | ||
return 12; | ||
} | ||
|
||
@Override | ||
public String name() { | ||
return "match_condition"; | ||
} | ||
|
||
@Override | ||
public Op opForDimension(int index, int dimension) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Op opForDimension(int index, int... dimension) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public IComplexNumber op(IComplexNumber origin, IComplexNumber other) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public IComplexNumber op(IComplexNumber origin, float other) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public IComplexNumber op(IComplexNumber origin, double other) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public IComplexNumber op(IComplexNumber origin) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public double update(double accum, double x) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public double update(double accum, double x, double y) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public float update(float accum, float x) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public float update(float accum, float x, float y) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public IComplexNumber update(IComplexNumber accum, double x) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public IComplexNumber update(IComplexNumber accum, double x, double y) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public IComplexNumber update(IComplexNumber accum, IComplexNumber x) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public IComplexNumber update(IComplexNumber accum, IComplexNumber x, IComplexNumber y) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public IComplexNumber update(IComplexNumber accum, IComplexNumber x, double y) { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
import org.nd4j.linalg.indexing.conditions.Condition; | ||
|
||
/** | ||
* Element-wise Compare-and-set implementation as Op | ||
* Element-wise Compare-and-Replace implementation as Op | ||
* | ||
* @author [email protected] | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters