Spaces:
Sleeping
Sleeping
File size: 4,559 Bytes
2aa1223 94fe467 685adca 94fe467 685adca 94fe467 | 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | ---
title: Data Cleaning Env
emoji: π§Ή
colorFrom: blue
colorTo: green
sdk: docker
app_file: app.py
pinned: false
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
# π§ AI-Powered Data Cleaning Environment (OpenEnv)
## π Overview
This project implements an **AI-driven data cleaning environment** following the OpenEnv specification.
An LLM-based agent interacts with the environment step-by-step and performs data cleaning actions to improve dataset quality.
The system evaluates:
- Decision-making ability of AI
- Data cleaning strategies
- Efficiency (steps vs quality)
---
## π― Objective
To build an environment where an AI agent can:
- Detect data issues
- Apply cleaning actions
- Maximize final data quality score
---
## βοΈ Environment Design
### πΉ Observation Space
Each step returns:
```json
{
"dataset": {...},
"shape": [rows, columns],
"steps": n
}
```
- `dataset`: current dataset state
- `shape`: dimensions
- `steps`: steps taken so far
### πΉ Action Space
Agent can perform:
| Action | Description |
|--------|-------------|
| `fill_nulls` | Fill missing values |
| `remove_nulls` | Remove rows with nulls |
| `deduplicate` | Remove duplicate rows |
| `convert_types` | Fix incorrect data types |
| `trim_whitespace` | Clean text formatting |
| `normalize` | Normalize numeric columns |
| `inspect_column` | Analyze a column |
**Action Format:**
```json
{
"type": "action_name",
"column": "column_name"
}
```
### πΉ Reward System
- Positive reward β correct cleaning
- Negative reward β unnecessary/wrong action
**Example:**
- Fill nulls β `+0.12`
- Wrong removal β `-0.08`
### πΉ Episode Termination
Episode ends when:
- `done = True` OR
- max steps reached
Final score is computed using:
```
score β [0, 1]
```
---
## π§ͺ Tasks
### β
Task 1: Basic Cleaning
- Handle null values
- Remove duplicates
- Fix data types
### β
Task 2: Intermediate Cleaning
- Better decision strategies
- Column-wise reasoning
### β
Task 3: Full Pipeline
- Complete dataset cleaning
- Optimal sequence of actions
---
## π€ AI Agent (Inference)
The agent uses an LLM to:
1. Analyze dataset summary
2. Choose next action
3. Avoid repeating actions
4. Improve data quality iteratively
### πΉ Strategy Used
Instead of sending full dataset, we send:
- Column statistics (null %, dtype, unique values)
- Duplicate count
- Sample rows
- Action history
π This improves reasoning and reduces noise.
---
## π Baseline Performance
| Task | Score |
|------|-------|
| Task 1 | ~0.70 |
| Task 2 | ~0.75 |
| Task 3 | ~0.80 |
---
## π Setup Instructions
### 1οΈβ£ Clone Repository
```bash
git clone <repo-url>
cd data-cleaning-env
```
### 2οΈβ£ Install Dependencies
```bash
pip install -r requirements.txt
```
### 3οΈβ£ Set Environment Variables
**Windows (PowerShell):**
```powershell
setx HF_TOKEN "your_token_here"
setx MODEL_NAME "Qwen/Qwen2.5-72B-Instruct"
setx API_BASE_URL "https://router.huggingface.co/v1"
```
**Linux/Mac:**
```bash
export HF_TOKEN="your_token_here"
export MODEL_NAME="Qwen/Qwen2.5-72B-Instruct"
export API_BASE_URL="https://router.huggingface.co/v1"
```
### 4οΈβ£ Run Inference
```bash
python inference.py
```
---
## π‘ API Endpoints
### πΉ Reset
```
POST /reset
```
### πΉ Step
```
POST /step
```
**Example:**
```json
{
"type": "fill_nulls",
"column": "city"
}
```
### πΉ State
```
GET /state
```
---
## π³ Docker Setup
**Build:**
```bash
docker build -t data-cleaning-env .
```
**Run:**
```bash
docker run -p 7860:7860 data-cleaning-env
```
---
## π Hugging Face Deployment
1. Create Space β Docker
2. Push code
3. Add environment variables:
- `HF_TOKEN`
- `MODEL_NAME`
- `API_BASE_URL`
---
## β
Validation
```bash
openenv validate
```
```bash
bash validate-submission.sh <your-space-url>
```
---
## π Project Structure
```
.
βββ app.py
βββ inference.py
βββ Dockerfile
βββ requirements.txt
βββ README.md
βββ env/
βββ environment.py
βββ actions.py
βββ data_generator.py
βββ issue_injector.py
βββ graders/
```
---
## β οΈ Constraints
- Runtime < 20 minutes
- Compatible with:
- 2 vCPU
- 8GB RAM
- Must follow OpenEnv spec
---
## π Conclusion
This project demonstrates:
- AI-based decision making
- Reinforcement-style environment
- Automated data cleaning
---
## π©βπ» Authors
- Tanushree Gupta
- Disha Singla |