This commit is contained in:
gurkenhabicht 2018-05-21 02:52:51 +02:00
parent 22834a65a5
commit 6bceae3f8a
2 changed files with 3 additions and 2 deletions

View File

@ -23,13 +23,13 @@ Use `$ ./lms -h` for help.
There are a bunch of options you can predefine but do not have to. The only parameter needed is __-i__ which is the inputfile.
| Parameter | Description | StdVal |
|----------:|:-----------------------------:|:-------|
|----------:|------------------------------:|:-------|
| -i | The inputfile, has to be PPM | none |
| -n | Amount of input data used | 500 |
| -w | Size of M (window) | 5 |
| -c | Choose RGB color channel, green has least noise. | green |
| -l | Learnrate of machine learning | 0.4 |
| -x | Exclude graph building Logfiles only, choose for insane amount of input data. 10Mio. Pixels tested so far.| none|
| -x | Exclude graph building. Logfiles only, choose for insane amount of input data. 10Mio. Pixels tested so far.| none|
| -s | Seed randomizing weights. Choose for repoducability. | time(NULL)|
This code is ANSI compatible no POSIX, C99, C11 or GNU libs, because it had to be VS compatible . There are way easier methods like getline() or getopt(), I know ...

View File

@ -28,5 +28,6 @@ There are a bunch of options you can predefine but do not have to. The only para
| -w | Size of M (window) | 5 |
| -c | Choose RGB color channel, green has least noise. | green |
| -l | Learnrate of machine learning | 0.4 |
| -x | Exclude graph building. Logfiles only, choose for insane amount of input data. 10Mio. Pixels tested so far.| none|
| -s | Seed randomizing weights. Choose for repoducability. | time(NULL)|