File size: 1,900 Bytes
24a40c5
d4e4bd3
24a40c5
d28ce4c
4b8f8c0
d4e4bd3
 
 
4b8f8c0
d4e4bd3
4b8f8c0
24a40c5
 
4b8f8c0
24a40c5
d4e4bd3
24a40c5
4b8f8c0
d4e4bd3
 
 
 
 
 
4b8f8c0
 
24a40c5
 
d4e4bd3
 
 
24a40c5
d4e4bd3
 
 
24a40c5
d4e4bd3
 
4b8f8c0
 
 
24a40c5
 
 
d4e4bd3
24a40c5
d4e4bd3
24a40c5
d4e4bd3
24a40c5
d4e4bd3
 
 
24a40c5
d4e4bd3
24a40c5
d4e4bd3
24a40c5
d4e4bd3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
language: en
license: mit
tags:
- text-generation
- question-answering
- sentence-similarity
- text-classification
- need-ai
base_model: unitary/toxic-bert
pipeline_tag: text-classification
---

# NEED AI - Content Moderation

BERT model for detecting toxic and inappropriate content in user messages and reviews.

## Model Details

- **Base Model**: unitary/toxic-bert
- **Task**: Text Classification
- **Fine-tuned for**: NEED Service Marketplace Platform
- **Language**: English
- **License**: MIT

## Usage

```python
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
# or AutoModelForSequenceClassification for moderation
# or SentenceTransformer for semantic-search

model_name = "yogami9/need-content-moderation"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForSeq2SeqLM.from_pretrained(model_name)

# Example usage
input_text = "Your input here"
inputs = tokenizer(input_text, return_tensors="pt")
outputs = model.generate(**inputs)
result = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(result)
```

## Training Data

Trained on curated datasets specific to the NEED platform's service categories and user interactions.

## Limitations

- Optimized for English language
- Best performance on NEED platform-specific queries
- May require fine-tuning for other domains

## Contact

- **Organization**: NEED Service App
- **Email**: needserviceapp@gmail.com
- **GitHub**: https://github.com/Need-Service-App

## Related Models

All NEED AI models:
- [Category Recommendation](https://huggingface.co/yogami9/need-category-recommendation)
- [Chat Support](https://huggingface.co/yogami9/need-chat-support)
- [Service Description](https://huggingface.co/yogami9/need-service-description)
- [Semantic Search](https://huggingface.co/yogami9/need-semantic-search)
- [Content Moderation](https://huggingface.co/yogami9/need-content-moderation)