<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Automatic prior art searching and patent encoding at CLEF-IP '10</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>BiTeM group, Library and Information Sciences Department, University of Applied Sciences</institution>
          ,
          <addr-line>7 route de Drize, 1227 Carouge</addr-line>
          ,
          <country country="CH">Switzerland</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>BiTeM group, Medical Informatics Service, University of Geneva 4</institution>
          <addr-line>rue Gabrielle-Perret-Gentil, 1211 Geneva</addr-line>
          ,
          <country country="CH">Switzerland</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In the intellectual property field two tasks are of high relevance: prior art searching and patent classification. Prior art search is fundamental for many strategic issues such as patent granting, freedom to operate and opposition. Accurate classification of patent documents according to the IPC code system is vital for the interoperability between different patent offices and for the prior art search task involved in a patent application procedure. In this paper, we report our experiments with prior art searching and patent classification in the context of CLEF-IP '10 evaluation track. In the Prior Art Candidates search task, we strongly improved our last year's model based on our experiments on training data (MAP 0.22), but official results, alas, were far from the expected ones (MAP 0.14). Regarding multilingual issues, our simple Google translator strategy achieved a 10% improvement. Nevertheless we think that the multilingual aspects in CLEF-IP'10 were less clear than for CLEF-IP'09. Finally, exploiting applicant's citations led to a 30% improvement, but their visibility depends on who (the applicant or the examiner) performs the prior art search in the simulated task. This issue needs clarification by the organizers for the forthcoming campaigns. In the Classification task, we apply the k-NN algorithm in the categorisation process and explore different retrieval models, ranking combinations and languages features in order to enhance our results. Using multi-collection in the classification process improved the results by 2%. Both the prior art search and classification systems are in the top three rank among the participants.</p>
      </abstract>
      <kwd-group>
        <kwd>Information retrieval</kwd>
        <kwd>Prior art search</kwd>
        <kwd>IPC encoding</kwd>
        <kwd>Patent classification</kwd>
        <kwd>k-NN</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>According to EPO, it is estimated that 80% of the knowledge is found in patent
documents. Due to its importance as source of knowledge and to the delay in patent
analysis caused the growth of applications, new areas of knowledge and size of patent
databases, new tools to automate patent searching and classification processes have
become a hot topic in the last decades. As example, we can cite the challenges CLEF
2009, TREC-CHEM 2009-2010 and the workshops SIGIR 2000, ACL 2003 and NTCIR
3-8 which all have tasks dedicated to patent retrieval. In that context, the CLEF-IP 2010
evaluation track proposes two tasks for automation of prior art searching and of patent
classification.</p>
      <p>Prior art candidates search (PAC) is a fundamental task in patent processing, since
many of the strategic issues in intellectual property rely upon retrieving patents that deal
with a given invention. The most usual example is prior art search that applicants and
examiners have to provide in order to grant an application. PAC may also be performed
for invalidating another patent, for freedom to operate or for patent landscape. PAC
primarily is an information retrieval task, in which recall is the most important measure,
as one single document can invalidate a patent.</p>
      <p>Automating the attribution of IPC codes to patent applications is important for several
reasons: it assists patent officers in the patent classification task, aids inventors with the
prior art search and helps referees to validate or refute a given application. When a patent
application is considered or submitted, the search for previous inventions in the field
relies crucially on accurate patent classification. The use of the assigned IPC code is also
key information for searching patents across nations because of its language
independence.</p>
      <p>In this paper, we report the experience of the BiTeM group1 in the CLEF-IP 2010
evaluation track. The challenge is divided into two tasks: Prior Art Candidates search
(PAC) and Classification (CLS). In the PAC task, participants have to re-build the
citations section of the 2000 applications belonging to the test set, mainly written in
English. In the CLS task, patent applications written in English, French and German are
automatically encoded using the IPC subclass descriptors.</p>
      <p>We use an EPO patent collection composed by 2.7M documents and a set of 300 patent
applications written in English, French and German to train the system. The assessments
of our approaches are performed using 2000 documents in the PAC and CLS tasks. In
order to improve classification we develop several re-ranking techniques that are further
described.</p>
      <p>The rest of this paper is organised as follows. In Section 2, the corpus and training data
are depicted. Moreover, we describe the methods used to retrieve documents for the PAC
task and the classification system. In Section 3, the results obtained are presented and
remarks are discussed. In Section 4, the paper is concluded.</p>
      <sec id="sec-1-1">
        <title>1 http://eagl.unige.ch/bitem</title>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>Methods and data</title>
      <sec id="sec-2-1">
        <title>Training and test data</title>
        <p>In our experiments with the PAC and CLS tasks, we use a patent collection provided by
EPO containing 2.7M patent documents, including A and B files. In total, the collection
contains 1.3M patents. The distribution of patent documents according to their sections
for the three different languages – English, French and German – is described in Table 1.
The organisers also provide two sets of training (300 applications) and testing (2000
applications) documents.</p>
        <p>In the CLS task, the fields title, abstract, claim, description, applicant and citation are
used for indexing the collection. The average number of subclass codes per patent
document (A and B) in the corpus is 8491 while the median is 2927. The majority of the
codes (95%) are found in 100 or more documents. Six classes, A61K, A61P, C07D,
H01L, G06F and G01N, are presented 100K in or more documents.</p>
        <p>In the PAC task, organizers decided this year that the gold file would contain patent
documents instead of patent families. Yet, we decided for time reasons to continue to
work at the level of patent family. Hence, we continue to concatenate all documents
relative to a given patent family in a unique virtual file. Once the run is computed, we
simply split each virtual document in all its parts.</p>
        <p>We use Terrier2 as our information retrieval (IR) engine. Terrier implements several
methods to calculate the similarity between documents: BM25, BB2 (Bose-Einstein model
for randomness), InL2 (inverse document frequency model for randomness), among
others and it is optimised to work with large collections. It is based on JAVA and freely
available online.</p>
        <sec id="sec-2-1-1">
          <title>2 http://ir.dcs.gla.ac.uk/terrier</title>
          <p>2.2</p>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>Classification system</title>
        <p>
          In the classification experiments, we choose a classifier based on the k-NN algorithm.
Some authors [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ] have shown that k-NN, together with SVM, outperforms other
approaches such as neural networks, Rocchio and Naïve Bayes. Compared to SVM, k-NN
scales much better to larger systems that contain many features and classes, which is the
case of the proposed task.
        </p>
        <p>The classification system architecture is presented in Fig. 1. A query is provided to the
IR engine, which ranks the first k documents dj according to ranking model. The
documents are mapped to their respective codes ci and the codes are further re-ranked
using the methods described in the next subsection. A ranked list of n codes is then
created. Depending on the multi-lingual strategy, the topics are first translated using
Google Language Tools3 before being used as input to the IR engine.</p>
        <p>We have tuned the number of neighbours k so that it maximises the precision at the top
rank code. It happens to be 31 according to our experiments. The slope of the ranking
models was suggested by the Terrier experiments with the .GOV collection and set to
0.2381 for the BM25 and DFR_BM25 models to 26.04 for the PL2.</p>
      </sec>
      <sec id="sec-2-3">
        <title>2.3.1 Ranking strategies</title>
        <p>In our attempt to improve the precision of the top n ranked codes, we have experimented
several re-ranking algorithms as described in Methods 1 to 7. First, in Method 1, 2 and 3
we compare the use of a single index containing all the three language documents against
the use of a monolingual indexes and of query translation. Further, in Method 4 we
experiment the combination of different ranking models (BM25, BM25_DFR and PL2)
and the combination of patent collections (derived from the different language in the</p>
        <sec id="sec-2-3-1">
          <title>3 http://translate.google.com</title>
          <p>
            where f is defined by:
(1)
(2)
documents). As previously demonstrated [
            <xref ref-type="bibr" rid="ref2">2</xref>
            ], the combination of patent collections can
