Is there any way that PolyFuzz can be used to normalize sequences. For example, fit the model to a normalized sequences list > save the model > load the model > normalize new data.
model = PolyFuzz("TF-IDF").fit(normalized_sequences_list)
model.save('/path/to/model')
model = PolyFuzz.load('/path/to/model')
normalized_data = model.transform(unormalized_data)
Is there any way that PolyFuzz can be used to normalize sequences. For example, fit the model to a normalized sequences list > save the model > load the model > normalize new data.