knowing / Medmon

Medical Monitoring
5 stars 0 forks source link

ImportWizard: Import file #53

Closed muuki88 closed 12 years ago

muuki88 commented 12 years ago

Task

Implement function to import a csv or arff file as training or raw data.

Function

ImportDataWizard:

The data format is always .arff. The weka Instances format.

Problem

Importing raw sensor data from a csv or arff file leads to the following problem: _The IConverter of ISensor cannot handle the arff file._

Possible solutions:

  1. Extend IConverter interface with void convert(Instances data, Outputstream destination)
  2. Extend data formats to TRAIN, RESULT, RAW and _RAWARFF
  3. Store all data in arff format.

This problem will be targeted later. Currently you can only import TRAIN data.

Additional Information

Weka offers simple converters for CSV and ARFF. ArffLoader, CsvLoader and ArffSaver.

@see ticket #37 @see ticket #38 @see ticket #52

muuki88 commented 12 years ago

Closed. Implement import function for sensor files. Import training data will be adressed in another ticket.