File size: 235 Bytes
ab331fa | 1 2 3 4 5 6 7 8 9 10 | """
test.py - Vectorizer test for maps
"""
import pickle
with open('vectorizer.pkl', 'rb') as f:
v = pickle.load(f)
print('ci/cd' in v.get_feature_names_out())
print('infrastructure-as-code' in v.get_feature_names_out()) |