Data Prep Sheet

Action Principale : calculateErrorRate

Preparation Code

Script awaiting validation
Copied!
1DATA mycas.reference_transcripts;
2 INFILE DATALINES dsd;
3 LENGTH id $ 10 text $ 100;
4 INPUT id $ text $;
5 DATALINES;
6utt1,this is a sample sentence
7utt2,another test for accuracy
8;
9RUN;
10 
11DATA mycas.hypothesis_transcripts;
12 INFILE DATALINES dsd;
13 LENGTH hyp_id $ 10 hyp_text $ 100;
14 INPUT hyp_id $ hyp_text $;
15 DATALINES;
16utt1,this is a sample sentience
17utt2,an other test for accuracy
18;
19RUN;
Actions using this script
  • langModel calculateErrorRate En cours
  • No other action uses this exact script.