Spaces:
Sleeping
Sleeping
File size: 351 Bytes
1241fd6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from sklearn.preprocessing import LabelEncoder
import pickle
# Sample data
categories = ['PAYMENT', 'TRANSFER', 'CASH_OUT', 'DEBIT', 'CASH_IN', 'Yes', 'No']
# Initialize and fit the LabelEncoder
le = LabelEncoder()
le.fit(categories)
# Save the fitted LabelEncoder to a pickle file
with open('label_encoder.pkl', 'wb') as f:
pickle.dump(le, f)
|