diff options
author | Ssslakter <67190162+Ssslakter@users.noreply.github.com> | 2023-09-11 02:36:29 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-10 20:36:29 +0100 |
commit | 18d6db2180800dcc134ffabe8523a774c6a7f9a3 (patch) | |
tree | 652827956e2d68b8e8b6b97db7c4eacb2c6fdb1d /candle-book/src/inference/inference.md | |
parent | 4f18180fc7564b9a02cab13c4acda0ac7b17a799 (diff) | |
download | candle-18d6db2180800dcc134ffabe8523a774c6a7f9a3.tar.gz candle-18d6db2180800dcc134ffabe8523a774c6a7f9a3.tar.bz2 candle-18d6db2180800dcc134ffabe8523a774c6a7f9a3.zip |
more doc fixes (#804)
Diffstat (limited to 'candle-book/src/inference/inference.md')
-rw-r--r-- | candle-book/src/inference/inference.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/candle-book/src/inference/inference.md b/candle-book/src/inference/inference.md new file mode 100644 index 00000000..1b75a310 --- /dev/null +++ b/candle-book/src/inference/inference.md @@ -0,0 +1,7 @@ +# Running a model + + +In order to run an existing model, you will need to download and use existing weights. +Most models are already available on https://huggingface.co/ in [`safetensors`](https://github.com/huggingface/safetensors) format. + +Let's get started by running an old model : `bert-base-uncased`. |