ISEResultSentence.h 999 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // ISEResultSentence.h
  3. // IFlyMSCDemo
  4. //
  5. // Created by 张剑 on 15/3/6.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * The lable of sentence in xml results
  11. */
  12. @interface ISEResultSentence : NSObject
  13. /**
  14. * Beginning of frame,10ms per frame
  15. */
  16. @property(nonatomic, assign)int beg_pos;
  17. /**
  18. * End of frame
  19. */
  20. @property(nonatomic, assign)int end_pos;
  21. /**
  22. * Content of Sentence
  23. */
  24. @property(nonatomic, strong)NSString* content;
  25. /**
  26. * Total score
  27. */
  28. @property(nonatomic, assign)float total_score;
  29. @property(nonatomic, assign)float accuracy_score;
  30. @property(nonatomic, assign)float fluency_score;
  31. @property(nonatomic, assign)float integrity_score;
  32. /**
  33. * Duration(cn)
  34. */
  35. @property(nonatomic, assign)int time_len;
  36. /**
  37. * The index of Sentence(en)
  38. */
  39. @property(nonatomic, assign)int index;
  40. /**
  41. * Count of words in Sentence(en)
  42. */
  43. @property(nonatomic, assign)int word_count;
  44. /**
  45. * Word array in Sentence
  46. */
  47. @property(nonatomic, strong)NSMutableArray* words;
  48. @end