12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // ISEResultSentence.h
- // IFlyMSCDemo
- //
- // Created by 张剑 on 15/3/6.
- //
- //
- #import <Foundation/Foundation.h>
- /**
- * The lable of sentence in xml results
- */
- @interface ISEResultSentence : NSObject
- /**
- * Beginning of frame,10ms per frame
- */
- @property(nonatomic, assign)int beg_pos;
- /**
- * End of frame
- */
- @property(nonatomic, assign)int end_pos;
- /**
- * Content of Sentence
- */
- @property(nonatomic, strong)NSString* content;
- /**
- * Total score
- */
- @property(nonatomic, assign)float total_score;
- @property(nonatomic, assign)float accuracy_score;
- @property(nonatomic, assign)float fluency_score;
- @property(nonatomic, assign)float integrity_score;
- /**
- * Duration(cn)
- */
- @property(nonatomic, assign)int time_len;
- /**
- * The index of Sentence(en)
- */
- @property(nonatomic, assign)int index;
- /**
- * Count of words in Sentence(en)
- */
- @property(nonatomic, assign)int word_count;
- /**
- * Word array in Sentence
- */
- @property(nonatomic, strong)NSMutableArray* words;
- @end
|