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