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
Read the doc but cannot find it . Just want to know if comparison of 5 input is possible and show difference ? Example below
input 1 : It's a rainy day and temperature is 25C
input 2: Its a sunny day and temp is 25C
input 3 : It a hot day and temperature is 25C
input 4 : It's a cold night, and temperature is -5C
input 5 : It's a rainy day and temperature is 18C
The text was updated successfully, but these errors were encountered:
No, there's no support for this currently. (It's also not obvious to me what you'd even want the output to look like or what algorithm we'd use for this. I guess maybe something akin to multiple sequence alignment in bioinformatics.)
I'm not sure I'd even want to accept a patch introducing this feature because I'm not sure it would have any overlap with the rest of the features currently in this library. In this way this idea is unlike the recurring request to add support for diffing using the Levenshtein algorithm; at least we can make Myers diffs and Levenshtein diffs return results in the same output format, just with the Myers ones not featuring any substitutions, and so there'd a single function/API with just an optional parameter to choose the underlying diffing algorithm. But this request, for some kind of multiple alignment, would require everything to be created afresh - new functions with different input and output types AND a new diffing algorithm under the hood. I think at that point it ought to live in a different library.
Read the doc but cannot find it . Just want to know if comparison of 5 input is possible and show difference ? Example below
input 1 : It's a rainy day and temperature is 25C
input 2: Its a sunny day and temp is 25C
input 3 : It a hot day and temperature is 25C
input 4 : It's a cold night, and temperature is -5C
input 5 : It's a rainy day and temperature is 18C
The text was updated successfully, but these errors were encountered: