Changes between Initial Version and Version 1 of Ticket #1913, comment 24
- Timestamp:
- 12/05/12 15:20:18 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1913, comment 24
initial v1 1 1 Further comments from reviewing the NcaInitializers: 2 2 * In `LdaInitializer` line 47: this is effectively equivalent to PrepareInputMatrix()... use the existing method instead (also in the other PcaInitializer). 3 * `RandomInitializer` line 76: 4 `matrix[i] = random.NextDouble() / range[i / dimensions];` 5 isn't `i / dimensions` always zero since both are ints? 3 ~~ * `RandomInitializer` line 76: `matrix[i] = random.NextDouble() / range[i / dimensions];` isn't `i / dimensions` always zero since both are ints?~~ 6 4