Instructions to use alimazhar-110/website_classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use alimazhar-110/website_classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="alimazhar-110/website_classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("alimazhar-110/website_classification") model = AutoModelForSequenceClassification.from_pretrained("alimazhar-110/website_classification", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
Browse filesThis is a pull request to add `distilbert-base-uncased` as a `base_model` field to the metadata for your model (defined in the `YAML` block of your model's `README.md`).
This information was found in the model card by doing a regular expression match on your model's `README.md` file.
Adding this information to your models makes it easier to discover the links between different models on the Hugging Face Hub and to see the impact models are having on the community.
You can checkout [librarian-bots/base_model_explorer](https://huggingface.co/spaces/librarian-bots/base_model_explorer) for an example of how this sort of metadata can be used to explore the relationships between models on the Hub.
This PR was made by Librarian Bot. Feel free to get in touch with [@davanstrien](https://huggingface.co/davanstrien) with feedback or questions.
|
@@ -7,6 +7,7 @@ metrics:
|
|
| 7 |
- f1
|
| 8 |
- precision
|
| 9 |
- recall
|
|
|
|
| 10 |
model-index:
|
| 11 |
- name: website_classification
|
| 12 |
results: []
|
|
|
|
| 7 |
- f1
|
| 8 |
- precision
|
| 9 |
- recall
|
| 10 |
+
base_model: distilbert-base-uncased
|
| 11 |
model-index:
|
| 12 |
- name: website_classification
|
| 13 |
results: []
|