Update app.py
Browse files
app.py
CHANGED
@@ -41,7 +41,7 @@ def parse_postal_address_can(text):
|
|
41 |
for result in results:
|
42 |
data.append({
|
43 |
'entity_group': result['entity_group'],
|
44 |
-
'score':
|
45 |
'word': result['word'],
|
46 |
'start': result['start'],
|
47 |
'end': result['end']
|
|
|
41 |
for result in results:
|
42 |
data.append({
|
43 |
'entity_group': result['entity_group'],
|
44 |
+
'score': f"{result['score']:.2f}",
|
45 |
'word': result['word'],
|
46 |
'start': result['start'],
|
47 |
'end': result['end']
|