(p: Point)
| 190 | export function classifyXORData(numSamples: number, noise: number): |
| 191 | Example2D[] { |
| 192 | function getXORLabel(p: Point) { return p.x * p.y >= 0 ? 1 : -1; } |
| 193 | |
| 194 | let points: Example2D[] = []; |
| 195 | for (let i = 0; i < numSamples; i++) { |
no outgoing calls
no test coverage detected
searching dependent graphs…