You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to @mlichtenberg the following filters are currently applied in the previous version of bhlindex:
If the output WILL be filtered, then the needed columns are
names.csv
NameID
DetectedName
MatchedCanonical
MatchedFullName
RecordID
DataSourceID
occurrences.csv
NameID
PageID
If the output will NOT be filtered, then the needed columns are:
names.csv
NameID
DetectedName
MatchedCanonical
MatchedFullName
RecordID
DataSourceID
MatchSortOrder
MatchType
OddsLog10
Curation
Error
occurrences.csv
NameID
PageID
The text was updated successfully, but these errors were encountered:
COPY (
SELECT [n.name](http://n.name/), n.matched_name, n.matched_canonicalFROM name_strings n INNER JOIN name_statuses st ON [n.name](http://n.name/) = [st.name](http://st.name/)
WHERE (n.match_typeIN ('ExactMatch', 'ExactCanonicalMatch') ANDn.curation<>'Unknown')
OR (n.match_typeIN ('FuzzyCanonical', 'FuzzyPartial') AND (st.odds>1000000ORn.edit_distanceIN (0,1) ORn.stem_edit_distanceIN (0,1)))
OR (n.match_typeIN ('NoMatch', '') ANDst.odds>1000000)
OR (n.match_type='ExactPartialMatch')
) TO STDOUT DELIMITER '|'
According to @mlichtenberg the following filters are currently applied in the previous version of bhlindex:
The text was updated successfully, but these errors were encountered: