File size: 1,462 Bytes
a3f0452 |
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 |
---
license: apache-2.0
---
# Agentic Transformer System for Hugging Face
This repository contains the code, configurations, and scripts to create a modular AI system with multiple specialized agents for text classification, sentiment analysis, summarization, code generation, and more.
## Project Overview
This system uses a mixture of specialized agents to handle diverse tasks. Each agent is fine-tuned for its specific role and is managed by an orchestration layer that ensures smooth communication and data flow between agents.
## Models and Datasets
### Pre-trained Models
- **Text Classification Agent:** BERT Base Uncased ([Hugging Face Model](https://huggingface.co/bert-base-uncased))
- **Sentiment Analysis Agent:** RoBERTa ([Hugging Face Model](https://huggingface.co/roberta-base))
- **Summarization Agent:** BART ([Hugging Face Model](https://huggingface.co/facebook/bart-large))
- **Code Generation Agent:** CodeBERT ([Hugging Face Model](https://huggingface.co/microsoft/codebert-base))
- **Web Search Agent:** DistilBERT ([Hugging Face Model](https://huggingface.co/distilbert-base-uncased))
### Datasets
- **Training and Validation Dataset:** IMDB Movie Reviews ([Hugging Face Dataset](https://huggingface.co/datasets/imdb))
- **Evaluation Dataset:** SST-2 ([Hugging Face Dataset](https://huggingface.co/datasets/glue/viewer/sst2))
## Installation
To install the required dependencies, run:
```bash
pip install -r requirements.txt
|