Instructions to use warhawkmonk/text_image_prompt_classification_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use warhawkmonk/text_image_prompt_classification_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="warhawkmonk/text_image_prompt_classification_model")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("warhawkmonk/text_image_prompt_classification_model") model = AutoModelForSequenceClassification.from_pretrained("warhawkmonk/text_image_prompt_classification_model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="warhawkmonk/text_image_prompt_classification_model")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("warhawkmonk/text_image_prompt_classification_model")
model = AutoModelForSequenceClassification.from_pretrained("warhawkmonk/text_image_prompt_classification_model", device_map="auto")- Model Card for Model ID
- Model Details
- Uses
- Bias, Risks, and Limitations
- How to Get Started with the Model
- Training Details
- Evaluation
- Model Examination [optional]
- Environmental Impact
- Technical Specifications [optional]
- Citation [optional]
- Glossary [optional]
- More Information [optional]
- Model Card Authors [optional]
- Model Card Contact
Model Card for Model ID
Model Details
Model Description
This model is specifically designed to identify whether a user is requesting text or image generation via prompts in a large language model. It leverages advanced techniques to interpret complex inputs and accurately determine the user's intent.
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
- Developed by: warhawkmonk
- Funded by [optional]: warhawkmonk
- Shared by [optional]: warhawkmonk
- Model type: Text classification
- Language(s) (NLP): English
- License: MIT
- Finetuned from model [optional]: allenai/longformer-base-4096
Model Sources [optional]
Repository: Repo
Paper [optional]: [More Information Needed]
Demo [optional]: [More Information Needed]
Uses
Direct Use
[More Information Needed]
Downstream Use [optional]
[More Information Needed]
Out-of-Scope Use
[More Information Needed]
Bias, Risks, and Limitations
[More Information Needed]
Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
How to Get Started with the Model
Use the code below to get started with the model.
from transformers import pipeline
classifier = pipeline("text-classification", model = "warhawkmonk/text_image_prompt_classification_model")
print(classifier("show me photo of a forest"))
[More Information Needed]
Training Details
Training Data
[More Information Needed]
Training Procedure
Preprocessing [optional]
[More Information Needed]
Training Hyperparameters
- Training regime: [More Information Needed]
Speeds, Sizes, Times [optional]
[More Information Needed]
Evaluation
The following are the evaluation results for the model after training:
| Metric | Value |
|---|---|
| Evaluation Loss | 0.034379348158836365 |
| Evaluation Accuracy | 99.02% |
| F1 Score | 0.9901913554707941 |
| Precision | 0.9903776325344953 |
| Recall | 0.9901960784313726 |
| Evaluation Runtime | 8.6552 seconds |
| Samples per Second | 23.57 |
| Steps per Second | 5.892 |
Testing Data, Factors & Metrics
Testing Data
[More Information Needed]
Factors
[More Information Needed]
Metrics
[More Information Needed]
Results
[More Information Needed]
Summary
Model Examination [optional]
[More Information Needed]
Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type: rtx-4060 ti
- Hours used: 5 hr
- Cloud Provider: Na
- Compute Region: [More Information Needed]
- Carbon Emitted: [More Information Needed]
Technical Specifications [optional]
Model Architecture and Objective
[More Information Needed]
Compute Infrastructure
[More Information Needed]
Hardware
[More Information Needed]
Software
[More Information Needed]
Citation [optional]
BibTeX:
[More Information Needed]
APA:
[More Information Needed]
Glossary [optional]
[More Information Needed]
More Information [optional]
[More Information Needed]
Model Card Authors [optional]
[More Information Needed]
Model Card Contact
[More Information Needed]
- Downloads last month
- -
Model tree for warhawkmonk/text_image_prompt_classification_model
Base model
allenai/longformer-base-4096
# Gated model: Login with a HF token with gated access permission hf auth login