Action Principale : calculateErrorRate
| 1 | DATA mycas.reference_transcripts; |
| 2 | INFILE DATALINES dsd; |
| 3 | LENGTH id $ 10 text $ 100; |
| 4 | INPUT id $ text $; |
| 5 | DATALINES; |
| 6 | utt1,this is a sample sentence |
| 7 | utt2,another test for accuracy |
| 8 | ; |
| 9 | RUN; |
| 10 | |
| 11 | DATA mycas.hypothesis_transcripts; |
| 12 | INFILE DATALINES dsd; |
| 13 | LENGTH hyp_id $ 10 hyp_text $ 100; |
| 14 | INPUT hyp_id $ hyp_text $; |
| 15 | DATALINES; |
| 16 | utt1,this is a sample sentience |
| 17 | utt2,an other test for accuracy |
| 18 | ; |
| 19 | RUN; |