<?xml version="1.0" encoding='ISO-8859-1'?>
<!-- DTD for a results of a single TREC video feature extraction run -->


<!-- A video feature extraction run result contains the results for a 
single system (variant) run for some set of features
-->
<!ELEMENT videoFeatureExtractionRunResult (videoFeatureExtractionFeatureResult+)>

<!-- trtype - system training type (see Guidelines)

     sysId - associated ID of the system (variant) that produced this
result. This should incorporate an abbreviated form of the research 
group's name to make it unique across groups. 10 characters or less
would be appreciated.

  priority - evaluation priority   If not all runs can be judged, then 
judging will begin with the run with priorty 1 and so on

      desc - verbal description of the characteristics of this
run, how it differs in approach, resources, etc from others runs.
-->
<!ATTLIST videoFeatureExtractionRunResult trType  (A|B|C)  #REQUIRED
                                          sysId   CDATA  #REQUIRED 
                                       priority   (1|2|3|4|5|6|7|8|9|10)  #REQUIRED
                                           desc   CDATA  #REQUIRED>


<!-- A video feature extraction feature result contains the results 
for a single feature.
-->
<!ELEMENT videoFeatureExtractionFeatureResult (item+)>

<!-- fNum - number of the feature extracted to produce this result
-->

<!ATTLIST videoFeatureExtractionFeatureResult  fNum    CDATA  #REQUIRED>



<!-- A result item identifies the standard shot for which the feature
is believed to be true
-->
<!ELEMENT item     EMPTY >

<!-- seqNum - a sequence number 1,2,3,... The lower the sequence number 
the greater the likelihood the feature is true for the shot. Sequence 
numbers start with 1.

     shotId - the id of the shot from the standard shot reference.
This id is unique across files.
--> 

<!ATTLIST item seqNum CDATA #REQUIRED 
               shotId CDATA #REQUIRED>

