File tree Expand file tree Collapse file tree 3 files changed +48
-3
lines changed
src/main/java/org/lightgbm/predict4j/v2 Expand file tree Collapse file tree 3 files changed +48
-3
lines changed Original file line number Diff line number Diff line change 22.classpath
33.project
44/.settings /
5+ .idea /
6+ * .iml
57
68# Mobile Tools for Java (J2ME)
79.mtj.tmp /
Original file line number Diff line number Diff line change 1212 <name >lightgbm_predict4j</name >
1313 <url >http://maven.apache.org</url >
1414
15+ <properties >
16+ <!-- github server corresponds to entry in ~/.m2/settings.xml -->
17+ <github .global.server>github</github .global.server>
18+ </properties >
19+
20+ <distributionManagement >
21+ <repository >
22+ <id >internal.repo</id >
23+ <name >Temporary Staging Repository</name >
24+ <url >file://${project.build.directory} /mvn-repo</url >
25+ </repository >
26+ </distributionManagement >
27+
1528 <dependencies >
1629 <dependency >
1730 <groupId >commons-io</groupId >
8093 <target >1.7</target >
8194 </configuration >
8295 </plugin >
83- </plugins >
84- </build >
96+ <plugin >
97+ <artifactId >maven-deploy-plugin</artifactId >
98+ <version >2.8.1</version >
99+ <configuration >
100+ <altDeploymentRepository >internal.repo::default::file://${project.build.directory} /mvn-repo</altDeploymentRepository >
101+ </configuration >
102+ </plugin >
103+ <plugin >
104+ <groupId >com.github.github</groupId >
105+ <artifactId >site-maven-plugin</artifactId >
106+ <version >0.11</version >
107+ <configuration >
108+ <message >Maven artifacts for ${project.version} </message > <!-- git commit message -->
109+ <noJekyll >true</noJekyll > <!-- disable webpage processing -->
110+ <outputDirectory >${project.build.directory} /mvn-repo</outputDirectory > <!-- matches distribution management repository url above -->
111+ <branch >refs/heads/mvn-repo</branch > <!-- remote branch name -->
112+ <includes ><include >**/*</include ></includes >
113+ <repositoryName >lightgbm_predict4j</repositoryName > <!-- github repo name -->
114+ <repositoryOwner >benman1</repositoryOwner > <!-- github username -->
115+ </configuration >
116+ <executions >
117+ <!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase -->
118+ <execution >
119+ <goals >
120+ <goal >site</goal >
121+ </goals >
122+ <phase >deploy</phase >
123+ </execution >
124+ </executions >
125+ </plugin >
126+ </plugins >
127+ </build >
85128
86129</project >
Original file line number Diff line number Diff line change 55 */
66public class CategoricalDecision <T extends Comparable <T >> extends Decision <T > {
77 boolean decision (T fval , T threshold ) {
8- if (( int ) fval == ( int ) threshold ) {
8+ if (Integer . parseInt ( fval . toString ()) == Integer . parseInt ( threshold . toString ()) ) {
99 return true ;
1010 } else {
1111 return false ;
You can’t perform that action at this time.
0 commit comments