File size: 1,891 Bytes
fccbf45 c742c79 fccbf45 5e7f738 5df858d c742c79 5df858d c742c79 5df858d fccbf45 5df858d fccbf45 c742c79 fccbf45 5df858d c742c79 5df858d fccbf45 c742c79 fccbf45 c742c79 fccbf45 c742c79 5df858d fccbf45 c742c79 fccbf45 c742c79 fccbf45 c742c79 fccbf45 c742c79 fccbf45 c742c79 fccbf45 c742c79 fccbf45 c742c79 | 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: google/flan-t5-base
pipeline_tag: text2text-generation
---
# NEED AI - Chat Support
Fine-tuned T5 model for answering customer support questions about the NEED platform.
## Model Details
- **Base Model**: google/flan-t5-base
- **Task**: Text2Text Generation
- **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-chat-support"
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)
|