onnxruntime/js/web/lib/onnxjs/ort-schema
Christian Veenhuis 59dfcfdce7
Fix typos in sources: operater, tranform, neccessary, trainig (#14907)
### Description
While browsing the sources I found several typos here and there.
I collected them to a single PR and fixed them.
Namely these typos are: operater, tranform, neccessary, trainig.
After fixing none of them was found anymore:

$ git grep "operater"
$ git grep "tranform"
$ git grep "neccessary"
$ git grep "trainig"
$ 

### Motivation and Context
Since some of the typos are in example notebooks and markdown files,
users can see them.
2023-03-13 22:45:04 -07:00
..
ort-generated.ts
README.md Fix typos in sources: operater, tranform, neccessary, trainig (#14907) 2023-03-13 22:45:04 -07:00

ORT Format File

This directory contains the generated ts file necessary to support the ORT file format. The file is generated from the ORT file format schema. Please do not directly modify the generated ts header file.

The ORT file format schema uses FlatBuffers serialization library. To update its generated ts file,

  1. Download or locate the ort.fbs file.
  2. Download FlatBuffers compiler: Download the latest flatc tool (flatc_windows.zip) from Flatbuffers Release Page. Unzip and run

> flatc_windows.exe --ts <path to ort.fbs>

This should result in ort-generated.ts being updated.