Update README.md
Browse files
README.md
CHANGED
@@ -72,7 +72,8 @@ examples = [
|
|
72 |
]
|
73 |
|
74 |
for org in examples:
|
75 |
-
|
|
|
76 |
print(f"{org} → {org_type} (confidence: {confidence:.3f})")
|
77 |
```
|
78 |
|
|
|
72 |
]
|
73 |
|
74 |
for org in examples:
|
75 |
+
# It is recommended to convert the organization name to UPPERCASE since this is the most frequent format in EU DBs.
|
76 |
+
org_type, confidence = classify_organization(org.upper())
|
77 |
print(f"{org} → {org_type} (confidence: {confidence:.3f})")
|
78 |
```
|
79 |
|