0
数値(区切り記号=、)を含む次のフィールド私はcsvファイルを持っている
filename labels
xyz.png cat
pqz.png dog
abc.png mouse
すべてのクラスに
data-classes = ["cat", "dog", "mouse"]
質問を含むリストがあるに文字列のラベルを変換する方法:どのようにcsvの文字列ラベルをラベルデータクラスのインデックスに置き換えます(つまり、label == cat
ならラベルを0に変更する必要があります)。これをcsvファイルに保存します。
これはあなたのお探しですか?私はとにかくパンダを使ってcsvを読んで書くことにアドバイスするだろうhttp://fastml.com/converting-categorical-data-into-numbers-with-pandas-and-scikit-learn/ – Roelant
関連性のあると思われるdupe:https:/ /stackoverflow.com/questions/31133192/usng-same-label-encoder-to-test-dataset-or-new-label-encoder – EdChum
LabelEncoderが機能しません –