PabloAccuosto commited on
Commit
441b2fc
·
verified ·
1 Parent(s): 86cf5f7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -72,7 +72,8 @@ examples = [
72
  ]
73
 
74
  for org in examples:
75
- org_type, confidence = classify_organization(org)
 
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