Spaces:
Sleeping
Sleeping
Commit
·
82589e9
1
Parent(s):
5ec20ad
Update main.py
Browse files
main.py
CHANGED
@@ -131,11 +131,11 @@ def process_multiple_address(addresses):
|
|
131 |
async def predict(address_input: str):
|
132 |
|
133 |
address_input_split = address_input.split(';')
|
134 |
-
results = process_multiple_address(address_input_split)
|
135 |
-
results = pd.concat(results).reset_index(drop=1)
|
136 |
-
prediction = results[['Address Input', 'Address Output', 'Match Percent', 'Website', 'Square Footage', 'Beds', 'Baths', 'Year Built',
|
137 |
-
|
138 |
-
return
|
139 |
|
140 |
|
141 |
|
|
|
131 |
async def predict(address_input: str):
|
132 |
|
133 |
address_input_split = address_input.split(';')
|
134 |
+
# results = process_multiple_address(address_input_split)
|
135 |
+
# results = pd.concat(results).reset_index(drop=1)
|
136 |
+
# prediction = results[['Address Input', 'Address Output', 'Match Percent', 'Website', 'Square Footage', 'Beds', 'Baths', 'Year Built',
|
137 |
+
# 'Link', 'Google Search Result', 'Description']]
|
138 |
+
return address_input_split
|
139 |
|
140 |
|
141 |
|