Instructions to use Canstralian/RabbitRedux with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Canstralian/RabbitRedux with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Canstralian/RabbitRedux", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 131 Bytes
1e2aaa2 | 1 2 3 4 5 6 7 8 | import logging
def setup_logging():
"""
Set up logging configuration.
"""
logging.basicConfig(level=logging.INFO)
|