Closed ZahirBilal closed 2 years ago
Hi, thank you for reporting this issue. There were some errors in ARFFParser and CSVParser. The fix was merged to master in lastest commit (238bb27f96aac88d55955cbe97d1711a262c10cd). You should be able to use it by downloading the latest version of the stream-learn repo and running make install (as described in our quick start guide). The next release of stream-learn will contain this fix.
For now, I'm closing this issue. If you have any other problems, please let us know.
Hello guys,
first of all, thanks for your efforts and contribution for the streaming analytics community :)
I am doing right now my master thesis research on the topic of real-time streaming analysis for an imbalanced dataset. I tried to load the data as .csv by:
stream = CSVParser(r"my_local_dir\datasets\azure_100_norm.csv")
then, I tried to evaluate the data streams using the following lines:here I received the following Error:
Then I tried converting the data into ARFF and using the ARFFParser to deal with it. rest of the code remained the same. I got also the following error:
stream = ARFFParser(r"my_local_dir\datasets\azure_100_norm.arff")
Finally, I tried with the NumpyParser:
DATA_USED
https://github.com/ZahirBilal/dataset_test
So, I am not sure where the problem lies. Unfortunately, I did not have enough time to go through each module, to test if the problem with the data files or the Parser Modules. However, I tried with other data files and encountered same errors.
A feedback would be really appreciated.
Also if the problem is within the code itself, I could also help and take a look, as Implementing the OOB and UOB algorithms are essential in my thesis
Much thanks and best regards Zahir