Closed cortner closed 4 years ago
The current implementation via Levenshtein distance is not sufficiently general. For example,
compare(lowercase("dft_energy"), "energy", Levenshtein()) # -> 0.6
but the requirement is > 0.8. As a result, when importing the Si training set, no observations are found at all.
> 0.8
Si
Two possible ways forward;
E.g.,
compare(lowercase("dft_virial"), "energy", Levenshtein()) # -> 0.1 compare(lowercase("dft_forces"), "energy", Levenshtein()) # -> 0.1 compare(lowercase("e"), "energy", Levenshtein()) # -> 0.167 compare(lowercase("forces"), "energy", Levenshtein()) # -> 0.0 compare(lowercase("f"), "energy", Levenshtein()) # -> 0.0
@casv2 Since you wrote the first version, I hope you'll be willing to work on this.
I think this problem is now fixed
The current implementation via Levenshtein distance is not sufficiently general. For example,
but the requirement is
> 0.8
. As a result, when importing theSi
training set, no observations are found at all.Two possible ways forward;
E.g.,
@casv2 Since you wrote the first version, I hope you'll be willing to work on this.