enhance the classification results. Finally, analogously to the work of Xiao et al. [
            <xref ref-type="bibr" rid="ref3">3</xref>
            ], in
Method 5 we apply some simple re-ranking algorithms to the lists obtained in the Methods
1 and 2. These methods are implemented as follow:
Method 1. The collection containing English documents is indexed. Queries in French and
German are translated to English before being submitted against this index. The model
BM25, DFR_BM25 and PL2 are used to retrieve the documents. The codes are mapped
and ranked using their frequency in the top k retrieved documents, as showed in Eq. (1)
(see [
            <xref ref-type="bibr" rid="ref3">3</xref>
            ]):
Method 2. An index is created using the whole collection. Queries in the three original
languages are submitted against this index. The model DFR_BM25 is used to calculate the
document/query similarity. The codes are mapped and ranked using Eq. (1).
Method 3. Three different indexes are created from the English, French and German
patent documents. Each index contains only sections from one language plus application
and citation sections. Queries are translated to all the three languages and submitted
against their respective index (DE-&gt;DE, EN-&gt;EN and FR-&gt;FR). The model DFR_BM25
is used to fetch the documents. The codes are mapped and ranked using their frequency
[Eq. (1)] in the top k retrieved documents.
          </p>
          <p>Method 4. In this method, the results of Method 3 are combined linearly in order to see
how the combination of different collections can improve the results. Since the language
indexes have different performances, they receive different weights in the combination:
1.00 for English, 0.25 for German and 0.15 for French. In the same line of thought, the
results of Method 1 are combined. As in the language combination, the models receive
different weights with 0.05 for BM25, 1.00 for DFR_BM25 and 0.01 for PL2. The weights
were obtained from the training phase.</p>
          <p>
            Method 5. In this method, the results obtained in Methods 1 and 3 are re-ranked using the
rank list combination (rank combination) method described in Xiao et al. [
            <xref ref-type="bibr" rid="ref3">3</xref>
            ]:
where rcij is the code’s rank in the ranked list j and varies between 1 and n. The lists used
are original (Eq. (1)), sum, listweak, which are all described in Xiao et al. [
            <xref ref-type="bibr" rid="ref3">3</xref>
            ], and
citation, which is derived as follow:
citation – It has been shown in previous experiments that citation is an important source
of information for patent retrieval [
            <xref ref-type="bibr" rid="ref5 ref6 ref7 ref8">5,6,7,8</xref>
            ]. Eq. (4) shows how the codes ci are ordered
according to this method:
where f is defined by:
and dc is a document cited by dj. is the weight of each ranking method, original, sum,
listweak and citation, respectively set to 1.15, 1.00, 0.75 and 0.30.
2.3
          </p>
        </sec>
      </sec>
      <sec id="sec-2-4">
        <title>Prior art search system</title>
        <p>
          The prior art search used for CLEF-IP’10 system largely relies upon our last year’s
system [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ]. Several additional strategies were evaluated throughout the pre-processing, the
retrieval, and the post-processing steps. For this purpose, we worked with training data
and simply computed a baseline run, and then tried to optimize the Mean Average
Precision.
(3)
(4)
(5)
2.3.1
Document Representation. In the framework of CLEF-IP 09 evaluation [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], we
established that the best Document Representation for our system included Title, Abstract,
Claims, and IPC codes (in both subclass and subgroup forms), but not Description. This
year, we evaluated the contribution of other unexploited fields that are Applicants and
Inventors. From the Applicants field contained in a patent document, we try to split the
information and to extract three different fields that are the Applicants’ names, the
Applicants’ countries, and the Applicant’s address. The same strategy is used with the
Inventors field.
        </p>
        <p>Query Representation. Last year, we established that the best Query Representation for
our system was the same we used for the collection plus Description. No further
experiments were conducted regarding the Query Representation, unless including
applicants and/or inventors information as for the collection.</p>
        <p>Multilingual issues. This year, the collection includes documents in which English,
French and/or German versions of each field can be present. Our strategy was to
exclusively work in English and was simple: for each patent document, when the English
version of a given field amongst Title, Abstract and Claims is available, we use this
English version. Otherwise, if a French or a German version is available, we simply apply
Google Translator on it. The same strategy is used for both documents and queries.
2.3.2</p>
      </sec>
      <sec id="sec-2-5">
        <title>Retrieval strategies</title>
        <p>The Information Retrieval step is performed with Terrier. Last year, we conducted a set of
experiments in order to determine the best tuning, that was using Terrier BM25 with
b=1.15 for weighting scheme, and Terrier Bose-Einstein for Query Expansion model. The
same parameters are kept for CLEF-IP 2010.
2.3.3</p>
      </sec>
      <sec id="sec-2-6">
        <title>Post-Processing strategies</title>
        <p>Applicants’ Countries. We investigated the hypothesis that the country of origin of the
applicants, or the inventors, brings information, since citations are more likely to come
from the same area due to a geographical bias [10].</p>
        <p>Applicants’ proposed Citations. Citations are extracted from the query Description field
with simple regular expressions.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Results and discussions</title>
      <p>In this section, we present the official results in the CLEF-IP ’10 challenge for the PAC
and CLS tasks.
3.1</p>
      <sec id="sec-3-1">
        <title>Classification results</title>
        <p>In our experiments in the CLS task, we submitted seven official runs, which are listed in
Table 2. Comparing the baseline run FREQ_Run1, obtained from Method 1 using BM25
model, with FREQ_Run2, which is also obtained from Method 1 but based in the
divergence from randomness (DFR_DM25) model, we see a relevant improvement of
15% in the classifier performance.</p>
        <p>
          When comparing Method 1 (FREQ_Run2), which uses an English collection for
indexing and translates the topics from other languages to English, with Method 2
(FREQ_Run3), which uses indexes and queries from the three original languages, the
results are very similar. From these results, we conclude that translation of the topics is
not necessary if documents of the same topic’s language are presented in the index.
Otherwise, translation does not affect the classification results in the case of inexistent
original topic’s language in the index. This corroborates with our result in NTCIR-8 [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ].
        </p>
        <p>
          Our best run (MULTI_Run1) obtains 0.7281 of performance (MAP) and it uses
Method 4, with the combination of the different language indexes obtained in Method 3.
It shows an improvement of 1.9% over the best model of Method 1 and 1.2%
improvement over Method 2. We obtained similar results in [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ] combining patent
collections from different offices (JPO and USPTO). In MULTI_Run2, the combination
of models obtained from Method 1 also improves the results slightly (1.0%).
4 Official run ids are prefixed by the group name, bitem, and suffixed by the task acronym,
CLS.
        </p>
        <p>Ranking
method
codefreq
codefreq
codefreq
codefreq
codefreq
list
list</p>
        <p>MAP</p>
        <p>Finally, the results of Method 5 do not show any improvement when compared to their
counterparts (MULTI_Run1 vs LIST_MULTI_Run1 and MULTI_Run2 vs
LIST_MULTI_Run2) from Method 4. These results were not expected from the training results,
where we saw an improvement of 1.5% in Methods 5. We believe that it may have been
due to overfitting.</p>
        <p>In our attempt to analyse the reasons for the classification errors we try to correlate 1)
the code classes, 2) the code document frequency (CDF) and 3) the size of queries with
the query average precision. For 1) and 2) we do not find any clear correlation. The 50
best and 50 worst code classes have random distributions of codes with an overlap of
approximately 30% between them. For the CDF correlation, the 50 best and 50 worst have
also similar CDF. However, for hypotheses 3) we notice (Fig. 2) a linear increase in the
average query precision with the size of the topic. We believe that this can give us some
indications of where we should improve the classifier.</p>
        <p>Fig. 2. Query size vs Query precision in the official run. Notice an almost linear
