https://github.com/slimevr/bingus-search
A website to provide FAQ support for SlimeVR
https://github.com/slimevr/bingus-search
Last synced: 8 months ago
JSON representation
A website to provide FAQ support for SlimeVR
- Host: GitHub
- URL: https://github.com/slimevr/bingus-search
- Owner: SlimeVR
- License: mit
- Created: 2022-06-09T18:32:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-10-23T19:29:40.000Z (8 months ago)
- Last Synced: 2025-10-23T21:25:28.389Z (8 months ago)
- Language: C#
- Homepage: https://bingus.bscotch.ca/
- Size: 6.69 MB
- Stars: 5
- Watchers: 6
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bingus
## Recommended Models
-
-
## Compiling ONNX Runtime Extensions
- Link:
- Reference:
To compile ONNX Runtime Extensions, run the following commands:
```bash
git clone --recurse-submodules https://github.com/microsoft/onnxruntime-extensions.git
cd onnxruntime-extensions
```
### For Windows
```cmd
rem Run the provided build script for Windows
build.bat
```
### For Linux
```bash
# Run the provided build script for Linux
bash ./build.sh
```
The output file will be quite large (100+ MB), so to reduce the size, you can strip all debug information with this command:
```bash
strip --strip-all libortextensions.so
```
## Converting TensorFlow model to ONNX model
- Link:
To convert the TensorFlow model to an ONNX model, you will need to have the ONNX Runtime Extensions, then run the following commands:
```bash
# Install required packages
pip install -U onnx tensorflow tensorflow_text tf2onnx
# Convert the model
python -m tf2onnx.convert --saved-model ./models/tensorflow/use_l_v5/ --output ./models/onnx/use_l_v5.onnx --load_op_libraries libortextensions.so --opset 17 --extra_opset ai.onnx.contrib:1
```