Hoja de preparación de datos

Action Principale : calculateErrorRate

Código de preparación

Script en espera de validación
¡Copiado!
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;
Acciones que utilizan este script
  • langModel calculateErrorRate En cours
  • Ninguna otra acción utiliza este script exacto.