relation between the average precision and the average query size for the 2000 topics.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Prior Art Candidates search results</title>
        <p>All the reported experiments were conducted with training data. In order to evaluate a
strategy, we compute a baseline run, using last year’s best features, and then try to
increase the Mean Average Precision.
3.2.1</p>
      </sec>
      <sec id="sec-3-3">
        <title>Pre-Processing strategies</title>
        <p>Multilingual issues. We start with a Baseline run, for which only original English is used,
i.e. no translations. MAP for this baseline run is 0.106. Our simple translation strategy
leads to a +8% improvement for MAP when applied for the collection, +10% when
applied for both the collection and the queries (see Table 3). This improvement needs to
be compared with more sophisticated strategies evaluated within this benchmark.
Document Representation. We start with a Baseline run, which was computed using
Titles, Abstracts, Claims, IPC codes for both collection and queries, and also Description
for queries. We aim at evaluating the contribution of the different information contained
in the Applicants and Inventors fields. Experiments show (see Table 4) that the
information contained in both fields is relevant, and helpful for the Information Retrieval.
Including applicants and inventors names respectively both leads to a +3% improvement.
Including the country of origin seems to be ineffective. Addresses are noisy information
in the patent. Yet, using them leads to +6% improvement. Our strategy was to split
information contained in the Applicants or Inventors fields, in order to avoid what seems
to be noise. The fact remains that the best results are obtained with all the fields, without
any splitting.
Applicant’s country. Closer analysis on training data reveals that, in the gold file, 50% of
the cited patents share the same country of origin of the applicant than the patent used as
query. Moreover, there seems to be clear patterns depending on the country. For Japanese
patents, 70% of the cited patents come from Japan, while 10% come from USA. For
French patents, 31% of the cited patents come from France, while 19% come from
Germany. We can hypothesize that rules inferred from these patterns can improve the
model in a re-ranking way. Unfortunately, we tried several boosting or filtering strategies,
but never obtained better results than the baseline.</p>
        <p>
          Applicant’s citation. Last year, a CLEF-IP’09 participant took benefit from the citations
that the applicant provides in the Description field. In our report [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], we raised objections
regarding this strategy, because this information may be not visible for the person who
accomplishes the Prior Art, depending whether he is the applicant or the examiner. This
year, since nothing forbids it, we chose to extract these applicants’ citations contained in
Description. Evaluated on training data, from a baseline run which achieves a MAP of
0.153, using applicant’s citations leads to a +39% improvement (MAP of 0.213).
Therefore, two different official runs were submitted, one called “Applicant’s view”
which simulates the Prior Art Search for the applicant, and another one called
“Examiner’s view” which simulates the Prior Art Search for the examiner and which
includes the Applicant’s citations.
3.2.3
        </p>
      </sec>
      <sec id="sec-3-4">
        <title>Official runs</title>
        <p>We hence submitted two runs, depending on the use of the applicant’s citation. Final
tuning on training data led to a MAP of 0.153 for the Applicant’s View, but the official
run only achieved a MAP of 0.106. For the Examiner’s view (including applicants
citations), we achieved a MAP of 0.213 for training data, but only 0.14 for official results
(+32% compared to the Applicant’s View).
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <p>In this paper we report our work in the Prior Art Candidates search and Classification
in the CLEF-IP 2010 evaluation track. A corpus of 2.7M patents documents is used during
the IR stage. The systems are evaluated with 2000 patent applications on both tasks.</p>
      <p>In the CLS task, our system was ranked top three among the 7 participants, reaching
73% of mean average precision in the best run. The use of the multi-patent collections
improved slightly the performance of the classification system. Moreover, the use of a
multi-lingual collection or monolingual plus query translation showed to be equivalent
concerning their classification performances. We plan to use the Catchword Index
provided by WIPO to see if we can further improve our classification results. Moreover,
we want to exercise the classification system using n-grams.</p>
      <p>In the PAC task, our system, which largely relies on last year’s system, was ranked top
