File size: 609 Bytes
b5db07c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language: "en"
library_name: "transformers"
pipeline_tag: "text2text-generation"
base_model: "google/flan-t5-base"
license: "apache-2.0"
tags:
- text2text
- property
- query-parser
---

# 🏠 Property Query Parser

This model helps extract structured information (like BHK, location, and possession date) from natural language property queries.

Example usage:

```python
from transformers import pipeline

pipe = pipeline("text2text-generation", model="baarish/property-query-parser")

query = "Show me 2BHK flats in Pune with possession in 2025"
result = pipe(query)
print(result[0]['generated_text'])