Created
March 11, 2016 15:48
-
-
Save veekaybee/25e42ccb93b05e49b220 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sklearn.preprocessing import LabelEncoder | |
le = LabelEncoder() | |
le.fit(['a', 'b', 'c', 'c’]) | |
dict(zip(le.classes_, range(len(le.classes_)))) | |
>>>{'a': 0, 'b': 1, 'c': 2} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment