https://github.com/interzoid/companynamesimkey-go
Generates a similarity key for a company/organization name for matching inconsistent names within a dataset(s)
https://github.com/interzoid/companynamesimkey-go
ai api companydata companynames data-quality-assessment dataquality go go-package golang standardization
Last synced: 6 months ago
JSON representation
Generates a similarity key for a company/organization name for matching inconsistent names within a dataset(s)
- Host: GitHub
- URL: https://github.com/interzoid/companynamesimkey-go
- Owner: interzoid
- License: mit
- Created: 2023-02-03T22:09:53.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-17T19:57:29.000Z (almost 3 years ago)
- Last Synced: 2024-06-20T11:01:37.571Z (about 2 years ago)
- Topics: ai, api, companydata, companynames, data-quality-assessment, dataquality, go, go-package, golang, standardization
- Language: Go
- Homepage: https://www.interzoid.com
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## companynamesimkey-go
Go package for generating a similarity key from the input data used to match with other similar company name data. Use the generated similarity key, rather than the actual data itself, to match and/or sort company name data by similarity. This avoids the problems of data inconsistency, misspellings, and name variations when matching within a single dataset, and can also help matching across datasets or for more advanced searching.
The key generation is based on a series of tests, algorithms, AI, and an ever-growing body of Machine Learning-based generated knowledge.
### Usage
To generate the similarity key, you will need the following information:
- an API License key, available at https://www.interzoid.com
- an individual full name to generate the similarity key for
Begin by retrieving the package:
go get "github.com/interzoid/companynamesimkey-go"
Import the package into your code:
import "github.com/interzoid/companynamesimkey-go"
Then, feed the information into the GetSimKey() method:
simkey, code, credits, err := CompanyNameSimKey.GetSimKey("YOUR-API-KEY","Bank of America")
The return values will be the similarity key, a code (success or failure), how many remaining credits on your API key, and any error messages. The similarity key can be used to search for other similar company names, to sort large datasets by similarity, and perhaps use additional attributes to identify duplicates/redundancy.
Examples:
Bank of America -> wAR3laPfUVvB784_iH0cw7aQbKhr26sophlZ4z7iqtM
Bank of Amer Corp -> wAR3laPfUVvB784_iH0cw7aQbKhr26sophlZ4z7iqtM
AMAZON.COM -> EP88bx0VFDaIh-cOt86c8pOJ6lNkb_TWiKFpmMKXakY
Amazon Inc. -> EP88bx0VFDaIh-cOt86c8pOJ6lNkb_TWiKFpmMKXakY
See Also:
**Individual Name Similarity Keys**: https://github.com/interzoid/fullnamesimkey-go
**Individual Name Match Scoring**: https://github.com/interzoid/fullnamematchscore-go
**Street Address Similarity Keys**: https://github.com/interzoid/streetaddresssimkey-go