Convert and PR models to Safetensors
Train a model using custom data
Convert a model to Safetensors and open a PR
Count tokens in datasets and plot distribution
Explore and edit JSON datasets
Search and find similar datasets
Validate JSONL format for fine-tuning
Display html
Evaluate evaluators in Grounded Question Answering
Display translation benchmark results from NTREX dataset
Explore and manage datasets for machine learning
Organize and process datasets using AI
Browse and view Hugging Face datasets from a collection
Convert to Safetensors is a tool designed to convert AI models to the Safetensors format. Safetensors is a secure alternative to PyTorch's .pt files, offering enhanced security by only allowing the storage of floats and integers. This format is particularly useful for model sharing and collaboration, as it prevents potential attacks through malicious file content.
convert_to_safetensors --input /path/to/model.pt --output /path/to/model.safetensors
convert_to_safetensors --input /path/to/model.pt --output /path/to/model.safetensors --compress
Why should I use Safetensors over PyTorch's .pt files?
Safetensors provides enhanced security by restricting data types, reducing the risk of malicious content in shared models.
What formats are supported for conversion?
The tool supports conversion between PyTorch (.pt) and Safetensors (.safetensors) formats.
Can I convert a Safetensors model back to PyTorch?
Yes, the tool allows bidirectional conversion, enabling you to switch between formats as needed.