Context-detection API for Android developed as a university project
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TrainingDataAnalyser.java 519B

12345678910111213141516171819202122
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package uk.co.md87.dsp.extractor.test;
  6. import java.io.IOException;
  7. import uk.co.md87.dsp.extractor.io.TrainingDataImporter;
  8. /**
  9. *
  10. * @author chris
  11. */
  12. public class TrainingDataAnalyser {
  13. public static void main(final String ... args) throws IOException {
  14. final TrainingDataImporter importer = new TrainingDataImporter(args[0]);
  15. System.out.println(importer.getTrainingData().getMap());
  16. }
  17. }