Move the docs folder one above, it was in src by mistake.

This commit is contained in:
Tomasz Sobczyk
2020-10-09 10:16:02 +02:00
committed by nodchip
parent ef57ac78a3
commit 2af4bf7eac
4 changed files with 0 additions and 0 deletions

15
docs/convert.md Normal file
View File

@@ -0,0 +1,15 @@
# Convert
`convert` allows conversion of training data between any of `.plain`, `.bin`, and `.binpack`.
As all commands in stockfish `convert` can be invoked either from command line (as `stockfish.exe convert ...`) or in the interactive prompt.
The syntax of this command is as follows:
```
convert from_path to_path [append]
```
`from_path` is the path to the file to convert from. The type of the data is deduced based on its extension (one of `.plain`, `.bin`, `.binpack`).
`to_path` is the path to an output file. The type of the data is deduced from its extension. If the file does not exist it is created.
The last argument is optional. If not specified then the output file will be truncated prior to any writes. If the last argument is `append` then the converted training data will be appended to the end of the output file.