perceptron Questions

4

Solved

Here is my perceptron implementation in ANSI C: #include <stdio.h> #include <stdlib.h> #include <math.h> float randomFloat() { srand(time(NULL)); float r = (float)rand() / (fl...
Moonraker asked 8/11, 2009 at 17:25

3

Solved

Let's say I have a small bitmap which contains a single digit (0..9) in hand writing. Is it possible to detect the digit using a (two-layered) perceptron? Are there other possibilities to detect ...

© 2022 - 2024 — McMap. All rights reserved.