liac-arff icon indicating copy to clipboard operation
liac-arff copied to clipboard

A library for read and write ARFF files in Python

Results 19 liac-arff issues
Sort by recently updated
recently updated
newest added

I forward a limitation pointed out by @zuliani99 in scikit-learn: https://github.com/scikit-learn/scikit-learn/issues/19944 It is more appropriate to solve the issue upstream than in the vendor version in scikit-learn. #### Describe the...

CC @jnothman @ogrisel @renatopp @pgijsbers Dear all, I'm opening this issue to start the discussion on the future of liac-arff as the reason why I started working on this project...

Hi, I understand that this may look llike an expected behaviour but this can lead to unexpected results in the following scenario: - arff file with quoted question marks as...

A few PEP8 fixes. Also add flake8 linter check to CI.

file = open("data/final-dataset.arff", 'r') # # Togglable Options # regenerate_model = False # regenerate_data = False # generate_graphs = True # save_model = True # create_model_image = False def generate_model(shape):...

Hello, I tried to convert regular arff file format to sparse arff format through liac-arff. I used the code below: import arff fp = open('est1.arff') data = arff.load(fp) X =...

Hi, Happy new year! I recently used weka to generate some .arff files. The files looks like @relation 'SEA' @attribute attrib1 numeric @attribute attrib2 numeric @attribute attrib3 numeric @attribute class...

It seems like documentation stalled at 2.1.0 while it should continuously be updated. It would be good to use travis-ci to build the documentation and push it to github to...

To make sure that liac-arff behaves like the WEKA arff reader/writer.

We want to use liac-arff to check the validity of ARFF files. These can be quite big, however, and loading them can take quite some time. It would be nice...

feature request