ONNX Runtime: cross-platform, high performance ML inferencing and training accelerator
Find a file
Jordan 126c35b202
Update quantization preprocessing command in docs (#18146)
Command was split from `shape_inference.py` to address import sequence
warnings in 8004db4bf1 and was not
updated.

Anyone following the docs prior to this change would have encountered;

```
root@Raze:~# python -m onnxruntime.quantization.shape_inference --help
/usr/lib/python3.10/runpy.py:126: RuntimeWarning: 'onnxruntime.quantization.shape_inference' found in sys.modules after import of package 'onnxruntime.quantization', but prior to execution of 'onnxruntime.quantization.shape_inference'; this may result in unpredictable behaviour
  warn(RuntimeWarning(msg))
```

Instead of the expected;

```
root@Raze:~# ./onnxtesting/bin/python -m onnxruntime.quantization.preprocess --help
usage: preprocess.py [-h] --input INPUT --output OUTPUT [--skip_optimization SKIP_OPTIMIZATION] [--skip_onnx_shape SKIP_ONNX_SHAPE]
                     [--skip_symbolic_shape SKIP_SYMBOLIC_SHAPE] [--auto_merge] [--int_max INT_MAX] [--guess_output_rank]
                     [--verbose VERBOSE] [--save_as_external_data] [--all_tensors_to_one_file]
                     [--external_data_location EXTERNAL_DATA_LOCATION]
                     [--external_data_size_threshold EXTERNAL_DATA_SIZE_THRESHOLD]

Model optimizer and shape inferencer[continues]
```
2023-10-30 09:12:34 -07:00
.github/workflows Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
_sass Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
css Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
docs Update quantization preprocessing command in docs (#18146) 2023-10-30 09:12:34 -07:00
fonts Remove google links from the pages (#6974) 2021-03-12 11:33:49 -08:00
images Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
js Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
src Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
static Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
.eslintignore Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
.eslintrc.cjs Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
.gitignore Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
.npmrc Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
.prettierignore Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
.prettierrc Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
_config.yml Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
CNAME Update CNAME 2021-08-02 21:15:29 -07:00
favicon.ico Migrate content from GitHub source to GitHub pages (#5053) 2020-10-12 10:28:20 -07:00
Gemfile Update gems so local build works for CheckLinks (#10868) 2022-03-15 09:41:55 -07:00
Gemfile.lock Update gems so local build works for CheckLinks (#10868) 2022-03-15 09:41:55 -07:00
googlee249f93c137f3996.html Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
package.json Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
postcss.config.js Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
README.md Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
svelte.config.js Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
tailwind.config.js Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
tsconfig.json Website revamp final (#17638) 2023-10-27 17:26:41 -07:00
vite.config.ts Website revamp final (#17638) 2023-10-27 17:26:41 -07:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.