Data Prep Sheet

Action Principale : calculateErrorRate

Preparation Code

Script awaiting validation
Copied!
1DATA mycas.reference_table;
2 LENGTH _ID_ $ 10 _TEXT_ $ 100;
3 INFILE DATALINES delimiter=',';
4 INPUT _ID_ $ _TEXT_ $;
5 DATALINES;
6id_001,this is a sample sentence
7id_002,another example for testing
8;
9RUN;
10 
11DATA mycas.hypothesis_table;
12 LENGTH _ID_ $ 10 _TEXT_ $ 100;
13 INFILE DATALINES delimiter=',';
14 INPUT _ID_ $ _TEXT_ $;
15 DATALINES;
16id_001,this is a sample sentense
17id_002,anuther example for testing
18;
19RUN;
Actions using this script
  • langModel calculateErrorRate En cours
  • No other action uses this exact script.