This repository has been archived by the owner on Apr 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
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
5 changed files
with
57 additions
and
7 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
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
47 changes: 47 additions & 0 deletions
47
src/test/java/org/jpmml/tensorflow/TensorFlowEquivalence.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,47 @@ | ||
/* | ||
* Copyright (c) 2017 Villu Ruusmann | ||
* | ||
* This file is part of JPMML-TensorFlow | ||
* | ||
* JPMML-TensorFlow is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* JPMML-TensorFlow is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with JPMML-TensorFlow. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
package org.jpmml.tensorflow; | ||
|
||
import org.dmg.pmml.DataType; | ||
import org.jpmml.evaluator.Computable; | ||
import org.jpmml.evaluator.EvaluatorUtil; | ||
import org.jpmml.evaluator.RealNumberEquivalence; | ||
import org.jpmml.evaluator.TypeUtil; | ||
|
||
public class TensorFlowEquivalence extends RealNumberEquivalence { | ||
|
||
public TensorFlowEquivalence(int tolerance){ | ||
super(tolerance); | ||
} | ||
|
||
@Override | ||
public boolean doEquivalent(Object expected, Object actual){ | ||
|
||
if(actual instanceof Computable){ | ||
actual = EvaluatorUtil.decode(actual); | ||
} // End if | ||
|
||
if(actual instanceof Number){ | ||
actual = TypeUtil.parseOrCast(DataType.FLOAT, actual); | ||
expected = TypeUtil.parseOrCast(DataType.FLOAT, expected); | ||
} | ||
|
||
return super.doEquivalent(expected, actual); | ||
} | ||
} |