<?xml version="1.0" encoding='ISO-8859-1'?>
<!-- DTD for a results of a single TRECVID known-item or instance search run -->


<!-- A video search run result contains the search results for
a single system (variant) run against all the topics
-->

<!ELEMENT videoSearchRunResult (videoSearchTopicResult+)>

<!-- ptype - processing type (I interactive or F for "fully automatic") 

    task - Task type ('M' Main task, 'P' Progress subtask)

     pid - short participant ID - taken from the tv*.who.what table in the
           active participant's area of the TRECVID website

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

 exampleSet - the set of examples used in this run for all topics in training for person recognition,
             with attribute values defined as follows:

             A - one or more provided images - no video used
             E - video examples (+ optionally image examples)

TrainingSource - the source of training data used:

             A- Only sample video 0
             B- Other external data
             C- Only provided images/videos in the query
             D- Sample video 0 AND provided images/videos in the query (A+C)
             E- External data AND NIST provided data (sample video 0 OR query images/videos)

      desc - verbal description of the characteristics of this run,
             how it differs in approach, resources, etc from others
             runs.


-->
<!ATTLIST videoSearchRunResult pType   (I|F)   #REQUIRED
                                 task   (M|P)   #REQUIRED
                                 pid   CDATA     #REQUIRED 
                            priority   (1|2|3|4|5|6|7|8) #REQUIRED
                           exampleSet  (A|E) #REQUIRED
	                   TrainingSource (A|B|C|D|E) #REQUIRED
                                desc   CDATA     #REQUIRED>


<!-- A video search topic result contains the search results for
a single topic.
-->
<!ELEMENT videoSearchTopicResult (item*)>


<!-- tNum - number of the topic searched to produce this result


     elapsedTime - for interactive searches, the elapsed time in
                   seconds from the time the searcher saw the topic
                   until the searching on that topic ended.

                 - for automatic searches, would be the time in seconds
                   from the time the system is presented with the
                   topic until the searching on that topic ended

      searcherId - for interactive runs, a unique identifier
                   for the person who did the search

                 - for automatic runs should be set to some constant
                   dummy value.  
-->

<!ATTLIST videoSearchTopicResult   tNum   CDATA  #REQUIRED
                            elapsedTime   CDATA  #REQUIRED                     
                            searcherId    CDATA  #REQUIRED>



<!-- A result item identifies a video clip retrieved as relevant
to the topic for this video search result.
-->
<!ELEMENT item     EMPTY >

<!-- seqNum - a sequence number 1,2,3,...  The lower the sequence
number the greater the likelihood the clip meets the need expressed by
the topic.
              For INS: up to 1000 items may be returned per topic.

     shotId - the shotId should be the one from the master shot reference file:
              "eastenders.masterShotReferenceTable" located in the active participants area. 
              shotId takes the form: shotFILENUMBER_SHOTNUMBER.
              

elapsedTime - the elapsed time in seconds from the time the searcher
              saw the topic until this item was added to the result

--> 
<!ATTLIST item seqNum      CDATA #REQUIRED
               shotId      CDATA #REQUIRED
          elapsedTime      CDATA #IMPLIED>
               

