# file: $NEDC_NFC/util/python/nedc_eeg_eval/hyp_format.txt # # A parameter file that defines key parameters for two-class scoring. # # set version information # version = 1.0.0 #------------------------------------------------------------------------------ # # Section 1: General Annotation Mapping Parameters # #------------------------------------------------------------------------------ # Field-Indices: # The hyp files' indices are provided for each field separated by comma. # i.e. 0,100000,0.98,0.02 (start,stop,first_class_confidence, second_class.. # This section specifies the indices for each field/class (i.e. seiz) MAP { 0: START 1: STOP 2: EYEM 3: CHEW 4: SHIV 5: ELPP 6: ELST 7: MUSC } #------------------------------------------------------------------------------ # # Section 2: NIST F4DE-related Parameters # #------------------------------------------------------------------------------ # The variables below map directly into variables used by the NIST # software: # # term: epoch or term based scoring [default = true] # koefcorrect: weight for correct scores [default = 0.1000] # koefincorrect: weight for incorrect scpres [default = 1.0000] # prob_term: the probability of a term [default = 0.0001] # delta: the maximum allowable gap [default = 0.5000] # NIST_F4DE { term = true koefcorrect = 0.1000 koefincorrect = 1.0000 prob_term = 0.0001 delta = 0.5 fname_kwslist = nist.kwslist.xml fname_kwlist = nist.kwlist.xml fname_rttm = nist.rttm fname_ecf = nist.ecf.xml fname_bsum = nist.bsum.txt fname_log = nist.bsum.log output_directory = nist basename = nist command = nist_cmd.sh } #------------------------------------------------------------------------------ # # Section 2: NEDC DP Alignment Parameters # #------------------------------------------------------------------------------ # define dynamic programming penalties and designate a symbol to be # treated as null (background) # NEDC_DPALIGN { null_class = BCKG penalty_del = 1.0 penalty_ins = 1.0 penalty_sub = 1.0 } #------------------------------------------------------------------------------ # # Section 3: NEDC Epoch-related Parameters # #------------------------------------------------------------------------------ # define the epoch duration in seconds and a null class # NEDC_EPOCH { epoch_duration = 0.25 secs null_class = BCKG } #------------------------------------------------------------------------------ # # Section 4: NEDC Overlap-related Parameters # #------------------------------------------------------------------------------ # no parameters are currently required for this technique # NEDC_OVERLAP { } #------------------------------------------------------------------------------ # # Section 5: NEDC Time-Aligned Event-related Parameters # #------------------------------------------------------------------------------ # TAES scoring uses the same approach as overlap-based scoring. # NEDC_TAES { } #------------------------------------------------------------------------------ # # Section 6: NEDC Inter-Rater Agreement # #------------------------------------------------------------------------------ # IRA scoring uses the same approach as epoch-based scoring: time-alignment # of the transcriptions # NEDC_IRA { epoch_duration = 0.25 secs null_class = BCKG } #------------------------------------------------------------------------------ # # end of file # #------------------------------------------------------------------------------