mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-10 20:04:52 +00:00
Initial commit
This commit is contained in:
parent
c4422e5678
commit
ee19513cf7
@ -21,4 +21,6 @@
|
|||||||
- sections:
|
- sections:
|
||||||
- local: conceptual/streaming
|
- local: conceptual/streaming
|
||||||
title: Streaming
|
title: Streaming
|
||||||
|
- local: conceptual/safetensors
|
||||||
|
title: Safetensors
|
||||||
title: Conceptual Guides
|
title: Conceptual Guides
|
||||||
|
7
docs/source/conceptual/safetensors.md
Normal file
7
docs/source/conceptual/safetensors.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Safetensors
|
||||||
|
|
||||||
|
Safetensors is a model serialization format for deep learning models. It is [faster](https://huggingface.co/docs/safetensors/speed) and safer compared to other serialization formats like pickle (which is used under the hood in many deep learning libraries).
|
||||||
|
|
||||||
|
TGI depends on safetensors format mainly to enable [tensor parallelism sharding](./tensor_parallelism). For a given model repository during serving, TGI looks for safetensors weights. If there are no safetensors weights, TGI converts the PyTorch weights to safetensors format.
|
||||||
|
|
||||||
|
You can learn more about safetensors by reading the [safetensors documentation](https://huggingface.co/docs/safetensors/index).
|
Loading…
Reference in New Issue
Block a user