Instructions to use zguo0525/myshell_nsfw_filter with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zguo0525/myshell_nsfw_filter with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="zguo0525/myshell_nsfw_filter") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("zguo0525/myshell_nsfw_filter") model = AutoModelForImageClassification.from_pretrained("zguo0525/myshell_nsfw_filter") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,14 +1,3 @@
|
|
| 1 |
-
# `myshell_nsfw_filter` Image Classification with Hugging Face Transformers
|
| 2 |
-
|
| 3 |
-
This README demonstrates how to use the `myshell_nsfw_filter` model hosted on Hugging Face for image classification.
|
| 4 |
-
|
| 5 |
-
## Prerequisites
|
| 6 |
-
|
| 7 |
-
1. Install the required Python packages:
|
| 8 |
-
```bash
|
| 9 |
-
pip install transformers requests Pillow
|
| 10 |
-
```
|
| 11 |
-
|
| 12 |
## Example Usage
|
| 13 |
|
| 14 |
Here's a step-by-step Python code example to classify an image:
|
|
@@ -34,12 +23,4 @@ results = pipe(image)
|
|
| 34 |
label = results[0]['label']
|
| 35 |
score = results[0]['score']
|
| 36 |
print(f"{label}: {score:.4f}")
|
| 37 |
-
```
|
| 38 |
-
|
| 39 |
-
## Conclusion
|
| 40 |
-
|
| 41 |
-
Using the Hugging Face Transformers library, it's straightforward to load and classify images with the `myshell_nsfw_filter` model. This README showcased a simple example, and you can easily adapt it for your own images or applications!
|
| 42 |
-
|
| 43 |
-
---
|
| 44 |
-
|
| 45 |
-
You can use this content for the README.md file in your repository. This provides a clear introduction and step-by-step guidance for users looking to leverage your model.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
## Example Usage
|
| 2 |
|
| 3 |
Here's a step-by-step Python code example to classify an image:
|
|
|
|
| 23 |
label = results[0]['label']
|
| 24 |
score = results[0]['score']
|
| 25 |
print(f"{label}: {score:.4f}")
|
| 26 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|