fasttext-cc.en.100.bin
1
license:mit
by
mdda-rdai
Other
OTHER
100.B params
New
0 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
1GB+ RAM
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
python
import fasttext
import fasttext.util
fasttext.util.download_model('en', if_exists='ignore')
print("Downloaded 300-D embeddings model")
ft = fasttext.load_model('cc.en.300.bin')
print(f"Current embedding dimension : {ft.get_dimension()}\n")
print(f"Reducing embedding dimension to 100-D")
fasttext.util.reduce_model(ft, 100)
print(f"Reduced embedding dimension : {ft.get_dimension()}\n")
ft.save_model('cc.en.100.bin') # Use this in the code...Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.