You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemall.apache.org by my...@apache.org on 2018/02/09 07:38:08 UTC

[1/2] incubator-hivemall git commit: Inserted comments to follow 4-b of http://www.apache.org/licenses/LICENSE-2.0#redistribution

Repository: incubator-hivemall
Updated Branches:
  refs/heads/v0.5.0 c742ce58e -> ef0fe1064


Inserted comments to follow 4-b of http://www.apache.org/licenses/LICENSE-2.0#redistribution


Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/f51a6437
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/f51a6437
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/f51a6437

Branch: refs/heads/v0.5.0
Commit: f51a643757d3f005ac1dc69709103cafcc6fb1a4
Parents: c742ce5
Author: Makoto Yui <my...@apache.org>
Authored: Fri Feb 9 13:14:31 2018 +0900
Committer: Makoto Yui <my...@apache.org>
Committed: Fri Feb 9 13:14:31 2018 +0900

----------------------------------------------------------------------
 core/src/main/java/hivemall/smile/classification/DecisionTree.java | 2 ++
 core/src/main/java/hivemall/smile/regression/RegressionTree.java   | 2 ++
 core/src/main/java/hivemall/utils/codec/Base91.java                | 2 ++
 core/src/main/java/hivemall/utils/math/FastMath.java               | 2 ++
 4 files changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/f51a6437/core/src/main/java/hivemall/smile/classification/DecisionTree.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/hivemall/smile/classification/DecisionTree.java b/core/src/main/java/hivemall/smile/classification/DecisionTree.java
index f6ed45f..e6160d2 100644
--- a/core/src/main/java/hivemall/smile/classification/DecisionTree.java
+++ b/core/src/main/java/hivemall/smile/classification/DecisionTree.java
@@ -13,6 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+// This file includes a modified version of Smile:
+// https://github.com/haifengl/smile/blob/master/core/src/main/java/smile/classification/DecisionTree.java
 package hivemall.smile.classification;
 
 import static hivemall.smile.utils.SmileExtUtils.resolveFeatureName;

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/f51a6437/core/src/main/java/hivemall/smile/regression/RegressionTree.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/hivemall/smile/regression/RegressionTree.java b/core/src/main/java/hivemall/smile/regression/RegressionTree.java
index dadabe7..b085734 100755
--- a/core/src/main/java/hivemall/smile/regression/RegressionTree.java
+++ b/core/src/main/java/hivemall/smile/regression/RegressionTree.java
@@ -13,6 +13,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+// This file includes a modified version of Smile:
+// https://github.com/haifengl/smile/blob/master/core/src/main/java/smile/regression/RegressionTree.java
 package hivemall.smile.regression;
 
 import static hivemall.smile.utils.SmileExtUtils.resolveFeatureName;

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/f51a6437/core/src/main/java/hivemall/utils/codec/Base91.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/hivemall/utils/codec/Base91.java b/core/src/main/java/hivemall/utils/codec/Base91.java
index 46a0b14..3e996be 100644
--- a/core/src/main/java/hivemall/utils/codec/Base91.java
+++ b/core/src/main/java/hivemall/utils/codec/Base91.java
@@ -28,6 +28,8 @@
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGE.
  */
+// This file contains a modified version of Jochaim Henke's Base91:
+// https://github.com/bwaldvogel/base91/blob/master/src/main/java/de/bwaldvogel/base91/Base91.java
 package hivemall.utils.codec;
 
 import hivemall.utils.io.FastByteArrayOutputStream;

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/f51a6437/core/src/main/java/hivemall/utils/math/FastMath.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/hivemall/utils/math/FastMath.java b/core/src/main/java/hivemall/utils/math/FastMath.java
index 1486c48..09f7a16 100644
--- a/core/src/main/java/hivemall/utils/math/FastMath.java
+++ b/core/src/main/java/hivemall/utils/math/FastMath.java
@@ -25,6 +25,8 @@
  * is preserved.
  * =============================================================================
  */
+// This file contains a modified version of Jafama's FastMath:
+// https://github.com/jeffhain/jafama/blob/master/src/main/java/net/jafama/FastMath.java
 package hivemall.utils.math;
 
 import hivemall.annotations.Experimental;


[2/2] incubator-hivemall git commit: Reverted to include copyrights in NOTICE for binary/jar distribution

Posted by my...@apache.org.
Reverted to include copyrights in NOTICE for binary/jar distribution


Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/ef0fe106
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/ef0fe106
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/ef0fe106

Branch: refs/heads/v0.5.0
Commit: ef0fe106464848e3daa560ac5f9613162827968c
Parents: f51a643
Author: Makoto Yui <my...@apache.org>
Authored: Fri Feb 9 16:37:37 2018 +0900
Committer: Makoto Yui <my...@apache.org>
Committed: Fri Feb 9 16:37:37 2018 +0900

----------------------------------------------------------------------
 NOTICE | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/ef0fe106/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
index a89a954..1d10ebe 100644
--- a/NOTICE
+++ b/NOTICE
@@ -10,3 +10,10 @@ AIST and Treasure Data, Inc.
 * Copyright 2013-2015 National Institute of Advanced Industrial Science and Technology (AIST)
 * Copyright 2015-2016 Makoto Yui
 * Copyright 2015-2016 Treasure Data, Inc.
+
+This software contains code derived from the following projects:
+
+* Copyright 2010 Haifeng Li
+* Copyright 2000-2006 Joachim Henke
+* Copyright 2012-2015 Jeff Hain
+* Copyright 1993 Sun Microsystems, Inc.