Skip to content

Commit f5bff87

Browse files
committed
cosmetic
1 parent dc90ab0 commit f5bff87

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

results/Readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ I usually find that I present data to the model in blocks, which usually contain
66
#Using from training code
77
Two functions are provided which are called by the training routine:
88

9-
### `results.startRun`
9+
#### `results.startRun`
1010
This is called before any training, and stores information about the run for future reference. It also creates the database file (by default `results.sqlite`) if it doesn't exist.
1111

1212
The supplied information I store for each run are pretty much the arguments of this function and the columns of the table RUNS. Exception: `callerFilePath` is a list of filenames whose contents we store - e.g. the code. I use the nonemptiness of `continuation` to indicate that the model was not trained from scratch, but from the saved weights of the previous run. `architecture` and `solver` are basically assumed in diffRuns and describeRun to be long JSON strings. You can change any of this.
1313

14-
### `results.step`
14+
#### `results.step`
1515
This stores the reported training and test objective and accuracy from each step of training.
1616
These are stored in the STEPS table.
1717
The time for the first 10 steps is remembered in the steps table.
@@ -35,6 +35,7 @@ The following functions are easy to use analysis functions.
3535
* `r.steps(x)` prints a table of all the steps
3636
* `r.lastSteps()` prints a table of all the steps of the latest (e.g. current) run
3737
* `r.l()` is a very small summary of whether the latest (e.g. current) run is making progress.
38+
3839
It can be desirable to take moving averages of the accuracy and error. Only `runList2` does this by default.
3940

4041
At the moment whether to draw graphs on screen or to file is determined by the `oncampus` module in this repo. This will want modifying for other users, as well as the file location used (in `pushplot`).

0 commit comments

Comments
 (0)