three among the 9 participants, while official results are disappointing regarding to the
results obtained with training data. Further analysis needs to reveal the reason of such a
bias. Our translation strategy was simple, but regarding to the weak amount of
multilingual data, this +10% improvement is encouraging. We think that the multilingual
aspects in CLEF-IP’10 were less clear than for CLEF-IP’09. Including inventors and
applicants information is effective, but splitting them in different parts in order to reduce
the noise is not. Finally, including applicants provided citations leads to a +35%
improvement.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1. Sebastiani F.:
          <article-title>Machine learning in automated text categorization</article-title>
          .
          <source>ACM Computing Surveys</source>
          ,
          <volume>34</volume>
          ,
          <fpage>1</fpage>
          --
          <lpage>47</lpage>
          (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Teodoro</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gobeill</surname>
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ruch</surname>
            <given-names>P.</given-names>
          </string-name>
          et al.:
          <article-title>Automatic IPC encoding and novelty tracking for effective patent mining</article-title>
          .
          <source>In Proceedings of NTCIR-8 Workshop Meeting</source>
          (
          <year>2010</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Xiao</surname>
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cao</surname>
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Song</surname>
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhou</surname>
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>J Zhu.</given-names>
            , and
            <surname>Wang</surname>
          </string-name>
          <string-name>
            <surname>H.</surname>
          </string-name>
          :
          <article-title>Knn and re-ranking models for English patent mining at NTCIR-7</article-title>
          .
          <source>In Proceedings of NTCIR-7 Workshop Meeting</source>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Nanba</surname>
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fujii</surname>
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iwayama</surname>
            <given-names>M.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Hashimoto</surname>
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Overview of the patent mining task at the NTCIR-7 workshop</article-title>
          .
          <source>In Proceedings of NTCIR-7 Workshop Meeting</source>
          (
          <year>2008</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Gobeill</surname>
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Teodoro</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pasche</surname>
            <given-names>E.</given-names>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <surname>Ruch. P.:</surname>
          </string-name>
          <article-title>Report on the TREC 2009 experiments: Chemical IR track</article-title>
          .
          <source>In the Eighteenth Text REtrieval Conference (TREC-18)</source>
          (
          <year>2009</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Gobeill</surname>
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Teodoro</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pasche</surname>
            <given-names>E.</given-names>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <surname>Ruch. P.</surname>
          </string-name>
          :
          <article-title>Simple pre and post processing strategies for patent searching in the CLEF intellectual property track 2009</article-title>
          .
          <source>In CLEF 2009 Proceedings in Lecture Notes in Computer Sciences (in press).</source>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Chakrabarti</surname>
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dom</surname>
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Agrawal</surname>
            <given-names>R.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Raghavan P.</surname>
          </string-name>
          :
          <article-title>Using taxonomy, discriminants, and signatures for navigating in text databases</article-title>
          .
          <source>In Proceedings of 23rd VLDB conference</source>
          (
          <year>1997</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Chakrabarti</surname>
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dom</surname>
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Agrawal</surname>
            <given-names>R.</given-names>
          </string-name>
          , and Raghavan P.:
          <article-title>Scalable feature selection, classification and signature generation for organizing large text databases into hierarchical topic taxonomies</article-title>
          .
          <source>The VLDB Journal</source>
          ,
          <volume>7</volume>
          ,
          <fpage>163</fpage>
          --
          <lpage>178</lpage>
          (
          <year>1998</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Criscuolo</surname>
            <given-names>P.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Verspagen</surname>
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Does it matter where patent citations come from? Inventor vs. examiner citations in European patents</article-title>
          .
          <source>In Research Policy, Elsevier</source>
          , vol.
          <volume>37</volume>
          (
          <issue>10</issue>
          ),
          <fpage>1892</fpage>
          --
          <lpage>1908</lpage>
          , (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>