mirror of
https://github.com/twitter/the-algorithm.git
synced 2025-06-11 23:28:29 -05:00

Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
11 lines
532 B
Bash
11 lines
532 B
Bash
#!/bin/sh
|
|
#RUST_LOG=debug LD_LIBRARY_PATH=so/onnx/lib target/release/navi_onnx --port 30 --num-worker-threads 8 --intra-op-parallelism 8 --inter-op-parallelism 8 \
|
|
RUST_LOG=info LD_LIBRARY_PATH=so/onnx/lib cargo run --bin navi_onnx --features onnx -- \
|
|
--port 30 --num-worker-threads 8 --intra-op-parallelism 8 --inter-op-parallelism 8 \
|
|
--model-check-interval-secs 30 \
|
|
--model-dir models/int8 \
|
|
--output caligrated_probabilities \
|
|
--input "" \
|
|
--modelsync-cli "echo" \
|
|
--onnx-ep-options use_arena=true
|