I would like to use an Attribute-Relation File Format with scikit-learn to do some NLP task, is this possible? How can use an .arff
file with scikit-learn
?
.arff files with scikit-learn?
33.1k Views Asked by tumbleweed At
5
There are 5 best solutions below
2

I found that scipy has a loader for arff files loadarff()
to load them as numpy record arrays. I am not 100% sure that those arrays are suitable for direct consumption by scikit-learn but that should get your started.
1

Solution with scipy.arff
Code:
from scipy.io import arff
import pandas as pd
data = arff.loadarff('file.arff')
df = pd.DataFrame(data[0])
df.head()
I really recommend liac-arff. It doesn't load directly to numpy, but the conversion is simple: