Github user takuti commented on the issue:
https://github.com/apache/incubator-hivemall/pull/71
@myui Thanks! Are you planning to push [your revise
branch](https://github.com/myui/incubator-hivemall/tree/HIVEMALL-74) to master?
Or, can I cherry-pick them and start making additional effort on my own?
For normalization, limitation of floating point numbers?
```java
float[] ary = new float[] {0.99999f, 1e-32f};
System.out.println("Original: " + ary[0] + " " + ary[1]);
double sum = 0.d;
for (int i = 0; i < 2; i++) {
sum += ary[i];
}
for (int i = 0; i < 2; i++) {
ary[i] /= sum;
}
System.out.println("Normalized: " + ary[0] + " " + ary[1]);
```
```
Original: 0.99999 1.0E-32
Normalized: 1.0 1.00001E-32
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---