Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Updated python-module.md #1113

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/python-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ For more information about text classification usage of fasttext, you can refer
### Compress model files with quantization

When you want to save a supervised model file, fastText can compress it in order to have a much smaller model file by sacrificing only a little bit performance.
This compression is done with advance Vector quantization and Feature Selection algorithms to provide you the best performance by removing the features that do not benefit the performance upto the threshold. This leads to a much smaller model with less redundancies.

```py
# with the previously trained `model` object, call :
Expand Down