You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to export all the training data in wekinator (such that I could write a visualization for it), or import it into something like mubu, etc.
THanks!
The text was updated successfully, but these errors were encountered:
If you look in the folder where your Wekinator project is, there is a file "current/currentData.arff". This is Weka's (the underlying java ML library) format (https://www.cs.waikato.ac.nz/ml/weka/arff.html). To visualise it you could either use the Weka API in Java to read it then send / save in a different format (https://weka.sourceforge.io/doc.dev/weka/core/converters/ArffLoader.ArffReader.html). Or it is basically a .csv file with some extra stuff at the top, so you could delete these additional headers in a text editor and perhaps make your own parser in another langauge
Is it possible to export all the training data in wekinator (such that I could write a visualization for it), or import it into something like mubu, etc.
THanks!
The text was updated successfully, but these errors were encountered: