Instructions to use arxtifix/Dummymodel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use arxtifix/Dummymodel with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("arxtifix/Dummymodel", device_map="auto") - Notebooks
- Google Colab
- Kaggle
| set -e | |
| function download_object_from_bucket() { | |
| local response | |
| response=$(aws --debug s3 cp \ | |
| "$LLM_BUCKET" \ | |
| "$LOCAL_PATH" \ | |
| --recursive \ | |
| --endpoint-url $AWS_ENDPOINT_URL \ | |
| --region $AWS_DEFAULT_REGION) | |
| } | |
| download_object_from_bucket |