JP2009140263A - Term co-occurrence degree extractor - Google Patents
Term co-occurrence degree extractor Download PDFInfo
- Publication number
- JP2009140263A JP2009140263A JP2007316422A JP2007316422A JP2009140263A JP 2009140263 A JP2009140263 A JP 2009140263A JP 2007316422 A JP2007316422 A JP 2007316422A JP 2007316422 A JP2007316422 A JP 2007316422A JP 2009140263 A JP2009140263 A JP 2009140263A
- Authority
- JP
- Japan
- Prior art keywords
- term
- occurrence degree
- terms
- search
- occurrence
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Granted
Links
Images
Landscapes
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
Description
本発明は、検索対象の用語をノードとし、前記検索対象の任意の2つの用語について、該2つの用語が同一文書で出現する度合いを示す共起度を該2つの用語に対応するノードの間のエッジとする、共起度グラフを抽出する用語共起度抽出装置、用語共起度抽出方法及び用語共起度抽出プログラムに関する。 The present invention uses a search target term as a node, and, for any two terms of the search target, a co-occurrence degree indicating the degree of appearance of the two terms in the same document is between the nodes corresponding to the two terms. The term co-occurrence degree extraction apparatus, the term co-occurrence degree extraction method, and the term co-occurrence degree extraction program for extracting the co-occurrence degree graph, which are the edges of the term, are related.
近年、インターネットおよびWWW(World Wide Web。以下、Webという)の普及とともに爆発的な情報が流通するようになり、Webをマイニングの対象とする情報抽出の研究が盛んに行われている。特に、人名、組織名、施設名、地名などの用語を検索クエリとしてWeb検索エンジンに入力し、得られた検索結果をコーパス(corpus:言語資料)として用いることによって、用語間の共起度を求める手法に注目が集まっている。共起度とは、特定の2つの用語が同一文書中に出現する度合い(頻度、割合)の指標である。 In recent years, with the spread of the Internet and WWW (World Wide Web; hereinafter referred to as the Web), explosive information has been distributed, and research on information extraction using the Web as a target for mining has been actively conducted. In particular, terms such as person names, organization names, facility names, and place names are input as search queries to a Web search engine, and the obtained search results are used as a corpus (corpus: language material), thereby increasing the degree of co-occurrence between terms. Attention has been focused on the desired method. The co-occurrence degree is an index of the degree (frequency, ratio) at which two specific terms appear in the same document.
例えば、Web検索エンジンで人名を検索することによって、人間関係を推定する技術として、特許文献1の技術が挙げられる。特許文献1の技術によれば、人名のリストが入力されると、2つの人名同士の組み合わせを検索クエリとしてWeb検索エンジンで検索することによって、2つの人名同士の人間関係を文書内の共起度として求めることができる。 For example, as a technique for estimating a human relationship by searching for a person's name with a Web search engine, the technique of Patent Document 1 can be cited. According to the technique of Patent Document 1, when a list of person names is input, a web search engine searches for a combination of two person names as a search query, thereby co-occurring human relations between the two person names in the document. It can be calculated as a degree.
用語間の共起度について、特許文献2には、自然言語文で入力された膨大な量の時系列データから任意の区間で分割したスナップショット・データを生成し、スナップショット・データに含まれるデータに自然言語解析を施し、得られたノード対から共起関係を求めネットワーク図を描画する技術が記載されている。また、ノード対に対し、相互情報量を用いて共起関係を算出することが記載されている。相互情報量I(x,y)は、単語「x」と単語「y」とが共起する確率P(x,y)と、それぞれがテキスト内で生起する確率P(x)P(y)との比である。
Regarding the co-occurrence between terms,
特許文献3には、統語処理を一括して行う同音語グループ間の共起単語の組み合わせの集合を、同音語グループの組み合わせと対応付けて格納する技術が記載されている。特許文献3の技術は、候補バッファから後側の先頭単語を取り出し、この後側単語で共起辞書インデックスを検索することにより、共起辞書本体の検索範囲を限定する。代表単語として前側の先頭単語を取り出し、この前側単語で共起辞書本体を検索する。それによって、優先すべき単語の組み合わせがあるかどうか判る。
共起度の計算方法には共起頻度、相互情報量、Dice係数、Jaccard係数、Simpson係数、Cosine係数など、様々な方法がある。Webページ全体の数をN、用語K1、K2のWeb検索エンジンにおけるヒット件数をそれぞれ|K1|、|K2|とし、用語K1、K2を論理積条件(AND条件)で検索したときのヒット件数を|K1 AND K2|とし、用語K1、K2を論理和条件(OR条件)で検索したときのヒット件数を|K1 OR K2|と標記することにすると、共起頻度、相互情報量、Dice係数、Jaccard係数、Simpson係数はそれぞれ以下のように定義される。共起度は、2つの用語の文書内での共起の度合いを数値化する指標であるため、いずれの定義でも|K1 AND K2|の項が必須である。
共起頻度 = |K1 AND K2|
相互情報量 = −log{N×|K1 AND K2|/(|K1|×|K2|)}
Dice係数 = |K1 AND K2|/(|K1|+|K2|)
Jaccard係数 = |K1 AND K2|/|K1 OR K2|
Simpson係数 = |K1 AND K2|/min(|K1|,|K2|)
Cosine係数 = |K1 AND K2|/√(|K1|×|K2|)
There are various methods for calculating the degree of co-occurrence, such as co-occurrence frequency, mutual information, Dice coefficient, Jaccard coefficient, Simpson coefficient, and Cosine coefficient. The total number of web pages is N, the number of hits in the web search engine for the terms K1 and K2 is | K1 | and | K2 |, respectively, and the number of hits when the terms K1 and K2 are searched with the AND condition | K1 AND K2 | and if the terms K1 and K2 are searched with the logical sum condition (OR condition) and the number of hits is marked as | K1 OR K2 |, the co-occurrence frequency, mutual information, Dice coefficient, Jaccard coefficient and Simpson coefficient are defined as follows. Since the co-occurrence degree is an index for quantifying the degree of co-occurrence of two terms in a document, the term | K1 AND K2 | is essential in any definition.
Co-occurrence frequency = | K1 AND K2 |
Mutual information = -log {N × | K1 AND K2 | / (| K1 | × | K2 |)}
Dice coefficient = | K1 AND K2 | / (| K1 | + | K2 |)
Jaccard coefficient = | K1 AND K2 | / | K1 OR K2 |
Simpson coefficient = | K1 AND K2 | / min (| K1 |, | K2 |)
Cosine coefficient = | K1 AND K2 | / √ (| K1 | × | K2 |)
特許文献1では、ヒット数の少ない人名の共起度が不当に高く評価されるのを防ぐため、閾値付Simpson係数も例として用いている。これは、|K1|と|K2|の最小値min(|K1|,|K2|)が閾値kよりも大きい場合には、共起度として通常のSimpson係数を用いるが、min(|K1|,|K2|)が閾値k以下の場合は共起度を0として計算する方法である。 In Patent Document 1, a Simpson coefficient with a threshold is also used as an example in order to prevent the co-occurrence degree of a person with a small number of hits from being unduly evaluated. When the minimum value min (| K1 |, | K2 |) of | K1 | and | K2 | is larger than the threshold value k, a normal Simpson coefficient is used as the co-occurrence, but min (| K1 | , | K2 |) is equal to or less than the threshold value k, the co-occurrence is calculated as 0.
また、特許文献1は人名のみを対象とした技術であるが、入力データを組織名や地名などの用語リストに置き換えることによって、人名以外の用語間の関係を得ることは可能である。 Further, Patent Document 1 is a technique that targets only personal names, but it is possible to obtain relationships between terms other than personal names by replacing input data with term lists such as organization names and place names.
共起度を求める関連する技術における第1の問題点は、入力データとなる用語リストが大規模になると、共起度を求めるために必要な検索の回数が飛躍的に増大してしまうことである。例えば、入力データとなる用語リストが100語である場合、任意の2語の組み合わせは100×99/2!=4,950通り存在する。Simpson係数を使って用語間の共起度を求めることにすると、|K1 AND K2|を全ての組み合わせに対して求めるために4,950回、min(|K1|,|K2|)を求めるために100回の検索が必要で、Web検索エンジンに対する検索回数は合計5,050回になる。 The first problem in the related technology for obtaining the co-occurrence degree is that the number of searches necessary for obtaining the co-occurrence degree increases dramatically when the term list as input data becomes large. is there. For example, if the term list as input data is 100 words, the combination of any two words is 100 × 99/2! = There are 4,950 ways. If we use the Simpson coefficient to determine the co-occurrence between terms, we need 4,950 times to find | K1 AND K2 | for all combinations, and 100 to find min (| K1 |, | K2 |). Search is required, and the total number of searches for the Web search engine is 5,050.
同様に、用語リストが1万語になると、10,000×9,999/2!+10,000=50,005,000回もの検索が必要になってしまう。Web検索エンジンに対して短時間に大量のクエリを発行して検索するわけにはいかないが、仮に1秒間に1回のペースで検索を行ったとしても、1万語の用語の関係を全て求めるためには、50,005,000回/(3,600秒×24時間)=579日もかかってしまうことになる。一般に、用語リストの語数がn倍になると、検索回数はnの2乗に比例して増大する。これは、共起度の計算のために、2つの用語の論理積条件で検索を行うことが原因である。 Similarly, if the term list reaches 10,000 words, 10,000 × 9,999 / 2! + 10,000 = 50,005,000 searches are required. Although it is not possible to issue a large number of queries to a Web search engine in a short time, even if a search is performed at a rate of once per second, all 10,000 word terms are obtained. Therefore, 50,005,000 times / (3,600 seconds × 24 hours) = 579 days will be required. In general, when the number of words in the term list is increased by n times, the number of searches increases in proportion to the square of n. This is because a search is performed with a logical product condition of two terms for calculating the co-occurrence degree.
第2の問題点は、用語間の共起度を近似的に計算することが不可能なことである。例えば、用語K1で検索を行った場合、検索結果の文書の中に用語K2が100回出現しているのに対し、用語K3が10回しか出現していなかったとすると、用語K2と用語K3を検索しなくても、Kl−K2の共起度の方がK1−K3の共起度よりも強い可能性があることは推定できる。しかし、特許文献1の発明では、Web検索エンジンを使って、2つの用語の共起度を求めない限り、その共起度を計算することはできない。 The second problem is that it is impossible to approximately calculate the co-occurrence degree between terms. For example, if a search is performed using the term K1, the term K2 appears 100 times in the search result document, whereas the term K3 appears only 10 times. Even without searching, it can be estimated that the co-occurrence degree of Kl-K2 may be stronger than the co-occurrence degree of K1-K3. However, in the invention of Patent Document 1, unless the co-occurrence degree of two terms is obtained using a Web search engine, the co-occurrence degree cannot be calculated.
第3の問題点は、入力データである用語リストに含まれていない新語を抽出しながら再帰的に共起度を計算することが不可能なことである。その理由は、特許文献1には、新語を抽出する手段がないからである。また、仮に新語を抽出する手段があったとしても、新語の抽出によって用語リストが増大すると、第1の問題点で指摘した問題が発生し、検索回数の幾何級数的な増大を招いてしまう。 The third problem is that it is impossible to recursively calculate the co-occurrence degree while extracting new words that are not included in the term list as input data. The reason is that Patent Document 1 does not have means for extracting a new word. Even if there is a means for extracting a new word, if the term list increases due to the extraction of a new word, the problem pointed out in the first problem occurs, and the number of searches is increased geometrically.
本発明の目的は、入力データとして与えられた用語リストに対して、用語間の共起度を少ない検索回数で近似的に求めることによって、大規模で近似度の高い共起度グラフを抽出できる用語共起度抽出装置を提供することにある。 It is an object of the present invention to extract a large-scale co-occurrence degree graph having a high degree of approximation by approximately obtaining the co-occurrence degree between terms with a small number of searches for a term list given as input data. The object is to provide a term co-occurrence degree extraction device.
本発明の第1の観点に係る用語共起度抽出装置は、
検索対象の用語をノードとし、前記検索対象の任意の2つの用語について、該2つの用語が同一文書で出現する度合いを示す共起度を該2つの用語に対応するノードの間のエッジとする、共起度グラフを抽出する用語共起度抽出装置であって、
未検索の用語について、用語間の共起度が求まる可能性を判断する共起度検出確度判定手段と、
前記共起度検出確度判定手段で判定した可能性に基づいて、用語の検索順を決定する検索戦略決定手段と、
前記検索戦略決定手段で決定した順序に従って、検索対象の用語1語ずつをキーワードとして、文書データを検索する検索手段と、
前記検索手段で検索した用語を含む検索結果文書から、該検索結果文書に含まれる検索対象の用語について、用語間の共起度を近似的に求める共起度計算手段と、
を備えることを特徴とする。
The term co-occurrence degree extraction device according to the first aspect of the present invention is:
A search target term is a node, and for any two terms of the search target, a co-occurrence degree indicating the degree of appearance of the two terms in the same document is an edge between the nodes corresponding to the two terms. , A term co-occurrence degree extraction device that extracts a co-occurrence degree graph,
For unsearched terms, co-occurrence detection accuracy determination means for determining the possibility of finding the co-occurrence between terms,
Search strategy determination means for determining the search order of terms based on the possibility determined by the co-occurrence detection accuracy determination means;
Search means for searching for document data using each word as a keyword as a keyword according to the order determined by the search strategy determination means;
A co-occurrence degree calculating means for approximately obtaining a co-occurrence degree between terms for a search target term included in the search result document from a search result document including the term searched by the search means;
It is characterized by providing.
好ましくは、所定の規則に基づいて、前記検索結果文書から、前記検索対象の用語に含まれていない用語を抽出する用語抽出手段を備える。 Preferably, the apparatus includes a term extracting unit that extracts a term not included in the search target term from the search result document based on a predetermined rule.
さらに好ましくは、前記検索結果文書における用語の出現傾向から、動的に用語を抽出する規則を生成する抽出規則学習手段を備える。 More preferably, an extraction rule learning means for dynamically generating a rule for extracting a term from the appearance tendency of the term in the search result document is provided.
なお、前記抽出規則学習手段は、
前記検索結果文書における用語の周辺に出現する文字列を列挙し、
前記検索対象の用語に登録されている用語の単語属性、および該単語属性を一般化した正規表現によって、前記周辺文字列から規則候補の集合を生成し、
前記規則候補の出現頻度および/または用語抽出率の値をそれぞれの所定の閾値と比較して、前記規則候補を絞り込む、
ことによって前記用語を抽出する規則を生成してもよい。
The extraction rule learning means is
List character strings that appear around terms in the search result document,
A set of rule candidates is generated from the surrounding character string by using a word attribute of the term registered in the search target term and a regular expression that generalizes the word attribute,
The rule candidates are narrowed down by comparing the frequency of appearance of the rule candidates and / or the value of the term extraction rate with respective predetermined threshold values.
By doing so, a rule for extracting the term may be generated.
好ましくは、前記用語抽出手段は、単語属性および単語属性の正規表現によって記述された所定の規則に基づいて用語を抽出する。 Preferably, the term extraction means extracts a term based on a predetermined rule described by a word attribute and a regular expression of the word attribute.
好ましくは、前記共起度検出確度判定手段は、未検索の用語について、用語間の共起度が求まる可能性を、新たに抽出される用語の数の期待値、前記共起度グラフにおいて両側未検索から片側検索済みになるエッジの数、片側検索済みから両側検索済みになるエッジの数もしくは片側検索済みのままだが情報量の増加が期待できるエッジの数のいずれか、またはそれらの組み合わせからなる近似グラフスコアとして算出し、
前記検索戦略決定手段は、前記近似グラフスコアの上位の1または複数の用語を検索候補語とする。
Preferably, the co-occurrence degree detection accuracy determination means determines the possibility of obtaining the co-occurrence degree between terms for unsearched terms, the expected value of the number of newly extracted terms, and both sides in the co-occurrence degree graph. From the number of edges that have been searched from one side to the one side, the number of edges that have been searched from one side to the two sides, the number of edges that have been searched from one side but can be expected to increase the amount of information, or a combination of these As an approximate graph score
The search strategy determination means uses one or more terms higher in the approximate graph score as search candidate words.
好ましくは、前記共起度計算手段は、前記共起度グラフにおいて、
検索済みの2つの用語に対応するノードの間のエッジである共起度を計算するとともに、
両側またはいずれか一方のノードの用語が未検索のエッジである共起度を、前記検索結果文書に基づく近似的な共起度として計算する。
Preferably, the co-occurrence degree calculating means in the co-occurrence degree graph,
Calculate the co-occurrence that is the edge between the nodes corresponding to the two searched terms,
The co-occurrence degree in which the term of both nodes or any one of the nodes is an unsearched edge is calculated as an approximate co-occurrence degree based on the search result document.
本発明の第2の観点に係る用語共起度抽出方法は、
検索対象の用語をノードとし、前記検索対象の任意の2つの用語について、該2つの用語が同一文書で出現する度合いを示す共起度を該2つの用語に対応するノードの間のエッジとする、共起度グラフを抽出する用語共起度抽出方法であって、
未検索の用語について、用語間の共起度が求まる可能性を判断する共起度検出確度判定ステップと、
前記共起度検出確度判定ステップで判定した可能性に基づいて、用語の検索順を決定する検索戦略決定ステップと、
前記検索戦略決定ステップで決定した順序に従って、検索対象の用語1語ずつをキーワードとして、文書データを検索する検索ステップと、
前記検索ステップで検索した用語を含む検索結果文書から、該検索結果文書に含まれる検索対象の用語について、用語間の共起度を近似的に求める共起度計算ステップと、
を備えることを特徴とする。
The term co-occurrence degree extraction method according to the second aspect of the present invention is:
A search target term is a node, and for any two terms of the search target, a co-occurrence degree indicating the degree of appearance of the two terms in the same document is an edge between the nodes corresponding to the two terms. , A term co-occurrence degree extraction method for extracting a co-occurrence degree graph,
For unsearched terms, a co-occurrence detection accuracy determination step for determining the possibility of finding the co-occurrence between terms;
A search strategy determination step for determining a search order of terms based on the possibility determined in the co-occurrence detection accuracy determination step;
In accordance with the order determined in the search strategy determination step, a search step for searching the document data using each word to be searched as a keyword,
A co-occurrence degree calculation step of approximately obtaining a co-occurrence degree between terms for a search target term included in the search result document from a search result document including the term searched in the search step;
It is characterized by providing.
好ましくは、所定の規則に基づいて、前記検索結果文書から、前記検索対象の用語に含まれていない用語を抽出する用語抽出ステップを備えることを特徴とする。 Preferably, the method includes a term extracting step of extracting a term that is not included in the search target term from the search result document based on a predetermined rule.
さらに好ましくは、前記検索結果文書における用語の出現傾向から、動的に用語を抽出する規則を生成する抽出規則学習ステップを備えることを特徴とする。 More preferably, the method further comprises an extraction rule learning step of generating a rule for dynamically extracting a term from the appearance tendency of the term in the search result document.
なお、前記抽出規則学習ステップは、
前記検索結果文書における用語の周辺に出現する文字列を列挙し、
前記検索対象の用語に登録されている用語の単語属性、および該単語属性を一般化した正規表現によって、前記周辺文字列から規則候補の集合を生成し、
前記規則候補の出現頻度および/または用語抽出率の値をそれぞれの所定の閾値と比較して、前記規則候補を絞り込むことによって前記用語を抽出する規則を生成してもよい。
The extraction rule learning step includes
List character strings that appear around terms in the search result document,
A set of rule candidates is generated from the surrounding character string by using a word attribute of the term registered in the search target term and a regular expression that generalizes the word attribute,
A rule for extracting the term may be generated by comparing the frequency of appearance of the rule candidate and / or the value of the term extraction rate with respective predetermined threshold values and narrowing down the rule candidate.
好ましくは、前記用語抽出ステップは、単語属性および単語属性の正規表現によって記述された所定の規則に基づいて用語を抽出する。 Preferably, the term extracting step extracts a term based on a predetermined rule described by a word attribute and a regular expression of the word attribute.
好ましくは、前記共起度検出確度判定ステップは、未検索の用語について、用語間の共起度が求まる可能性を、新たに抽出される用語の数の期待値、前記共起度グラフにおいて両側未検索から片側検索済みになるエッジの数、片側検索済みから両側検索済みになるエッジの数もしくは片側検索済みのままだが情報量の増加が期待できるエッジの数のいずれか、またはそれらの組み合わせからなる近似グラフスコアとして算出し、
前記検索戦略決定ステップは、前記近似グラフスコアの上位の1または複数の用語を検索候補語とする。
Preferably, in the co-occurrence degree detection accuracy determination step, with respect to an unsearched term, the possibility that the co-occurrence degree between terms is obtained is calculated based on an expected value of the number of newly extracted terms, both sides in the co-occurrence degree graph. From the number of edges that have been searched from one side to the one side, the number of edges that have been searched from one side to the two sides, the number of edges that have been searched from one side but can be expected to increase the amount of information, or a combination of these As an approximate graph score
In the search strategy determination step, one or more terms higher in the approximate graph score are set as search candidate words.
好ましくは、前記共起度計算ステップは、前記共起度グラフにおいて、
検索済みの2つの用語に対応するノードの間のエッジである共起度を計算するとともに、
両側またはいずれか一方のノードの用語が未検索のエッジである共起度を、前記検索結果文書に基づく近似的な共起度として計算する。
Preferably, in the co-occurrence degree graph, the co-occurrence degree calculation step includes:
Calculate the co-occurrence that is the edge between the nodes corresponding to the two searched terms,
The co-occurrence degree in which the term of both nodes or any one of the nodes is an unsearched edge is calculated as an approximate co-occurrence degree based on the search result document.
本発明の第3の観点に係る用語共起度抽出プログラムは、
検索対象の用語をノードとし、前記検索対象の任意の2つの用語について、該2つの用語が同一文書で出現する度合いを示す共起度を該2つの用語に対応するノードの間のエッジとする、共起度グラフを抽出する用語共起度抽出プログラムであって、
コンピュータを、
未検索の用語について、用語間の共起度が求まる可能性を判断する共起度検出確度判定手段と、
前記共起度検出確度判定手段で判定した可能性に基づいて、用語の検索順を決定する検索戦略決定手段と、
前記検索戦略決定手段で決定した順序に従って、検索対象の用語1語ずつをキーワードとして、文書データを検索する検索手段と、
前記検索手段で検索した用語を含む検索結果文書から、該検索結果文書に含まれる検索対象の用語について、用語間の共起度を近似的に求める共起度計算手段と、
として機能させることを特徴とする。
The term co-occurrence degree extraction program according to the third aspect of the present invention is:
A search target term is a node, and for any two terms of the search target, a co-occurrence degree indicating the degree of appearance of the two terms in the same document is an edge between the nodes corresponding to the two terms. , A term co-occurrence degree extraction program that extracts a co-occurrence degree graph,
Computer
For unsearched terms, co-occurrence detection accuracy determination means for determining the possibility of finding the co-occurrence between terms,
Search strategy determination means for determining the search order of terms based on the possibility determined by the co-occurrence detection accuracy determination means;
Search means for searching for document data using each word as a keyword as a keyword according to the order determined by the search strategy determination means;
A co-occurrence degree calculating means for approximately obtaining a co-occurrence degree between terms for a search target term included in the search result document from a search result document including the term searched by the search means;
It is made to function as.
好ましくは、所定の規則に基づいて、前記検索結果文書から、前記検索対象の用語に含まれていない用語を抽出する用語抽出手段としての機能を備えることを特徴とする。 Preferably, it has a function as a term extracting means for extracting a term not included in the term to be searched from the search result document based on a predetermined rule.
さらに好ましくは、前記検索結果文書における用語の出現傾向から、動的に用語を抽出する規則を生成する抽出規則学習手段としての機能を備える。 More preferably, it has a function as an extraction rule learning means for generating a rule for dynamically extracting a term from the appearance tendency of the term in the search result document.
なお、前記抽出規則学習手段は、
前記検索結果文書における用語の周辺に出現する文字列を列挙し、
前記検索対象の用語に登録されている用語の単語属性、および該単語属性を一般化した正規表現によって、前記周辺文字列から規則候補の集合を生成し、
前記規則候補の出現頻度および/または用語抽出率の値をそれぞれの所定の閾値と比較して、前記規則候補を絞り込む、
ことによって前記用語を抽出する規則を生成してもよい。
The extraction rule learning means is
List character strings that appear around terms in the search result document,
A set of rule candidates is generated from the surrounding character string by using a word attribute of the term registered in the search target term and a regular expression that generalizes the word attribute,
The rule candidates are narrowed down by comparing the frequency of appearance of the rule candidates and / or the value of the term extraction rate with respective predetermined threshold values.
By doing so, a rule for extracting the term may be generated.
好ましくは、前記用語抽出手段は、単語属性および単語属性の正規表現によって記述された所定の規則に基づいて用語を抽出する。 Preferably, the term extraction means extracts a term based on a predetermined rule described by a word attribute and a regular expression of the word attribute.
好ましくは、前記共起度検出確度判定手段は、未検索の用語について、用語間の共起度が求まる可能性を、新たに抽出される用語の数の期待値、前記共起度グラフにおいて両側未検索から片側検索済みになるエッジの数、片側検索済みから両側検索済みになるエッジの数もしくは片側検索済みのままだが情報量の増加が期待できるエッジの数のいずれか、またはそれらの組み合わせからなる近似グラフスコアとして算出し、
前記検索戦略決定手段は、前記近似グラフスコアの上位の1または複数の用語を検索候補語とする。
Preferably, the co-occurrence degree detection accuracy determination means determines the possibility of obtaining the co-occurrence degree between terms for unsearched terms, the expected value of the number of newly extracted terms, and both sides in the co-occurrence degree graph. From the number of edges that have been searched from one side to the one side, the number of edges that have been searched from one side to the two sides, the number of edges that have been searched from one side but can be expected to increase the amount of information, or a combination of these As an approximate graph score
The search strategy determination means uses one or more terms higher in the approximate graph score as search candidate words.
好ましくは、前記共起度計算手段は、前記共起度グラフにおいて、
検索済みの2つの用語に対応するノードの間のエッジである共起度を計算するとともに、
両側またはいずれか一方のノードの用語が未検索のエッジである共起度を、前記検索結果文書に基づく近似的な共起度として計算する。
Preferably, the co-occurrence degree calculating means in the co-occurrence degree graph,
Calculate the co-occurrence that is the edge between the nodes corresponding to the two searched terms,
The co-occurrence degree in which the term of both nodes or any one of the nodes is an unsearched edge is calculated as an approximate co-occurrence degree based on the search result document.
本発明によれば、検索対象の用語の数に対して、検索回数が幾何級数的に増加するのを防止できる。また、少ない検索回数でもより多くの用語の関係を近似的に求めることができる。さらに、少ない検索回数でもより真の値に近い共起度グラフを求めることができる。 According to the present invention, the number of searches can be prevented from increasing geometrically with respect to the number of search target terms. In addition, the relationship between more terms can be obtained approximately even with a small number of searches. Furthermore, a co-occurrence degree graph closer to the true value can be obtained even with a small number of searches.
本発明では、グラフ理論の用語を用いて、検索対象の用語をノードとし、用語間の共起度をエッジとして、検索対象の用語の関係をグラフ(共起度グラフ)で表す。共起度グラフは、エッジに値(共起度)が付いた重み付きグラフであり、通常、ループや多重エッジを含まない単純グラフで表される。2つの用語の間の共起度が0または所定のしきい値以下である場合には、エッジがないものとする。 In the present invention, using terms of graph theory, a search target term is a node, a co-occurrence degree between terms is an edge, and a relationship between search target terms is represented by a graph (co-occurrence degree graph). The co-occurrence degree graph is a weighted graph with a value (co-occurrence degree) at an edge, and is usually represented by a simple graph that does not include a loop or multiple edges. If the co-occurrence between two terms is 0 or less than a predetermined threshold, it is assumed that there is no edge.
(実施の形態1)
図1は、本発明の実施の形態1に係る用語共起度抽出装置100の構成例を示すブロック図である。本発明の実施の形態1に係る用語共起度抽出装置100は、記憶装置1と、処理装置2と、キーボード等の入力部3と、ディスプレイやプリンタ等の出力部4を含む。また、処理装置2は、インターネットやイントラネット等のネットワーク5を介してWeb検索エンジン等の公開データ6にアクセス可能な構成となっている。
(Embodiment 1)
FIG. 1 is a block diagram showing a configuration example of a term co-occurrence
記憶装置1は、用語記憶部11と、共起度データ記憶部13とを含む。また、処理装置2は、検索戦略決定部21と、共起度検出確度判定部20と、データ検索部22と、共起度計算部24を含む。
The storage device 1 includes a
用語記憶部11には、共起度抽出の対象となる用語リストが格納されている。図2は、用語記憶部11に格納されるデータの例を示す。図2では、人名のリスト、用語ID、用語、検索フラグ、出現文書IDがテーブルとして格納されている。図2を見ると、用語IDがK01の「田中一郎」の検索フラグは「未」、出現文書IDは「なし」となっている。これは、「田中一郎」というキーワードで検索を行ったことがなく、また、出現する文書も見つかっていないことを意味している。
The
また、用語IDがK02の「高橋二郎」の検索フラグは「済」、出現文書IDは「D01,D02,D04,D05,D10,D13,D15,D18」となっている。これは、「高橋二郎」というキーワードで検索を行ったことがあり、また、検索結果として、文書IDが「D01,D02,D04,D05,D10,D13,D15,D18」の8件の文書がヒットしていることを意味している。 The search flag of “Jiro Takahashi” with the term ID K02 is “Done”, and the appearance document ID is “D01, D02, D04, D05, D10, D13, D15, D18”. This has been searched with the keyword "Jiro Takahashi", and as a search result, eight documents with document IDs "D01, D02, D04, D05, D10, D13, D15, D18" It means that you are hit.
図2において、用語IDがK03の「佐藤花子」の検索フラグは「未」、出現文書IDは「D02,D05,D10,D18」となっている。これは、「佐藤花子」というキーワードで検索を行ったことはないが、「佐藤花子」が出現する文書IDとして「D02,D05,D10,D18」の4件の文書が得られていることを意味している。「佐藤花子」が未検索にも拘わらず、出現文書IDが得られているのは、他の用語を検索した結果の文書中に、「佐藤花子」が出現したことを検出したからである。例えば図2では、文書D02は「高橋二郎」を検索した結果得られたものであり、その中に「佐藤花子」も出現していたと解釈することができる。 In FIG. 2, the search flag of “Hanako Sato” with the term ID K03 is “not yet” and the appearance document ID is “D02, D05, D10, D18”. This is because we have never searched with the keyword “Hanako Sato”, but four documents “D02, D05, D10, D18” are obtained as document IDs where “Hanako Sato” appears. I mean. The reason why the appearance document ID is obtained even though “Sato Hanako” has not been searched is that it has been detected that “Hanako Sato” has appeared in the document as a result of searching for other terms. For example, in FIG. 2, the document D02 is obtained as a result of searching for “Jiro Takahashi”, and it can be interpreted that “Sato Hanako” also appeared therein.
文書D05,D10,D18についても同様の解釈が可能である。以下同様に、用語IDがK04の「鈴木三郎」は検索済みで、出現文書として「D01,D03,D05,D07,D10,D15,D17,D20」の8件の文書が得られていることを意味している。また、用語IDがK05の「田中太郎」は未検索だが、出現文書として「D03,D05,D07,D11,D18」の5件の文書が得られていることを意味している。 The same interpretation is possible for the documents D05, D10, and D18. Similarly, “Saburo Suzuki” with the term ID “K04” has been searched, and eight documents “D01, D03, D05, D07, D10, D15, D17, D20” have been obtained as appearance documents. I mean. Further, it means that “Taro Tanaka” with the term ID “K05” is not searched, but five documents “D03, D05, D07, D11, D18” are obtained as appearing documents.
なお、ここでは説明を簡潔にするため、用語記憶部11に格納される用語リストを用語ID、用語、検索フラグ、出現文書IDからなるテーブルとして説明したが、用語IDを使わず用語そのものを主キーとして用いたり、出現文書IDの変わりにURL(Uniform Resource Locator)やファイルのアドレスを用いたり、出現文書の最終更新日を一緒に格納したりするなどの方法も考えられ、本実施の形態に述べる方法に限定されない。
Here, for the sake of brevity, the term list stored in the
共起度データ記憶部13には、用語と用語の関係が重み付のグラフ構造として格納される。図3は、共起度データ記憶部13に格納される共起度グラフの例を示す。図3を参照すると、用語K01と用語K02の共起度は0.1、用語K01と用語K05の共起度は0.5であることが分かる。また、検索済みの用語はハッチングを付したノードで、未検索の用語は白色のノードとして表現されているため、用語K01と用語K02の共起度0.1は、両方の用語が検索された結果、算出されたものであることが分かる。また、用語K01と用語K11の共起度0.1は、用語K01の片方だけの検索結果に基づいて算出されたものであることが分かる。さらに、用語K15と用語16はどちらも未検索だが、他の用語の検索結果文書に出現した頻度を使って共起度0.5が算出されていることが分かる。
The co-occurrence degree
共起度グラフの算出について、両側のノードが検索済みか未検索かの組み合わせは、(a)両側検索済み、(b)片側検索済み、(c)両側未検索の3通り存在する。図4は、3つの組み合わせについて、近似的な共起度計算を説明する概念図である。 Regarding the calculation of the co-occurrence degree graph, there are three combinations of whether the nodes on both sides have been searched or not searched: (a) both sides searched, (b) one side searched, and (c) both sides not searched. FIG. 4 is a conceptual diagram illustrating approximate co-occurrence calculation for the three combinations.
図4(a)は、両側検索済みの用語の共起度の概念図である。左側の円K1が用語K1が出現する文書集合、右側の円K2が用語K2が出現する文書集合を表す。この場合、用語K1と用語K2は両方とも検索済みであるため、共起頻度、相互情報量、Dice係数、Jaccard係数、Simpson係数、Cosine係数のいずれの定義であっても誤差なく共起度を計算することができる。例えば、用語記憶部11に格納されているデータが図2の通りであった場合、用語K02と用語K04は両側検索済みの共起度を算出することができる。図2より、用語K02が出現する文書は「D01,D02,D04,D05,D10,D13,D15,D18」の8件、用語K04が出現する文書は「D01,D03,D05,D07,D10,D15,D17,D20」の8件、用語K02と用語K04が両方出現する文書は、「D01,D05,D10,D15」の4件であるので、Simpson係数を使って共起度を算出したとすると、|K02 AND K04|/min(|K02|,|K04|)=4/8=0.5となる。
FIG. 4A is a conceptual diagram of the degree of co-occurrence of terms that have been searched on both sides. The left circle K1 represents a document set in which the term K1 appears, and the right circle K2 represents a document set in which the term K2 appears. In this case, since both terms K1 and K2 have already been searched, the co-occurrence degree can be calculated without error regardless of the definition of co-occurrence frequency, mutual information, Dice coefficient, Jaccard coefficient, Simpson coefficient, and Cosine coefficient. Can be calculated. For example, when the data stored in the
図4(b)は、片側検索済みの用語の共起度の概念図である。左側の円K1が用語K1が出現する文書集合、右側の点線の円K2が用語K2が出現する真の文書集合、その内側の長円K2’が他の用語を検索した結果、用語K2が抽出された文書集合を表す。この場合、用語K1は検索済みであるため、用語K1が出現する文書集合は既に明らかになっている。一方、用語K2については、他の用語の検索結果から抽出された文書集合は、用語K2が出現する真の文書集合の部分集合のみである。このような場合でも、用語K1が出現する文書集合と用語K2が抽出された文書集合との積集合に含まれる文書の数は|K1 AND K2|に一致する。なぜなら、用語K1と用語K2が共起している文書集合は、用語K1が出現する文書集合のうち、用語K2が抽出された文書集合として求めることができるからである。この場合、用語間の近似的な共起度を以下のようにして算出することができる。 FIG. 4B is a conceptual diagram of the degree of co-occurrence of terms that have been searched on one side. The left circle K1 is the document set in which the term K1 appears, the right dotted circle K2 is the true document set in which the term K2 appears, and the inner ellipse K2 'searches for other terms, and the term K2 is extracted. Represents a document set. In this case, since the term K1 has already been searched, the document set in which the term K1 appears has already been clarified. On the other hand, for the term K2, the document set extracted from the search results of other terms is only a subset of the true document set in which the term K2 appears. Even in such a case, the number of documents included in the product set of the document set in which the term K1 appears and the document set from which the term K2 is extracted matches | K1 AND K2 |. This is because the document set in which the term K1 and the term K2 co-occur can be obtained as the document set from which the term K2 is extracted from the document set in which the term K1 appears. In this case, the approximate co-occurrence degree between terms can be calculated as follows.
共起度の指標として、共起頻度を用いる場合は、|K1 AND K2|が得られているため、用語K1と用語K2の共起度を誤差なく算出することが可能である。例えば、用語記憶部11に格納されているデータが図2の通りであった場合、用語K02と用語K03が両方出現する文書は「D02,D05,D10,D18」の4件であるため、共起頻度は4となる。
When the co-occurrence frequency is used as the co-occurrence degree index, | K1 AND K2 | is obtained, and therefore the co-occurrence degree of the terms K1 and K2 can be calculated without error. For example, if the data stored in the
共起度の指標として、相互情報量を用いる場合は、用語K2が出現する文書の数|K2|の代わりに、用語K2が抽出された文書の数|K2|’を用いることによって、近似的に
−log{N×|K1 AND K2|/(|K1|×|K2|’)}
として共起度を計算することが可能である。図4(b)から明らかなように、|K2|>|K2|’であるため、片側検索済みにおける近似的な相互情報量の値は、両側検索済みにおける真の相互情報量の値の下限が分かっていることになる。
When mutual information is used as an index of co-occurrence, it is approximated by using the number of documents from which the term K2 is extracted | K2 | 'instead of the number of documents in which the term K2 appears | K2 | -Log {N × | K1 AND K2 | / (| K1 | × | K2 | ')}
It is possible to calculate the degree of co-occurrence as As apparent from FIG. 4B, since | K2 |> | K2 | ', the approximate mutual information value in the one-sided search is the lower limit of the true mutual information value in the two-sided searched Will be known.
例えば、Web検索エンジンに登録されている文書数が1,000,000ページで、用語記憶部11に格納されているデータが図2の通りであった場合、用語K02と用語K03の共起度を近似的な総合情報量で求める方法は次のようになる。用語K02と用語K03が両方出現する文書は「D02,D05,D10,D18」の4件、用語K02が出現する文書は「D01,D02,D04,D05,D10,D13,D15,D18」の8件、用語K03が抽出された文書は「D02,D05,D10,D18」の4件であるため、近似的な相互情報量は−log(1,000,000×4/(8×4)}=−5.4となる。この値は、その後、用語K2が抽出される文書が増えることによって、大きくなる可能性はあるが、これより小さくなる可能性はない。
For example, if the number of documents registered in the Web search engine is 1,000,000 pages and the data stored in the
共起度の指標として、Dice係数を用いる場合は、用語K2が出現する文書の数|K2|の代わりに、用語K2が抽出された文書の数|K2|’を用いることによって、近似的に、|K1 AND K2|/(|K1| + |K2|’)として共起度を計算することが可能である。この場合、片側検索済みにおける近似的なDice係数は、両側検索済みにおける真のDice係数の値の上限となる。 When the Dice coefficient is used as an index of co-occurrence, the number of documents from which the term K2 is extracted | K2 | 'is used instead of the number of documents in which the term K2 appears | K2 | , | K1 AND K2 | / (| K1 | + | K2 | ′) can be calculated. In this case, the approximate Dice coefficient after one-side search is the upper limit of the true Dice coefficient value after both-side search.
例えば、用語記憶部11に格納されているデータが図2の通りであった場合、用語K02と用語K03の共起度を近似的なDice係数で求める方法は次のようになる。用語K02と用語K03が両方出現する文書は「D02,D05,D10,D18」の4件、用語K02が出現する文書は「D01,D02,D04,D05,D10,D13,D15,D18」の8件、用語K03が抽出された文書は「D02,D05,D10,D18」の4件であるため、近似的なDice係数は4/(4+8)=0.3となる。この値は、その後、用語K2が抽出される文書が増えることによって、小さくなる可能性はあるが、これ以上大きくなる可能性はない。
For example, when the data stored in the
共起度の指標として、Jaccard係数を用いる場合は、|K1
OR K2|の代わりに用語K1が出現する文書集合と用語K2が抽出された文書集合の和集合に含まれる文書の数|K1 OR K2|’を用いることによって、近似的に|K1 AND K2|/|K1 OR K2|’として共起度を計算することが可能である。この場合、片側検索済みにおける近似的なJaccard係数は、両側検索済みにおける真のJaccard係数の値の上限となる。
When using the Jaccard coefficient as an index of co-occurrence, | K1
The number of documents included in the union of the document set in which the term K1 appears instead of OR K2 | and the document set from which the term K2 is extracted | K1 OR K2 | It is possible to calculate the co-occurrence degree as / | K1 OR K2 | '. In this case, the approximate Jaccard coefficient after one-side search is the upper limit of the true Jaccard coefficient value after both-side search.
例えば、用語記憶部11に格納されているデータが図2の通りであった場合、用語K02と用語K03の共起度を近似的なJaccard係数で求める方法は次のようになる。用語K02と用語K03が両方出現する文書は「D02,D05,D10,D18」の4件、用語K02が出現する文書集合と用語K03が抽出された文書の和集合は「D01,D02,D04,D05,D10,D13,D15,D18」の8件であるため、近似的なJaccard係数は4/8=0.5となる。この値は、その後、用語K2が抽出される文書が増えることによって、小さくなる可能性はあるが、これより大きくなる可能性はない。
For example, when the data stored in the
共起度の指標として、Simpson係数を用いる場合は、用語K2が出現する文書の数|K2|の代わりに、用語K2が抽出された文書の数|K2|’を用いることによって、近似的に、
|K1 AND K2|/min(|K1|,|K2|’)
として共起度を計算することが可能である。この場合、片側検索済みにおける近似的なSimpson係数は、両側検索済みにおける真のSimpson係数の値の上限となる。
When using the Simpson coefficient as an index of co-occurrence, the number of documents from which the term K2 is extracted | K2 | 'is used instead of the number of documents in which the term K2 appears | K2 | ,
| K1 AND K2 | / min (| K1 |, | K2 | ')
It is possible to calculate the degree of co-occurrence as In this case, the approximate Simpson coefficient after one-sided search is the upper limit of the true Simpson coefficient value after two-sided search.
例えば、用語記憶部11に格納されているデータが図2の通りであった場合、用語K02と用語K03の共起度を近似的なSimpson係数で求める方法は次のようになる。用語K02と用語K03が両方出現する文書は「D02,D05,D10,D18」の4件、用語K02が出現する文書は「D01,D02,D04,D05,D10,D13,D15,D18」の8件、用語K03が抽出された文書は「D02,D05,D10,D18」の4件であるため、近似的なSimpson係数は4/min(8,4)=1となる。この値は、その後、用語K2が抽出される文書が増えることによって、小さくなる可能性はあるが、これより大きくなる可能性はない。
For example, when the data stored in the
さらに細かく場合分けを考えると、検索済みの用語K1が出現する文書数|K1|と未検索の用語K2が抽出された文書数|K2|’を比較した場合、|K1|<|K2|’であれば、片側検索済みの場合であっても、両側検索済みにおける真のSimpson係数の値と等しくなる。 Considering more detailed classification, if the number of documents in which the searched term K1 appears | K1 | is compared with the number of documents in which the unsearched term K2 is extracted | K2 | ', | K1 | <| K2 |' Then, even if one-sided search has been completed, the value is equal to the true Simpson coefficient value in both-sided search.
共起度の指標として、Cosine係数を用いる場合は、用語K2が出現する文書の数|K2|の代わりに、用語K2が抽出された文書の数|K2|’を用いることによって、近似的に、
|K1 AND K2|/√(|K1| × |K2|’)
として共起度を計算することが可能である。この場合、片側検索済みにおける近似的なCosine係数は、両側検索済みにおける真のCosine係数の値の上限となる。
When the Cosine coefficient is used as an index of co-occurrence, the number of documents from which the term K2 is extracted | K2 | 'is used instead of the number of documents in which the term K2 appears | K2 | ,
| K1 AND K2 | / √ (| K1 | × | K2 | ')
It is possible to calculate the degree of co-occurrence as In this case, the approximate Cosine coefficient after one-sided search is the upper limit of the true Cosine coefficient value after both-sided search.
例えば、用語記憶部11に格納されているデータが図2の通りであった場合、用語K02と用語K03の共起度を近似的なCosine係数で求める方法は次のようになる。用語K02と用語K03が両方出現する文書は「D02,D05,D10,D18」の4件、用語K02が出現する文書は「D01,D02,D04, D05,D10,D13,D15,D18」の8件、用語K03が抽出された文書は「D02,D05,D10,D18」の4件であるため、近似的なCosine係数は4/√(8×4)=22.6となる。この値は、その後、用語K2が抽出される文書が増えることによって、小さくなる可能性はあるが、これより大きくなる可能性はない。
For example, when the data stored in the
図4(c)は、両側未検索の用語の共起度の概念図である。左側の点線の円K1が用語K1が出現する真の文書集合、その内側の円K1’が他の用語を検索した結果、用語K1が抽出された文書集合、右側の点線の円K2が用語K2が出現する真の文書集合、その内側の円K2’が他の用語を検索した結果、用語K2が抽出された文書集合を表す。この場合、用語K1と用語K2のどちらも、出現する真の文書集合の部分集合しか得られていないことになる。このような場合でも、用語K1が抽出された文書の数|K1|’、用語K2が抽出された文書の数|K2|’、用語K1と用語K2が抽出された文書の数|K1
AND K2|’を用いることによって、用語間の近似的な共起度を算出することができる。
FIG. 4C is a conceptual diagram of the degree of co-occurrence of terms that have not been searched on both sides. The left dotted circle K1 is a true document set in which the term K1 appears, the inner circle K1 'is a document set from which the term K1 has been extracted as a result of searching for other terms, and the right dotted circle K2 is the term K2 Is a true document set, and a circle K2 ′ inside thereof represents a document set from which the term K2 has been extracted as a result of searching for other terms. In this case, both the term K1 and the term K2 are obtained only a subset of the true document set that appears. Even in such a case, the number of documents from which the term K1 is extracted | K1 | ', the number of documents from which the term K2 is extracted | K2 |', the number of documents from which the terms K1 and K2 are extracted | K1
By using AND K2 | ′, an approximate co-occurrence degree between terms can be calculated.
ただし、片側検索済みの場合に、|K1 AND K2|が正確に求まっており、共起度の近似値が上限または下限であることが明らかであったのに対して、両側未検索の場合は|K1 AND K2|’も近似値であるため、後の処理で別の用語が検索されて用語K1および用語K2が抽出される文書集合が追加されることにより、共起度の近似値は大きくなる可能性も小さくなる可能性も残っていることになる。 However, when one-sided search has been completed, | K1 AND K2 | has been accurately obtained, and it was clear that the approximate value of the co-occurrence is the upper limit or lower limit. Since | K1 AND K2 | 'is also an approximate value, the approximate value of the co-occurrence degree is increased by adding a document set in which another term is searched in the subsequent processing and the terms K1 and K2 are extracted. The possibility of becoming smaller will also remain.
図1の検索戦略決定部21は、用語記憶部11に格納されている用語リストと、共起度データ記憶部13に格納されている共起度グラフを参照し、各未検索の用語について共起度グラフの近似度を高める可能性を近似グラフスコアAGS(Approximate Graph Score)として算出し、近似グラフスコアAGS上位k個の用語を検索候補語としてデータ検索部22に渡す。
The search
用語Kiに対する近似グラフスコアAGS(Ki)は例えば、以下のように定義できる。
AGS(Ki) = ΔN ×(α|E01| + β|E12| + γ|E11|)
ここで、△Nは用語Kiを検索することによって、新たに抽出される用語の数の期待値である。一般に、より多くの抽出済み用語と共起している用語ほど、多くの未抽出の用語とも共起していると推測できるため、△Nには、図3の共起度グラフにおける用語Kiのまわりのエッジ数が目安として利用できる。例えば、図3において、用語K16の周りのエッジはK16−K07、K16−K12、K16−K13、K16−K14、K16−K15、K16−K17の6本であるので、K16に関する△Nの値は6になる。
The approximate graph score AGS (Ki) for the term Ki can be defined as follows, for example.
AGS (Ki) = ΔN × (α | E01 | + β | E12 | + γ | E11 |)
Here, ΔN is an expected value of the number of terms newly extracted by searching for the term Ki. In general, it can be assumed that the terms that co-occur with more extracted terms co-occur with more unextracted terms. Therefore, ΔN includes the term Ki in the co-occurrence degree graph of FIG. The number of surrounding edges can be used as a guide. For example, in FIG. 3, since there are six edges around the term K16, K16-K07, K16-K12, K16-K13, K16-K14, K16-K15, K16-K17, the value of ΔN for K16 is 6
|E01|は、用語Kiを検索することによって、両側未検索から片側検索済みになるエッジの数である。図3において、新たに用語K16を検索することにすると、K16−K12、K16−K13、K16−K14、K16−K15、K16−K17の5本のエッジは、両側未検索から片側検索済みになるため、用語K16に関する|E01|は5になる。 | E01 | is the number of edges that have been searched from one side to the other by searching the term Ki. In FIG. 3, when the term K16 is newly searched, the five edges K16-K12, K16-K13, K16-K14, K16-K15, and K16-K17 are searched from one side to the other side. Therefore, | E01 | for the term K16 is 5.
|E12|は、用語Kiを検索することによって、片側検索済みから両側検索済みになるエッジの数である。例えば、図3において、新たに用語K16を検索することにすると、K16−K07の1本のエッジは、片側検索済みから両側検索済みになるため、用語K16に関する|E12|は1になる。 | E12 | is the number of edges that are searched from one side to the two-sided search by searching for the term Ki. For example, in FIG. 3, if a new term K16 is searched, one edge of K16-K07 is changed from one-side searched to two-sided searched, so | E12 | for the term K16 becomes 1.
|E11|は用語Kiを検索することによって、片側未検索のままだが情報量が多くなることによってより近似された共起度が計算できることが期待できるエッジの数である。例えば、図3において、新たに用語K16を検索することにすると、K12−K10、K13−K08、K14−K08、K15−K08、K15−K07、K17−K07、K17−K09の7本のエッジは、片側検索済みのままだが、検索結果に含まれる文書から新たにK12、K13、K14、K15、K17が抽出される可能性があるため、より近似された共起度が計算できることが期待できる。従って、用語K16に関する|E11|は7になる。なお、α、β、γは|E01|、|E12|、|E11|のエッジの本数に対する重みである。 | E11 | is the number of edges that can be expected by searching for the term Ki and calculating a more approximate co-occurrence degree by increasing the amount of information while being unsearched on one side. For example, in FIG. 3, if the term K16 is newly searched, the seven edges K12-K10, K13-K08, K14-K08, K15-K08, K15-K07, K17-K07, K17-K09 are Although one-side search has been completed, K12, K13, K14, K15, and K17 may be newly extracted from the document included in the search result, so that it is expected that a more approximate co-occurrence degree can be calculated. Therefore, | E11 | for the term K16 is 7. Α, β, and γ are weights for the number of edges of | E01 |, | E12 |, and | E11 |.
図4の説明で議論した通り、片側検索済みの場合は、両側検索済みと同等の共起度または上限もしくは下限が定まるのに対して、両側未検索の場合は、あくまで共起度の目安が求まっているに過ぎない。従って、真の共起度で構成される共起度グラフに対する近似の度合いとしては、両側未検索が片側検索済みになるエッジの方が、片側検索済みが両側検索済みになるエッジよりも重要である。また片側検索済みが両側検索済みになるエッジの方が、片側検索済みのままのエッジよりも重要である。以上の議論から、重みα、β、γは、α>β>γとなるように設定することが好ましい。 As discussed in the explanation of FIG. 4, when one-sided search is completed, the co-occurrence degree or upper limit or lower limit equivalent to the two-sided search is determined, whereas when both sides are not searched, the co-occurrence degree is only a guideline. It's just wanted. Therefore, the degree of approximation to the co-occurrence degree graph consisting of true co-occurrence degrees is more important for edges where one-sided unsearched has been searched for one-sided than for edges whose one-sided searched has been searched for both-sided. is there. Also, the edge that has been searched on one side is more important than the edge that has been searched on one side. From the above discussion, the weights α, β, and γ are preferably set so that α> β> γ.
図1のデータ検索部22は、検索戦略決定部21から渡されたk個の検索候補語について、1語ずつネットワーク5を介して公開データ6を検索し、検索結果として用語が出現する文書IDのリストを得る。次に、得られた文書IDのリストを用語記憶部11に格納されている用語リストに追加する。また、文書IDで示される文書の本体をネットワーク5を介して取得し、共起度計算部24に渡す。
The
共起度計算部24は、用語記憶部11に格納されている用語リストから、各用語間の共起度を計算し、重み付グラフとして共起度データ記憶部13に格納する。
The co-occurrence
次に、図1及び図2〜図8を参照して本実施の形態の動作について詳細に説明する。図5は、本実施の形態における用語共起度抽出装置100の動作の一例を示す流れ図である。
Next, the operation of the present embodiment will be described in detail with reference to FIGS. 1 and 2 to 8. FIG. 5 is a flowchart showing an example of the operation of the term co-occurrence
検索戦略決定部21は、用語記憶部11に格納されている用語リストと、共起度データ記憶部13に格納されている共起度グラフとを参照し、各未検索の用語について、共起度グラフの近似度を高める可能性を近似グラフスコアAGSとして算出する。そして、近似グラフスコアAGS上位k個の用語を検索候補語と決定する(図5のステップS201)。
The search
データ検索部22は、検索戦略決定部21から渡されたk個の検索候補語について、1語ずつネットワーク5を介して公開データ6を検索し、検索結果として得られた文書IDのリストを用語記億部11に格納されている用語リストに追加する。文書IDで示される文書群をネットワーク5を介して取得し、共起度計算部24に渡す(図5のステップS202)。
The
ここで、共起度データ記憶部13の更新度合いが閾値以上の場合は(図5のステップS205;Yes)、さらに処理を繰り返すことでグラフの近似度が高まることを意味しているため、図5のステップS201に戻って再帰的に処理を繰り返す。共起度データ記憶部13の更新度合いの高さは、(1)共起度グラフに新しく追加された用語の数△K、(2)エッジの重みの変化の合計△E、によって△K×△Eとして定義できる。一方、共起度データ記憶部13の更新度合いが閾値未満の場合は(図5のステップS205;No)、十分高い近似度の共起度グラフが得られていることになるため、処理を終了する。
Here, when the update degree of the co-occurrence degree
なお、ここでは説明を簡潔にするため、図5のステップS201で検索戦略決定部21がデータ検索部22に渡す検索候補語を、近似グラフスコアAGSの上位k個の用語としたが、他にも、近似グラフスコアAGSの上位x%を検索候補語とする方法や閾値ρ以上の用語を検索候補語とする方法も考えられ、本実施の形態に述べた方法に限定されない。また、図5のステップS205の終了条件として、共起度データ記憶部13の更新度合いを測定する方法について述べたが、他にも、処理時間の合計が閾値以上に達したかどうか、あるいは、検索回数が閾値以上に達したかどうかを基準に再起処理を打ち切る方法も考えられ、本実施の形態に述べた方法に限定されない。
For the sake of brevity, the search candidate words that the search
図6は、検索戦略決定部21の動作の一例を示す流れ図である。検索戦略決定部21は、検索候補集合Tを空集合として初期化する(図6のステップS211)。次に、検索戦略決定部21は、共起度データ記憶部13に格納されている共起度グラフ内を走査し、未検索の用語Kiを見つけ出す(図6のステップS212)。もし、未検索の用語Kiが見つかった場合(ステップS212;Yes)、検索戦略決定部21は、用語Kiの近似グラフスコアAGS(Ki)を計算する(図6のステップS213)。そして、用語Kiとその近時グラフスコアAGS(Ki)を検索候補集合Tに追加する(図6のステップS214)。
FIG. 6 is a flowchart showing an example of the operation of the search
用語Kiと近似グラフスコアAGS(Ki)の組、例えば、共起度データ記憶部13に格納されている共起度グラフが図3の通りであった場合、未検索の用語はK11、K12、K13、K14、K15、K16、K17の7語存在することになる。それぞれの未検索の用語について、α=100、β=10、γ=1として近似グラフスコアを求めると、次のようになる。
When the combination of the term Ki and the approximate graph score AGS (Ki), for example, the co-occurrence degree graph stored in the co-occurrence degree
用語K11のノードの周りのエッジの本数はK11−K01,K11−K02, K11−K03,K11−K04, K11−K05,K11−K07の6本、用語K11を検索することによって、両側未検索から片側検索済みになるエッジの数|E01|は0本、片側検索済みから両側検索済みになるエッジの数|E12|はK11−K01、K11−K02、K11−K03、K11−K04、K11−K05、K11−K07の6本、片側検索済みのままだが情報量が増えるエッジの数|E11|は0本である。従って、
AGS(K11)= △N×(α|E01|+β|E12|+γ|E11|)
= 6×(100×0+10×6+1×0)
= 360
The number of edges around the node of term K11 is K11−K01, K11−K02, K11−K03, K11−K04, K11−K05, and K11−K07. Number of edges that have been searched for one side | E01 | is 0, and the number of edges that have been searched from one side to both sides | E12 | is K11-K01, K11-K02, K11-K03, K11-K04, K11-K05 , K11-K07, the number of edges | E11 | in which the amount of information increases while one side is already searched is zero. Therefore,
AGS (K11) = △ N × (α | E01 | + β | E12 | + γ | E11 |)
= 6 x (100 x 0 + 10 x 6 + 1 x 0)
= 360
用語K12のノードの周りのエッジの本数はK12−K10,K12−K16の2本、用語K12を検索することによって、両側未検索から片側検索済みになるエッジの数|E01|はK12−K16の1本、片側検索済みから両側検索済みになるエッジの数|E12|はK12−K10の1本、片側検索済みのままだが情報量が増えるエッジの数|E11|はK16−K07の1本である。従って、
AGS(K12) = ΔN×(α|E01|+β|E12|+γ|E11|)
= 2×(100×1+10×1+1×1)
= 222
The number of edges around the node of the term K12 is two of K12−K10 and K12−K16. By searching for the term K12, the number of edges that have been searched from one side to the other side | E01 | is K12−K16 One, the number of edges that have been searched from one side to the two-sided search | E12 | is one of K12-K10, and the number of edges that have been searched on one side but increases the amount of information | E11 | is one of K16-K07 is there. Therefore,
AGS (K12) = ΔN × (α | E01 | + β | E12 | + γ | E11 |)
= 2 x (100 x 1 + 10 x 1 + 1 x 1)
= 222
用語K13のノードの周りのエッジの本数はK13−K16,K13−K08の2本、用語K13を検索することによって、両側未検索から片側検索済みになるエッジの数|E01|はK13−K16の1本、片側検索済みから両側検索済みになるエッジの数|E12|はK13−K08の1本、片側検索済みのままだが情報量が増えるエッジの数|E11|はK16−K07の1本である。従って、
AGS(K13) = ΔN×(α|E01|+β|E12|+γ|E11|)
= 2×(100×1+10×1+1×1)
= 222
The number of edges around the node of the term K13 is two of K13-K16 and K13-K08. By searching the term K13, the number of edges that have been searched from one side to the other side | E01 | is K13-K16 One, the number of edges that have been searched from one side to the two-sided search | E12 | is one of K13-K08, the number of edges that have been searched on one side but the amount of information increases | E11 | is one of K16-K07 is there. Therefore,
AGS (K13) = ΔN × (α | E01 | + β | E12 | + γ | E11 |)
= 2 x (100 x 1 + 10 x 1 + 1 x 1)
= 222
用語K14のノードの周りのエッジの本数はK14−K16, K14−K08の2本、用語K14を検索することによって、両側未検索から片側検索済みになるエッジの数|E01|はK14−K16の1本、片側検索済みから両側検索済みになるエッジの数|E12|はK14−K08の1本、片側検索済みのままだが情報量が増えるエッジの数|E11|はK08−K15の1本である。従って、
AGS(K14) = ΔN×(α|E01|+β|E12|+γ|E11|)
= 2×(100×1+10×1+1×1)
= 222
The number of edges around the node of the term K14 is K14−K16, K14−K08, and by searching for the term K14, the number of edges that have been searched from one side to the other side | E01 | is K14−K16 One, the number of edges that have been searched from one side to the two-sided search | E12 | is one of K14-K08, and the number of edges that have been searched on one side but increases the amount of information | E11 | is one of K08-K15 is there. Therefore,
AGS (K14) = ΔN × (α | E01 | + β | E12 | + γ | E11 |)
= 2 x (100 x 1 + 10 x 1 + 1 x 1)
= 222
用語K15のノードの周りのエッジの本数はK15−K16,K15−K07,K15−K08の3本、用語K15を検索することによって、両側未検索から片側検索済みになるエッジの数|E01|はK15−K16の1本、片側検索済みから両側検索済みになるエッジの数|E12|はK15−K07, K15−K08の2本、片側検索済みのままだが情報量が増えるエッジの数|E11|はK16−K07の1本である。従って、
AGS(K15)= ΔN×(α|E01|+β|E12|+γ|E11|)
= 3×(100×1+10×2+1×1)
= 363
The number of edges around the node of the term K15 is K15−K16, K15−K07, K15−K08, and by searching the term K15, the number of edges | E01 | The number of edges that have been searched from one side of K15-K16 to one-sided search | E12 | is the number of edges that have been searched on one side of K15-K07 and K15-K08 but the amount of information increases | E11 | Is one of K16-K07. Therefore,
AGS (K15) = ΔN × (α | E01 | + β | E12 | + γ | E11 |)
= 3 x (100 x 1 + 10 x 2 + 1 x 1)
= 363
用語K16のノードの周りのエッジの本数はK16−K07,K16−K12,K16−K13,K16−K14,K16−K15,K16−K17の6本、用語K16を検索することによって、両側未検索から片側検索済みになるエッジの数|E01|はK16−K12, K16−K13, K16−K14, K16−K15,
K16−K17の5本、片側検索済みから両側検索済みになるエッジの数|E12|はK16−K07の1本、片側検索済みのままだが情報量が増えるエッジの数|E11|はK12−K10,K13−K08,K14−K08,K15−K07,K15−K08,K17−K07,K17−K09の7本である。従って、
AGS(K16) = △N×(α|E01|+β|E12|+γ|E11|)
= 6×(100×5+10×1+1×7)
= 3,102
The number of edges around the node of the term K16 is 6 from K16-K07, K16-K12, K16-K13, K16-K14, K16-K15, K16-K17. The number of edges that have been searched on one side | E01 | is K16−K12, K16−K13, K16−K14, K16−K15,
The number of edges that have been searched from one side to the two sides searched from 5 for K16-K17 | E12 | is the number of edges that have been searched for one side of K16-K07, but the amount of information increases | E11 | is K12-K10 , K13-K08, K14-K08, K15-K07, K15-K08, K17-K07, K17-K09. Therefore,
AGS (K16) = △ N × (α | E01 | + β | E12 | + γ | E11 |)
= 6 x (100 x 5 + 10 x 1 + 1 x 7)
= 3,102
用語K17のノードの周りのエッジの本数はK17−K07,K17−K09,K17−K16の3本、用語K17を検索することによって、両側未検索から片側検索済みになるエッジの数|E01|はK17−K16の1本、片側検索済みから両側検索済みになるエッジの数|E12|はK17−K07,K17−K09の2本、片側検索済みのままだが情報量が増えるエッジの数|E11|はK16−K07の1本である。従って、
AGS(K17) = △N×(α|E01|+β|E12|+γ|E11|)
= 3×(100×1+10×2+1×l)
= 363
The number of edges around the node of the term K17 is three of K17-K07, K17-K09, K17-K16, and the number of edges that have been searched from one side to the other by searching the term K17 is | E01 | The number of edges that have been searched for one side of K17-K16 and one-sided search | E12 | is the number of edges that have been searched for one side of K17-K07 and K17-K09 but the amount of information increases | E11 | Is one of K16-K07. Therefore,
AGS (K17) = △ N × (α | E01 | + β | E12 | + γ | E11 |)
= 3 x (100 x 1 + 10 x 2 + 1 x l)
= 363
次に、検索戦略決定部21は、近似グラフスコアAGS(Ki)を計算すべき未検索の用語Kiがなくなると(図6のステップS212;No)、検索候補集合Tを近似グラフスコアAGSの順にソートし(図6のステップS215)、上位n件の未検索用語を出力としてデータ検索部22に渡す(図6のステップS216)。例えば、上述した用語K12〜K17の近似グラフスコア計算の例で、上位3語の未検索用語を出力するとした場合、用語K16、K15、K17の3語が、次に検索されるべき用語としてデータ検索部22に渡されることになる。
Next, when there is no unsearched term Ki for which the approximate graph score AGS (Ki) is to be calculated (step S212 in FIG. 6; No), the search
なお、ここでは説明を簡潔にするため、共起度データ記憶部13に格納されている共起度グラフがある程度構築された後の途中状態での処理について説明を行ったが、初期状態では、共起度データ記憶部13には共起度グラフは構築されておらず、用語リストが用語記憶部11に全て未検索の状態で格納されているだけである。従って、初期状態では、用語記憶部11に格納されている用語リストの先頭からk個、もしくはランダムにk個を選択して検索候補語とするなどの方法が考えられ、本実施の形態に述べた方法に限定されない。
Here, for the sake of brevity, the processing in the intermediate state after the co-occurrence degree graph stored in the co-occurrence degree
図7は、データ検索部22の動作の一例を示す流れ図である。データ検索部22は、検索戦略決定部21から渡された検索候補語の集合から、1語ずつ取り出しながら(図7のステップS221;Yes)、検索侯補語をクエリとしてネットワーク5を介して公開データ6を検索する(図7のステップS222)。次に、用語記憶部11に格納されている用語リストに対して、クエリとして使われた用語の出現文書IDの欄に、検索結果として得られた文書IDのリストを追加する(図7のステップS223)。また、検索語果として得られた文書IDのリストで示される文書本体を取得しておく(図7のステップS224)。
FIG. 7 is a flowchart showing an example of the operation of the
検索候補語を全て検索し終わったら(図7のステップS221;No)、取得した文書本体の集合を共起度計算部24に渡す。このように、データ検索部22は、検索候補語の集合から1語ずつ検索を行うため、検索回数はたかだか用語リストに含まれる用語の数であり、検索回数が幾何級数的に増加するのを防ぐことができる。
When all the search candidate words have been searched (step S221 in FIG. 7; No), the acquired set of document main bodies is transferred to the co-occurrence
なお、ここでは説明を簡潔にするため、データ検索部22は、検索結果として得られた文書IDのリストで示される文書本体を全て取得するとして説明を行ったが、一度取得済みの文書をキャッシュとして残しておき、同じ文書は改めて取得しないようにして効率化を図る方法なども考えられ、本実施の形態に述べた方法に限定されない。
Here, for the sake of brevity, the
図8は、共起度計算部24の動作の一例を示す流れ図である。共起度計算部24は、用語記憶部11に格納されている用語リストから1組ずつペアの組み合わせを生成し(図8のステップS241;Yes)、用語リストに記述されている出現文書IDのリストから、Simpson係数を用いて共起度を計算する(図8のステップS242)。次に、計算された共起度があらかじめ指定された閾値βよりも高ければ(図8のステップS243;Yes)、該当する用語のペアを共起度データ記憶部13に格納されている共起度グラフに追加し、エッジの重みとして共起度の値を設定する(図8のステップS244)。この時、用語のペアが既に共起度グラフに登録されている場合は、そのエッジの重みの値を更新する。これを、全ての用語のペアについて共起度を計算するまで繰り返す(図8のステップS241;No)。
FIG. 8 is a flowchart illustrating an example of the operation of the co-occurrence
なお、ここでは説明を簡潔にするため、共起度の計算方法としてSimpson係数を用いる例について述べたが、他にも、共起頻度、相互情報量、Dice係数、Jaccard係数、閾値付Simpson係数、Cosine係数など、様々な共起度の計算方法が考えられ、本実施の形態に述べた方法に限定されない。また、共起度計算部24は、用語記憶部11に格納されている用語の全ての組み合わせについて共起度を計算するものとして説明を行ったが、データ検索部22によって更新が起こった用語とその他の用語のペアの組み合わせだけに限って共起度の計算を行うことにより処理の効率化を図る方法も考えられ、本実施の形態に述べる方法に限定されない。
In addition, for simplicity of explanation, an example using the Simpson coefficient as a method of calculating the co-occurrence degree has been described. However, the co-occurrence frequency, the mutual information amount, the Dice coefficient, the Jaccard coefficient, and the Simpson coefficient with a threshold are also described. Various co-occurrence calculation methods such as Cosine coefficient are conceivable, and the present invention is not limited to the method described in this embodiment. The co-occurrence
次に、本実施の形態の効果について説明する。
本実施の形態では、公開データ6に対する検索は、用語のペアではなく、用語1語ずつで行う。そのため、検索回数はたかだか用語リストに含まれる用語の数であり、検索回数が幾何級数的に増加するのを防ぐことができる。
Next, the effect of this embodiment will be described.
In the present embodiment, the search for the
また、本実施の形態では、未検索の用語であっても、検索済み用語の検索結果に含まれる文書中に出現していれば、近似的な共起度を求めることができる。そのため、少ない検索回数でもより多くの用語の関係を近似的に求めることができる。 In the present embodiment, even if an unsearched term appears in the document included in the search result of the searched term, an approximate co-occurrence degree can be obtained. Therefore, the relationship of more terms can be obtained approximately even with a small number of searches.
また、本実施の形態では、未検索のどの用語を検索すれば、より近似度の高い共起度グラフが求まるかという指標を近似グラフスコアとして計算し、近似グラフスコアの高い用語の順に検索を行う。そのため、少ない検索回数でもより真の値に近い共起度グラフを求めることができる。 Also, in this embodiment, an index indicating whether an unsearched term is searched to obtain a co-occurrence degree graph with a higher degree of approximation is calculated as an approximate graph score, and the search is performed in the order of the terms with the highest approximate graph score. Do. Therefore, a co-occurrence degree graph closer to the true value can be obtained even with a small number of searches.
(実施の形態2)
図10は、本発明の実施の形態2に係る用語共起度抽出装置100の構成例を示すブロック図である。実施の形態2は、実施の形態1の構成に加えて、処理装置2に用語抽出部23が追加されている点で異なる。また、記憶装置1に抽出ルール記憶部12が追加されている。
(Embodiment 2)
FIG. 10 is a block diagram illustrating a configuration example of the term co-occurrence
抽出ルール記憶部12には、用語として抽出すべき文字列を記述した抽出ルールとそのスコアの組が格納されている。抽出ルールは単語属性の組み合わせとして表現される。単語属性とは、用語記憶部11に記憶されている用語、表層文字列である表記、動詞や形容詞の活用の原形、品詞、読み(ふりがな、仮名表記)、同義表現や送り仮名、ひらがなカタカナ表記の違いを吸収した代表表記、「地名」や「色名」などの意味分類などを含む。
The extraction
図11は、抽出ルール記憶部12に格納されている抽出ルールの例を示す。ダブルクォーテーション“”で囲まれた抽出ルールに一致する文字列を用語として抽出する。図11における「|」「+」「()」などの演算子の意味は、一般的な正規表現演算子の意味と同じである。図11は、例として人名を抽出するためのルールである。
FIG. 11 shows an example of extraction rules stored in the extraction
抽出ルールR01は、用語記憶部11に記憶されている用語と完全一致する文字列を人名として抽出するルールである。例えば、用語記憶部11の内容が図2のようであった場合、「田中一郎」や「高橋二郎」などの文字列が文書に出現すると、それは人名と判断され、スコア1.0が加算される。
The extraction rule R01 is a rule for extracting a character string that completely matches a term stored in the
抽出ルールR02は、文書を形態素解析した際に、品詞が「名詞−固有名詞−人名−姓」「名詞−固有名詞−人名−名」の順で出現している文字列を人名として抽出するルールである。例えば、用語記憶部11に「田中五郎」という人名が登録されていなくても、「田中五郎」を形態素解析した結果が、「田中/名詞−固有名詞−人名−姓 五郎/名詞−固有名詞−人名−名」であれば、「田中五郎」を新しい人名として抽出し、スコア1.0を加算する。
The extraction rule R02 is a rule for extracting a character string in which the part of speech appears in the order of "noun-proprietary noun-person name-surname" "noun-proprietary noun-person name-first name" as a person name when a document is subjected to morphological analysis It is. For example, even if the personal name “Tanaka Goro” is not registered in the
抽出ルールR03は、文書を形態素解析した際に、品詞が「名詞」の単語が繰り返し出現し、次に、「名詞−固有名詞−人名−名」が出現し、さらに、表記が「氏」、「様」、「さん」、「先生」のような、人名によく付属する接尾語が出現した場合に、接尾語の前までの文字列を人名として抽出するルールである。例えば、用語記憶部11に「笹間太郎」という人名が登録されていなくても、「笹間太郎さん」を形態素解析した結果が、「笹/名詞−一般 間/名詞−一般−一郎/名詞−固有名詞−人名−名 さん/名詞−接尾−人名」であれば、「笹間一郎」を新しい人名として抽出し、スコア0.5を加算する。このようなルールを使うことによって、「笹間」という姓が形態素解析器に登録されていなくても、人名らしい文字列を抽出することができる。
In the extraction rule R03, when a morphological analysis is performed on a document, a word whose part of speech is “noun” repeatedly appears, then “noun—proper noun—person name—name” appears, and the notation is “Mr.”, This is a rule for extracting a character string before the suffix as a person name when a suffix often attached to the person name such as “sama”, “san”, and “teacher” appears. For example, even if the personal name “Taro Sakuma” is not registered in the
抽出ルールR04は、文書を形態素解析した際に、品詞が「名詞−固有名詞−人名−姓」の単語が出現し、次に、「名詞」が繰り返し出現し、さらに、表記が「氏」、「様」、「さん」、「先生」のような、人名によく付属する接尾語が出現した場合に、接尾語の前までの文字列を人名として抽出するルールである。例えば、用語記憶部11に「田中仙太郎」という人名が登録されていなくても、「田中仙太郎先生」を形態素解析した結果が、「田中/名詞−固有名詞−人名−姓 仙/名詞−固有名詞−人名−名 太郎/名詞−固有名詞−人名−名 先生/名詞−一般」であれば、「田中仙太郎」を新しい人名として抽出し、スコア0.4を加算する。このようなルールを使うことによって、「仙太郎」という名が形態素解析器に登録されていなくても、人名らしい文字列を抽出することができる。
In the extraction rule R04, when a morphological analysis is performed on a document, a word with a part of speech of “noun-proper noun-person name-surname” appears, then “noun” repeatedly appears, and the notation is “Mr.”, This is a rule for extracting a character string before the suffix as a person name when a suffix often attached to the person name such as “sama”, “san”, and “teacher” appears. For example, even if the personal name “Tanaka Sentaro” is not registered in the
抽出ルールR05は、用語記憶部11に記憶されている用語の先頭2文字と末尾2文字の文字列で構成されている文字列を人名として抽出するルールである。例えば、用語記憶部11の内容が図2のようであった場合、「高橋一郎」や「佐藤太郎」のような文字列が文書に出現すると、それは人名と判断され、スコア0.7が加算される。上述の抽出ルールは必ずしも排他的でなく、一つの文字列に複数の抽出ルールが該当する場合もある。例えば、用語記憶部11に「田中一郎」という人名が登録されており、形態素解析の結果が「田中/名詞−固有名詞−人名−姓 一郎/名詞−固有名詞−人名−名」であれば、この文字列は抽出ルールR01、R02、R05に該当することになる。この場合、全ての抽出ルールを加算して、2.7とする。これにより、スコアの高い文字列ほど人名らしいと判断できるようになる。
The extraction rule R05 is a rule for extracting, as a person name, a character string made up of a character string of the first two characters and the last two characters of a term stored in the
用語抽出部23は、データ検索部22から渡された文書本体に対して、抽出ルール記憶部12に記述されている抽出ルールに該当する文字列を用語として抽出し、用語記憶部11に格納されている用語リストの該当する用語の出現文書IDを追加する。抽出した用語が用語記憶部11に未登録の場合、新しい行を作成し、検索フラグを「未」に設定して、出現文書IDを記録する。
The
図12は、実施の形態2に係る用語共起度抽出装置100の動作の一例を示す流れ図である。実施の形態2の用語共起度抽出処理は、図5に示す実施の形態1の処理の動作に、用語抽出処理が追加されている。すなわち、ステップS201、ステップS202は実施の形態1と同様である。用語抽出部23は、データ検索部22と共起度計算部24の間に置かれている。データ検索部22は、公開データ6から検索した文書データを用語抽出部23に渡す(図12のステップS202)。
FIG. 12 is a flowchart showing an example of the operation of the term co-occurrence
用語抽出部23は、データ検索部22から渡された文書群に対して、抽出ルール記憶部12に記述されている抽出ルールに該当する文字列を用語として抽出する。そして、用語記憶部11に格納されている用語リストの該当する用語の出現文書IDを追加する(図12のステップS203)。以降の処理は、実施の形態1と同様である。
The
図13は、用語抽出部23の動作の一例を示す流れ図である。用語抽出部23は、最初に、初期化処理として、抽出候補集合Eを空集合として設定する(図13のステップS231)。次に、データ検索部22から渡された文書集合から1文書ずつ取り出しながら(図13のステップS232;Yes)、文書の形態素解析を行い、文書内に抽出ルール記憶部12に格納されている抽出ルールにマッチする文字列がないか調べる(図13のステップS233)。
FIG. 13 is a flowchart illustrating an example of the operation of the
文書中に抽出ルールにマッチする文字列があれば(図13のステップS233;Yes)、その文字列ESと出現文書ID、およびその抽出スコアRSの組を抽出候補集合Eに追加する(図13のステップS234)。このとき、既に文字列ESが抽出候補集合Eに登録済みであれば、出現文書IDをリストとして追加し、抽出スコアRSの合計を計算する。文書中に抽出ルールにマッチする文字列が出てこなくなれば(図13のステップS233;No)、次の文書に対して繰り返し処理を行う(図13のステップS232)。 If there is a character string that matches the extraction rule in the document (step S233 in FIG. 13; Yes), the combination of the character string ES, the appearance document ID, and the extraction score RS is added to the extraction candidate set E (FIG. 13). Step S234). At this time, if the character string ES has already been registered in the extraction candidate set E, the appearance document ID is added as a list, and the total extraction score RS is calculated. If a character string matching the extraction rule does not appear in the document (step S233 in FIG. 13; No), the next document is repeatedly processed (step S232 in FIG. 13).
全ての文書に対して処理が終わったら(図13のステップS232;No)、抽出候補集合Eの中から、抽出スコアの合計が閾値以上になっている用語について、出現文書IDのリストを用語記憶部11に格納されている用語リストに追加する。このように、用語抽出部23は、抽出ルールに従って文書中に含まれる用語を抽出できるため、初期の入力データの用語リストに含まれていない新語であっても、再帰的に共起度を計算することができるようになる。
When the processing is completed for all the documents (step S232 in FIG. 13; No), a list of appearance document IDs is stored for the terms whose extraction scores are equal to or greater than the threshold from the extraction candidate set E. This is added to the term list stored in the
なお、共起度計算部24は、データ検索部22と用語抽出部23によって更新が起こった用語とその他の用語のペアの組み合わせだけに限って共起度の計算を行うことにより処理の効率化を図る方法も考えられる。
The co-occurrence
また、ここでは説明を簡潔にするため、収集対象の用語を人名に限定した例について述べたが、他にも、例えば図9に示すような組織名リストを用語記憶部11に格納し、図14に示すような抽出ルールを抽出ルール記憶部12に与えることによって、組織名の共起度も抽出することができるようになり、本実施の形態に述べた方法に限定されない。
Further, here, for the sake of brevity, an example in which terms to be collected are limited to personal names has been described. However, for example, an organization name list as shown in FIG. By providing the extraction rule as shown in FIG. 14 to the extraction
さらに、用語記憶部11に格納される用語リストと、抽出ルール記憶部12に格納される抽出ルールに、ドメインのラベルのデータを付与することによって、人と組織、組織と地名など、異なる複数のドメインに属する用語を新たに抽出することができる。
Furthermore, by adding domain label data to the term list stored in the
本実施の形態2では、検索の結果得られた文書に対して、抽出ルールを用いて用語リストに未登録の新語を抽出して追加する。そのため、入力データである用語リストに含まれていない新語を抽出しながら再帰的に共起度を計算することができる。 In the second embodiment, unregistered new words are extracted and added to the term list using the extraction rule for the document obtained as a result of the search. Therefore, the co-occurrence degree can be recursively calculated while extracting new words that are not included in the term list that is input data.
(実施の形態3)
図15は、本発明の実施の形態3に係る用語共起度抽出装置100の構成例を示すブロック図である。図15を参照すると、本発明の実施の形態3は、図10に示された実施の形態2の構成に加えて、処理装置2に抽出ルール学習部25が追加されている点で異なる。
(Embodiment 3)
FIG. 15 is a block diagram illustrating a configuration example of the term co-occurrence
抽出ルール学習部25が用語記憶部11に格納されている用語リストの文書中での出現傾向の統計量を計算することにより、抽出ルール記憶部12に格納されている抽出ルールを増やす。
The extraction
本実施の形態の動作を、図15〜17を参照して詳細に説明する。
図16は、本発明の実施の形態3の動作の一例を示す流れ図である。図16におけるステップS201〜S205における、検索戦略決定部21、データ検索部22、共起度計算部24の動作は、図5に示す実施の形態1における検索戦略決定部21〜共起度計算部24の動作と同一のため、説明は省略する。用語抽出部23は、図16のステップS203の後、データ検索部22から渡された検索結果の文書群をそのまま抽出ルール学習部25に渡すものとする。
The operation of the present embodiment will be described in detail with reference to FIGS.
FIG. 16 is a flowchart showing an example of the operation of the third embodiment of the present invention. The operations of the search
抽出ルール学習部25は、用語記憶部11に格納されている用語リストについて、用語抽出部23から渡された文書群中での出現パタンを計測し、出現頻度が高く、かつ、用語を抽出する可能性の高いパタンを抽出ルールとして抽出ルール記憶部12に追加する。
The extraction
図17は、抽出ルール学習部25の動作の一例を示す流れ図である。抽出ルール学習部25は、初期化処理として、周辺文字列集合Cとルール候補集合Rを空集合に設定する(図17のステップS250)。次に、用語記憶部11に格納されている用語リスト中の用語を1語ずつ取り出して(図17のステップS251;Yes)、取り出された用語が、用語抽出部23から渡された文書群中に出現している前後w語以内の周辺文字列を全て列挙し、周辺文字列集合Cに追加する(図17のステップS252)。
FIG. 17 is a flowchart showing an example of the operation of the extraction
例えば、w=4で、取り出された用語が「田中一郎」であり、文書群中に「凸凹株式会社の田中一郎社長が語る」という記述があったとする。この場合、「凸凹株式会社の田中一郎社長が語る」という記述を形態素解析すると、「凸凹/名詞−一般 株式会社/名詞−一般 の/助詞−連帯化 田中/名詞−固有名詞−人名−姓 一郎/名詞−固有名詞−人名−名 社長/名詞−一般 が/助詞−格助詞−一般 語る/動詞−自立」となるため、「田中一郎」を含む4語以内の周辺文字列は、「株式会社/の/田中/一郎」 「の/田中/一郎/社長」 「田中/一郎/社長/が」「の/田中/一郎」「田中/一郎/社長」「田中/一郎」の6通り存在する。 For example, suppose that w = 4, the extracted term is “Ichiro Tanaka”, and there is a description in the document group “Ichiro Tanaka, President of Convex Inc. speaks”. In this case, a morphological analysis of the statement “Ichirou Tanaka, President of Convex Co., Ltd. speaks” gives the following: / Noun-proprietary noun-person name-name president / noun-general / particle-case particle-general Talk / verb-independent " / / / Tanaka / Ichiro] "/ / Tanaka / Ichiro / President" "Tanaka / Ichiro / President / G" "No / Tanaka / Ichiro" "Tanaka / Ichiro / President" "Tanaka / Ichiro" exists.
なお、ここでは、説明を簡潔にするため、文書群中に出現している前後w語以内の周辺文字列を全て列挙するものとして説明を行ったが、自立語で始まる周辺文字列に限定する、自立語で終わる周辺文字列に限定する、自立語で始まりかつ自立語で終わる周辺文字列に限定するなどの方法も考えられ、本実施の形態に述べた方法に限定されない。例えば、自立語で始まりかつ自立語で終わる周辺文字列に限定する場合、「凸凹株式会社の田中一郎社長が語る」という記述における「田中一郎」のw=4の周辺文字列は、「株式会社/の/田中/一郎」「田中/一郎/社長」「田中/一郎」の3通りになる。 Here, for the sake of brevity, the description has been made assuming that all the surrounding character strings within the preceding and following w words appearing in the document group are listed, but the surrounding character strings starting with independent words are limited. There are also conceivable methods such as limiting to a peripheral character string ending with an independent word, limiting to a peripheral character string starting with an independent word and ending with an independent word, and is not limited to the method described in the present embodiment. For example, when limiting to a peripheral character string that starts with an independent word and ends with an independent word, the surrounding character string of w = 4 of “Ichiro Tanaka” in the description “Ichiro Tanaka, President of Convex Inc. speaks” / No / Tanaka / Ichiro ”,“ Tanaka / Ichiro / President ”and“ Tanaka / Ichiro ”.
次に、抽出ルール学習部25は、列挙された周辺文字列について、用語を品詞などの単語属性として一般化したルールを生成し、ルール候補集合Rに追加する(図17のステップS253)。例えば、周辺文字列が「株式会社の田中一郎」であった場合、
「株式会社の“[品詞:名詞−固有名詞−姓][品詞:名詞−固有名詞−名]”」、
「株式会社の“[品詞:名詞−固有名国−姓][品詞:名詞−固有名詞]”」、
「株式会社の“[品詞:名詞−固有名詞−姓][品詞:名詞]”」、
「株式会社の“[品詞:名詞−固有名詞」[品詞:名詞−固有名詞−名]”」、
「株式会社の“[品詞:名詞−固有名詞][品詞:名詞−固有名詞]”」、
「株式会社の“[品詞:名詞−固有名詞][品詞:名詞]”」、
「株式会社の“[品詞:名詞][品詞:名詞−固有名詞−名]”」、
「株式会社の“[品詞:名詞][品詞:名詞−固有名詞]”」、
「株式会社の“[品詞:名詞][品詞:名詞]”」、
の9つのルールがルール候補Rに追加される。
Next, the extraction
“[Part of speech: noun-proprietary noun-surname] [part of speech: noun-proprietary noun-name]”,
““ Parts of speech: noun-proprietary country-surname ”[part of speech: noun-proprietary noun]”
““ Parts of speech: noun-proprietary noun-surname ”[part of speech: noun]”
““ Parts of speech: nouns—proper nouns ”[parts of speech: nouns—proprietary nouns—names]”
““ Parts of speech: nouns—proper nouns ”[parts of speech: nouns—proprietary nouns]”
““ Parts of speech: noun-proper noun ”[part of speech: noun]”
““ [Part of speech: noun] [part of speech: noun-proper noun-name] ”
““ Parts of speech: nouns ”[Parts of speech: nouns-proper nouns]”
“[Part of speech: noun] [part of speech: noun]”
These nine rules are added to the rule candidate R.
次に、抽出ルール学習部25は、ルール候補集合Rに含まれる各ルール候補について、用語抽出部23から渡された文書群中でマッチする頻度を数え、その頻度が閾値fを超えていないルール候補はルール候補集合Rから削除する(図17のステップS254)。例えば、閾値f=10で、ルール「株式会社の[品詞:名詞−固有名詞−姓][品詞:名詞−固有名詞−名]」とがマッチする文字列の頻度が5だった場合、ルール候補集合Rから削除される。
Next, the extraction
次に、抽出ルール学習部25は、ルール候補集合Rに含まれる各ルール候補について、用語抽出部23から渡された文書群中でマッチする文字列を抽出し、その文字列が用語記憶部11に格納されている用語リストに登録されている割合を、用語抽出率として計算する。用語抽出率が低いルール候補は、多くの語を抽出できる可能性があるが、一方で、ノイズとなる語を抽出しやすいことを意味している。そのため、用語抽出率が閾値rを超えていないルール候補はルール候補集合Rから削除する(図17のステップS255)。
Next, the extraction
例えば、用語抽出率の閾値r=50%とする。この時、ルール候補r[品詞 名詞−固有名詞][品詞:名詞−固有名詞]”社長」により抽出される文字列が10語あり、そのうち7語が用語記憶部11に格納されている用語リストに登録されている場合、このルール候補の用語抽出率は7/10=70%となり、閾値r=50%を超えているので、ルール候補集合Rから削除されない。一方、ルール候補「株式会社の”[品詞 名詞][品詞’名詞]”」により抽出される文字列が100語あり、そのうち20語が用語記憶部11に格納きれている用語リストに登録されている場合、このルール候補の用語抽出率は20/100=20%となり、閾値r=50%未満であるので、ルール候補集合Rから削除される。
For example, the term extraction rate threshold r is set to 50%. At this time, there are ten character strings extracted by the rule candidate r [part of speech noun-proprietary noun] [part of speech: noun-proprietary noun] “President”, and seven terms are stored in the
次に、抽出ルール学習部25は、ルール候補集合Rに残っているルール候補を、抽出ルールとして、抽出ルール記憶部12に追加する(図17のステップS256)
Next, the extraction
なお、ここでは説明を簡潔にするため、抽出ルール学習部25は、用語抽出部23から渡された文書群のみを用いて周辺文字列の抽出とルール候補の生成を行う方法について説明を行ったが、他にも、データ検索部22が取得した文書群全てを記憶装置1に格納しておき、それら文書群全体を使って周辺文字列の抽出とルール候補の生成を行う方法もあり、本実施の形態に述べた方法に限定されない。
Here, for the sake of brevity, the extraction
本実施の形態では、検索結果の文書群に含まれる用語周辺の文字列の出現傾向を求めることにより、動的に新しい抽出ルールを生成する。そのため、初期の抽出ルールが少なくても、より多くの用語を再帰的に抽出することができる。 In the present embodiment, a new extraction rule is dynamically generated by obtaining the appearance tendency of a character string around a term included in a document group as a search result. Therefore, even if there are few initial extraction rules, more terms can be extracted recursively.
図18は、図1、図10または図15に示す用語共起度抽出装置100のハードウェア構成の一例を示すブロック図である。用語共起度抽出装置100は、図18に示すように、制御部31、主記憶部32、外部記憶部33、操作部34、表示部35及び送受信部36を備える。主記憶部32、外部記憶部33、操作部34、表示部35及び送受信部36はいずれも内部バス30を介して制御部31に接続されている。
18 is a block diagram illustrating an example of a hardware configuration of the term co-occurrence
制御部31はCPU(Central Processing Unit)等から構成され、外部記憶部33に記憶されている用語共起度抽出用プログラム500に従って、前述の用語共起度抽出装置100の処理を実行する。
The
主記憶部32はRAM(Random-Access Memory)等から構成され、外部記憶部33に記憶されている用語共起度抽出用プログラム500をロードし、制御部31の作業領域として用いられる。
The
外部記憶部33は、フラッシュメモリ、ハードディスク、DVD−RAM(Digital Versatile
Disc Random-Access Memory)、DVD−RW(Digital Versatile
Disc ReWritable)等の不揮発性メモリから構成され、前記の処理を制御部31に行わせるための用語共起度抽出用プログラム500を予め記憶し、また、制御部31の指示に従って、このプログラムが記憶するデータを制御部31に供給し、制御部31から供給されたデータを記憶する。図1、図10または図15の用語記憶部11、抽出ルール記憶部12および共起度データ記憶部13は、外部記憶部33に構成される。用語共起度抽出処理を行っているときは、それらのデータの一部は主記憶部32に記憶されて制御部31の作業に用いる。
The
Disc Random-Access Memory), DVD-RW (Digital Versatile)
The term co-occurrence
操作部34はキーボード及びマウスなどのポインティングデバイス等と、キーボード及びポインティングデバイス等を内部バス30に接続するインターフェース装置から構成されている。操作部34を介して、参加者を絞り込む条件設定などが入力され、制御部31に供給される。操作部34は、図1、図10または図15の入力部3に相当する。
The
表示部35は、CRT(Cathode Ray Tube)又はLCD(Liquid Crystal Display)などから構成され、検索対象の用語、検索結果、検索結果文書、用語抽出ルール、共起度グラフなどを表示する。表示部35は、図1、図10または図15の出力部4の例である。その他、出力部4として、プリンタなどを備えてもよい。
The
送受信部36は、ネットワーク5に接続する網終端装置または無線通信装置、及びそれらと接続するシリアルインタフェース又はLAN(Local Area Network)インタフェースから構成されている。送受信部36は、ネットワーク5を介して、検索エンジンを提供するサーバ(図示せず)に接続し、公開データ6の情報にアクセスする。
The transmission /
図1、図10または図15の検索戦略決定部21、データ検索部22、用語抽出部23、共起度計算部24および抽出ルール学習部25の処理は、用語共起度抽出用プログラム500が、制御部31、主記憶部32、外部記憶部33、操作部34、表示部35および送受信部36などを資源として用いて処理することによって実行する。
The processing of the search
以上、説明したように、本発明の第1の効果は、検索回数が幾何級数的に増加するのを防ぐことができることである。その理由は、公開データ6に対する検索は、用語のペアではなく、用語1語ずつで行うからである。
As described above, the first effect of the present invention is that the number of searches can be prevented from increasing geometrically. The reason is that the search for the
第2の効果は、少ない検索回数でもより多くの用語の関係を近似的に求めることができることである。その理由は、未検索の用語であっても、検索済み用語の検索結果に含まれる文書中に出現していれば、近似的な共起度を求めることができるからである。 The second effect is that the relationship of more terms can be obtained approximately even with a small number of searches. The reason is that an approximate co-occurrence degree can be obtained even if an unsearched term appears in a document included in the search result of the searched term.
第3の効果は、少ない検索回数でもより真の値に近い共起度グラフを求めることができることである。その理由は、未検索のどの用語を検索すれば、より近似度の高い共起度グラフが求まるかという指標を近似グラフスコアとして計算し、近似グラフスコアの高い用語の順に検索を行うからである。 A third effect is that a co-occurrence degree graph closer to a true value can be obtained even with a small number of searches. The reason is that an index indicating whether an unsearched term is searched for a co-occurrence degree graph with a higher degree of approximation is calculated as an approximate graph score, and the search is performed in the order of the terms with the highest approximate graph score. .
第4の効果は、入力データである用語リストに含まれていない新語を抽出しながら再帰的に共起度を計算することができることである。その理由は、検索の結果得られた文書に対して、抽出ルールを用いて用語リストに未登録の新語を抽出して追加するからである。 The fourth effect is that the co-occurrence degree can be recursively calculated while extracting new words that are not included in the term list as input data. The reason is that a new word that is not registered in the term list is extracted and added to the document obtained as a result of the search using the extraction rule.
その他、前記のハードウエア構成やフローチャートは一例であり、任意に変更及び修正が可能である。 In addition, the hardware configuration and the flowchart described above are merely examples, and can be arbitrarily changed and modified.
制御部31、主記憶部32、外部記憶部33、送受信部36及び内部バス30などから構成される用語共起度抽出装置100の処理を行う中心となる部分は、専用のシステムによらず、通常のコンピュータシステムを用いて実現可能である。たとえば、前記の動作を実行するための用語共起度抽出用プログラム500を、コンピュータが読み取り可能な記録媒体(フレキシブルディスク、CD−ROM、DVD−ROM等)に格納して配布し、当該コンピュータプログラムをコンピュータにインストールすることにより、前記の処理を実行する用語共起度抽出装置100を構成してもよい。また、インターネット等の通信ネットワーク上のサーバ装置が有する記憶装置に当該コンピュータプログラムを格納しておき、通常のコンピュータシステムがダウンロード等することで用語共起度抽出装置100を構成してもよい。
The central part that performs processing of the term co-occurrence
また、用語共起度抽出装置100の機能を、OS(オペレーティングシステム)とアプリケーションプログラムの分担、またはOSとアプリケーションプログラムとの協働により実現する場合などには、アプリケーションプログラム部分のみを記録媒体や記憶装置に格納してもよい。
When the function of the term co-occurrence
また、搬送波にコンピュータプログラムを重畳し、通信ネットワークを介して配信することも可能である。たとえば、通信ネットワーク上の掲示板(BBS, Bulletin Board System)に用語共起度抽出用プログラム500を掲示し、ネットワークを介して用語共起度抽出用プログラム500を配信してもよい。そして、用語共起度抽出用プログラム500を起動し、OSの制御下で、他のアプリケーションプログラムと同様に実行することにより、前記の処理を実行できるように構成してもよい。
It is also possible to superimpose a computer program on a carrier wave and distribute it via a communication network. For example, the term co-occurrence
本発明によれば、新開記事、スポーツニュース、論文、日記、掲示板、blog、メーリングリスト、メールマガジンなどの様々な情報源から、人間関係を表す情報や、組織間の関係を表す情報、組織と人の関係を表す情報、製品と企業の関係を表す情報などの抽出に適用することができる。 According to the present invention, from various information sources such as newly opened articles, sports news, papers, diaries, bulletin boards, blogs, mailing lists, e-mail magazines, information representing human relationships, information representing relationships between organizations, organizations and people It can be applied to extraction of information representing the relationship between products and information representing the relationship between products and companies.
1 記憶装置
2 処理装置
3 入力部
4 出力部
5 ネットワーク
6 公開データ
11 用語記憶部
12 抽出ルール記憶部
13 共起度データ記憶部
21 検索戦略決定部
22 データ検索部
23 用語抽出部
24 共起度計算部
25 抽出ルール学習部
31 制御部
32 主記憶部
33 外部記憶部
34 操作部
35 表示部
36 送受信部
100 用語共起度抽出装置
500 用語共起度抽出用プログラム
DESCRIPTION OF SYMBOLS 1
Claims (21)
未検索の用語について、用語間の共起度が求まる可能性を判断する共起度検出確度判定手段と、
前記共起度検出確度判定手段で判定した可能性に基づいて、用語の検索順を決定する検索戦略決定手段と、
前記検索戦略決定手段で決定した順序に従って、検索対象の用語1語ずつをキーワードとして、文書データを検索する検索手段と、
前記検索手段で検索した用語を含む検索結果文書から、該検索結果文書に含まれる検索対象の用語について、用語間の共起度を近似的に求める共起度計算手段と、
を備えることを特徴とする用語共起度抽出装置。 A search target term is a node, and for any two terms of the search target, a co-occurrence degree indicating the degree of appearance of the two terms in the same document is an edge between the nodes corresponding to the two terms. , A term co-occurrence degree extraction device that extracts a co-occurrence degree graph,
For unsearched terms, co-occurrence detection accuracy determination means for determining the possibility of finding the co-occurrence between terms,
Search strategy determination means for determining the search order of terms based on the possibility determined by the co-occurrence detection accuracy determination means;
Search means for searching for document data using each word as a keyword as a keyword according to the order determined by the search strategy determination means;
A co-occurrence degree calculating means for approximately obtaining a co-occurrence degree between terms for a search target term included in the search result document from a search result document including the term searched by the search means;
A term co-occurrence degree extraction device comprising:
前記検索結果文書における用語の周辺に出現する文字列を列挙し、
前記検索対象の用語に登録されている用語の単語属性、および該単語属性を一般化した正規表現によって、前記周辺文字列から規則候補の集合を生成し、
前記規則候補の出現頻度および/または用語抽出率の値をそれぞれの所定の閾値と比較して、前記規則候補を絞り込む、
ことによって前記用語を抽出する規則を生成することを特徴とする請求項3に記載の用語共起度抽出装置。 The extraction rule learning means includes
List character strings that appear around terms in the search result document,
A set of rule candidates is generated from the surrounding character string by using a word attribute of the term registered in the search target term and a regular expression that generalizes the word attribute,
The rule candidates are narrowed down by comparing the frequency of appearance of the rule candidates and / or the value of the term extraction rate with respective predetermined threshold values.
4. The term co-occurrence degree extracting apparatus according to claim 3, wherein a rule for extracting the term is generated by the above-mentioned.
前記検索戦略決定手段は、前記近似グラフスコアの上位の1または複数の用語を検索候補語とする、
ことを特徴とする請求額1ないし5のいずれか1項に記載の用語共起度抽出装置。 The co-occurrence degree detection accuracy determination means determines the possibility that the co-occurrence degree between terms for an unsearched term is obtained from the expected value of the number of newly extracted terms, from both-side unsearched in the co-occurrence degree graph. Approximate graph consisting of either the number of edges that have been searched on one side, the number of edges that have been searched from one side to both sides, the number of edges that have been searched on one side, but can be expected to increase the amount of information, or a combination of these As a score,
The search strategy determination means uses one or more terms in the top of the approximate graph score as search candidate words.
The term co-occurrence degree extracting device according to any one of claims 1 to 5, characterized in that:
検索済みの2つの用語に対応するノードの間のエッジである共起度を計算するとともに、
両側またはいずれか一方のノードの用語が未検索のエッジである共起度を、前記検索結果文書に基づく近似的な共起度として計算する、
ことを特徴とする請求額1ないし6のいずれか1項に記載の用語共起度抽出装置。 The co-occurrence degree calculating means in the co-occurrence degree graph,
Calculate the co-occurrence that is the edge between the nodes corresponding to the two searched terms,
Calculating a co-occurrence degree in which a term of both nodes or one of the nodes is an unsearched edge as an approximate co-occurrence degree based on the search result document;
The term co-occurrence degree extraction device according to any one of claims 1 to 6, characterized in that:
未検索の用語について、用語間の共起度が求まる可能性を判断する共起度検出確度判定ステップと、
前記共起度検出確度判定ステップで判定した可能性に基づいて、用語の検索順を決定する検索戦略決定ステップと、
前記検索戦略決定ステップで決定した順序に従って、検索対象の用語1語ずつをキーワードとして、文書データを検索する検索ステップと、
前記検索ステップで検索した用語を含む検索結果文書から、該検索結果文書に含まれる検索対象の用語について、用語間の共起度を近似的に求める共起度計算ステップと、
を備えることを特徴とする用語共起度抽出方法。 A search target term is a node, and for any two terms of the search target, a co-occurrence degree indicating the degree of appearance of the two terms in the same document is an edge between the nodes corresponding to the two terms. , A term co-occurrence degree extraction method for extracting a co-occurrence degree graph,
For unsearched terms, a co-occurrence detection accuracy determination step for determining the possibility of finding the co-occurrence between terms;
A search strategy determination step for determining a search order of terms based on the possibility determined in the co-occurrence detection accuracy determination step;
In accordance with the order determined in the search strategy determination step, a search step for searching the document data using each word to be searched as a keyword,
A co-occurrence degree calculation step of approximately obtaining a co-occurrence degree between terms for a search target term included in the search result document from a search result document including the term searched in the search step;
A term co-occurrence degree extraction method comprising:
前記検索結果文書における用語の周辺に出現する文字列を列挙し、
前記検索対象の用語に登録されている用語の単語属性、および該単語属性を一般化した正規表現によって、前記周辺文字列から規則候補の集合を生成し、
前記規則候補の出現頻度および/または用語抽出率の値をそれぞれの所定の閾値と比較して、前記規則候補を絞り込むことによって前記用語を抽出する規則を生成する
ことを特徴とする請求項10に記載の用語共起度抽出方法。 The extraction rule learning step includes:
List character strings that appear around terms in the search result document,
A set of rule candidates is generated from the surrounding character string by using a word attribute of the term registered in the search target term and a regular expression that generalizes the word attribute,
11. The rule for extracting the term is generated by comparing the frequency of appearance of the rule candidate and / or the value of the term extraction rate with respective predetermined threshold values and narrowing down the rule candidate. The term co-occurrence extraction method described.
前記検索戦略決定ステップは、前記近似グラフスコアの上位の1または複数の用語を検索候補語とする、
ことを特徴とする請求額8ないし12のいずれか1項に記載の用語共起度抽出方法。 In the co-occurrence degree detection accuracy determination step, the possibility of obtaining the co-occurrence degree between terms for an unsearched term is obtained from the expected value of the number of newly extracted terms, from both-side unsearched in the co-occurrence degree graph. Approximate graph consisting of either the number of edges that have been searched on one side, the number of edges that have been searched from one side to both sides, the number of edges that have been searched on one side, but can be expected to increase the amount of information, or a combination of these As a score,
In the search strategy determination step, one or more terms higher in the approximate graph score are set as search candidate words.
The term co-occurrence degree extraction method according to any one of claims 8 to 12, characterized in that:
検索済みの2つの用語に対応するノードの間のエッジである共起度を計算するとともに、
両側またはいずれか一方のノードの用語が未検索のエッジである共起度を、前記検索結果文書に基づく近似的な共起度として計算する、
ことを特徴とする請求額8ないし13のいずれか1項に記載の用語共起度抽出方法。 In the co-occurrence degree graph, in the co-occurrence degree graph,
Calculate the co-occurrence that is the edge between the nodes corresponding to the two searched terms,
Calculating a co-occurrence degree in which a term of both nodes or one of the nodes is an unsearched edge as an approximate co-occurrence degree based on the search result document;
The term co-occurrence degree extracting method according to any one of claims 8 to 13, wherein the term co-occurrence degree is extracted.
コンピュータを、
未検索の用語について、用語間の共起度が求まる可能性を判断する共起度検出確度判定手段と、
前記共起度検出確度判定手段で判定した可能性に基づいて、用語の検索順を決定する検索戦略決定手段と、
前記検索戦略決定手段で決定した順序に従って、検索対象の用語1語ずつをキーワードとして、文書データを検索する検索手段と、
前記検索手段で検索した用語を含む検索結果文書から、該検索結果文書に含まれる検索対象の用語について、用語間の共起度を近似的に求める共起度計算手段と、
として機能させることを特徴とする用語共起度抽出プログラム。 A search target term is a node, and for any two terms of the search target, a co-occurrence degree indicating the degree of appearance of the two terms in the same document is an edge between the nodes corresponding to the two terms. , A term co-occurrence degree extraction program that extracts a co-occurrence degree graph,
Computer
For unsearched terms, co-occurrence detection accuracy determination means for determining the possibility of finding the co-occurrence between terms,
Search strategy determination means for determining the search order of terms based on the possibility determined by the co-occurrence detection accuracy determination means;
Search means for searching for document data using each word as a keyword as a keyword according to the order determined by the search strategy determination means;
A co-occurrence degree calculating means for approximately obtaining a co-occurrence degree between terms for a search target term included in the search result document from a search result document including the term searched by the search means;
Term co-occurrence degree extraction program characterized by functioning as
前記検索結果文書における用語の周辺に出現する文字列を列挙し、
前記検索対象の用語に登録されている用語の単語属性、および該単語属性を一般化した正規表現によって、前記周辺文字列から規則候補の集合を生成し、
前記規則候補の出現頻度および/または用語抽出率の値をそれぞれの所定の閾値と比較して、前記規則候補を絞り込む、
ことによって前記用語を抽出する規則を生成することを特徴とする請求項17に記載の用語共起度抽出プログラム。 The extraction rule learning means includes
List character strings that appear around terms in the search result document,
A set of rule candidates is generated from the surrounding character string by using a word attribute of the term registered in the search target term and a regular expression that generalizes the word attribute,
The rule candidates are narrowed down by comparing the frequency of appearance of the rule candidates and / or the value of the term extraction rate with respective predetermined threshold values.
18. The term co-occurrence degree extracting program according to claim 17, wherein a rule for extracting the term is generated.
前記検索戦略決定手段は、前記近似グラフスコアの上位の1または複数の用語を検索候補語とする、
ことを特徴とする請求額15ないし19のいずれか1項に記載の用語共起度抽出プログラム。 The co-occurrence degree detection accuracy determination means determines the possibility that the co-occurrence degree between terms for an unsearched term is obtained from the expected value of the number of newly extracted terms, from both-side unsearched in the co-occurrence degree graph. Approximate graph consisting of either the number of edges that have been searched on one side, the number of edges that have been searched from one side to both sides, the number of edges that have been searched on one side, but can be expected to increase the amount of information, or a combination of these As a score,
The search strategy determination means uses one or more terms in the top of the approximate graph score as search candidate words.
The term co-occurrence degree extraction program according to any one of claims 15 to 19, characterized in that:
検索済みの2つの用語に対応するノードの間のエッジである共起度を計算するとともに、
両側またはいずれか一方のノードの用語が未検索のエッジである共起度を、前記検索結果文書に基づく近似的な共起度として計算する、
ことを特徴とする請求額15ないし20のいずれか1項に記載の用語共起度抽出プログラム。 The co-occurrence degree calculating means in the co-occurrence degree graph,
Calculate the co-occurrence that is the edge between the nodes corresponding to the two searched terms,
Calculating a co-occurrence degree in which a term of both nodes or one of the nodes is an unsearched edge as an approximate co-occurrence degree based on the search result document;
The term co-occurrence degree extraction program according to any one of claims 15 to 20, characterized in that:
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2007316422A JP5251099B2 (en) | 2007-12-06 | 2007-12-06 | Term co-occurrence degree extraction device, term co-occurrence degree extraction method, and term co-occurrence degree extraction program |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2007316422A JP5251099B2 (en) | 2007-12-06 | 2007-12-06 | Term co-occurrence degree extraction device, term co-occurrence degree extraction method, and term co-occurrence degree extraction program |
Publications (2)
Publication Number | Publication Date |
---|---|
JP2009140263A true JP2009140263A (en) | 2009-06-25 |
JP5251099B2 JP5251099B2 (en) | 2013-07-31 |
Family
ID=40870801
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2007316422A Active JP5251099B2 (en) | 2007-12-06 | 2007-12-06 | Term co-occurrence degree extraction device, term co-occurrence degree extraction method, and term co-occurrence degree extraction program |
Country Status (1)
Country | Link |
---|---|
JP (1) | JP5251099B2 (en) |
Cited By (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2011081494A (en) * | 2009-10-05 | 2011-04-21 | Tokyo Electric Power Co Inc:The | Document data analyzing device, method and program |
JP2012113530A (en) * | 2010-11-25 | 2012-06-14 | Hitachi Solutions Ltd | Electronic document masking system |
JP2014182529A (en) * | 2013-03-19 | 2014-09-29 | Dainippon Printing Co Ltd | Visualization method, computer program, and visualization device |
JP2016218512A (en) * | 2015-05-14 | 2016-12-22 | 富士ゼロックス株式会社 | Information processing device and information processing program |
JP2019215815A (en) * | 2018-06-14 | 2019-12-19 | Zホールディングス株式会社 | Extraction device, extraction method, and extraction program |
Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH09245058A (en) * | 1996-03-11 | 1997-09-19 | Dainippon Printing Co Ltd | Data base system and construction device for key word network |
JP2000010986A (en) * | 1998-06-18 | 2000-01-14 | Trendy:Kk | Retrieval support method for document data base and storage medium where program thereof is stored |
JP2005122665A (en) * | 2003-10-20 | 2005-05-12 | Sony Corp | Electronic equipment apparatus, method for updating related word database, and program |
-
2007
- 2007-12-06 JP JP2007316422A patent/JP5251099B2/en active Active
Patent Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH09245058A (en) * | 1996-03-11 | 1997-09-19 | Dainippon Printing Co Ltd | Data base system and construction device for key word network |
JP2000010986A (en) * | 1998-06-18 | 2000-01-14 | Trendy:Kk | Retrieval support method for document data base and storage medium where program thereof is stored |
JP2005122665A (en) * | 2003-10-20 | 2005-05-12 | Sony Corp | Electronic equipment apparatus, method for updating related word database, and program |
Non-Patent Citations (2)
Title |
---|
CSNJ201010003225; 浅田 洋平,外3名: 'Web上の情報からの大規模人間関係ネットワークの構築と分析' 2004年度人工知能学会全国大会(第18回)論文集 [CD-ROM] , 20040602, P.1-4, 3F1-02, 社団法人 人工知能学会 * |
JPN6012048746; 浅田 洋平,外3名: 'Web上の情報からの大規模人間関係ネットワークの構築と分析' 2004年度人工知能学会全国大会(第18回)論文集 [CD-ROM] , 20040602, P.1-4, 3F1-02, 社団法人 人工知能学会 * |
Cited By (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2011081494A (en) * | 2009-10-05 | 2011-04-21 | Tokyo Electric Power Co Inc:The | Document data analyzing device, method and program |
JP2012113530A (en) * | 2010-11-25 | 2012-06-14 | Hitachi Solutions Ltd | Electronic document masking system |
JP2014182529A (en) * | 2013-03-19 | 2014-09-29 | Dainippon Printing Co Ltd | Visualization method, computer program, and visualization device |
JP2016218512A (en) * | 2015-05-14 | 2016-12-22 | 富士ゼロックス株式会社 | Information processing device and information processing program |
JP2019215815A (en) * | 2018-06-14 | 2019-12-19 | Zホールディングス株式会社 | Extraction device, extraction method, and extraction program |
JP7305312B2 (en) | 2018-06-14 | 2023-07-10 | ヤフー株式会社 | Extraction device, extraction method and extraction program |
Also Published As
Publication number | Publication date |
---|---|
JP5251099B2 (en) | 2013-07-31 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US8108405B2 (en) | Refining a search space in response to user input | |
US8543380B2 (en) | Determining a document specificity | |
Kaptein et al. | Exploiting the category structure of Wikipedia for entity ranking | |
Xiong et al. | Towards better text understanding and retrieval through kernel entity salience modeling | |
US20090254540A1 (en) | Method and apparatus for automated tag generation for digital content | |
US20130110839A1 (en) | Constructing an analysis of a document | |
US20070175674A1 (en) | Systems and methods for ranking terms found in a data product | |
JP4942727B2 (en) | Text summarization apparatus, method and program thereof | |
JP5391632B2 (en) | Determining word and document depth | |
US20140359409A1 (en) | Learning Synonymous Object Names from Anchor Texts | |
JP5251099B2 (en) | Term co-occurrence degree extraction device, term co-occurrence degree extraction method, and term co-occurrence degree extraction program | |
JP2002132811A (en) | Method and system for answering question and recording medium with recorded question answering program | |
Chen et al. | Entity set expansion with semantic features of knowledge graphs | |
Najadat et al. | Automatic keyphrase extractor from arabic documents | |
JP2004192546A (en) | Information retrieval method, device, program, and recording medium | |
Oh et al. | Efficient semantic network construction with application to PubMed search | |
Maylawati et al. | Feature-based approach and sequential pattern mining to enhance quality of Indonesian automatic text summarization | |
Ren et al. | Role-explicit query extraction and utilization for quantifying user intents | |
Al-Thubaity et al. | Do words with certain part of speech tags improve the performance of arabic text classification? | |
Huang et al. | Constructing personal knowledge base: automatic key-phrase extraction from multiple-domain web pages | |
Zhu et al. | Enhance web pages genre identification using neighboring pages | |
Che Alhadi et al. | An ensemble similarity model for short text retrieval | |
JP3486406B2 (en) | Patent information search device | |
Stratogiannis et al. | Related Entity Finding Using Semantic Clustering Based on Wikipedia Categories | |
Gao et al. | Using shallow natural language processing in a just-in-time information retrieval assistant for bloggers |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20101105 |
|
A977 | Report on retrieval |
Free format text: JAPANESE INTERMEDIATE CODE: A971007 Effective date: 20120910 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20120918 |
|
A521 | Written amendment |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20121114 |
|
TRDD | Decision of grant or rejection written | ||
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20130319 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20130401 |
|
R150 | Certificate of patent or registration of utility model |
Ref document number: 5251099 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20160426 Year of fee payment: 3 |