Instructions to use prelington/OrcaleSeek with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- fastText
How to use prelington/OrcaleSeek with fastText:
from huggingface_hub import hf_hub_download import fasttext model = fasttext.load_model(hf_hub_download("prelington/OrcaleSeek", "model.bin")) - Notebooks
- Google Colab
- Kaggle
| echo "π Deploying OrcaleSeek..." | |
| # Build Docker image | |
| docker build -t orcale-seek . | |
| # Run with GPU support | |
| docker run -d \ | |
| --gpus all \ | |
| -p 8000:8000 \ | |
| --name orcale-seek-container \ | |
| orcale-seek | |
| echo "β OrcaleSeek deployed successfully!" | |
| echo "π API available at: http://localhost:8000" | |
| echo "π Docs at: http://localhost:8000/docs" |