EP1540512A1 - Generator eines f r ein feld spezifisches corpus - Google Patents
Generator eines f r ein feld spezifisches corpusInfo
- Publication number
- EP1540512A1 EP1540512A1 EP03766404A EP03766404A EP1540512A1 EP 1540512 A1 EP1540512 A1 EP 1540512A1 EP 03766404 A EP03766404 A EP 03766404A EP 03766404 A EP03766404 A EP 03766404A EP 1540512 A1 EP1540512 A1 EP 1540512A1
- Authority
- EP
- European Patent Office
- Prior art keywords
- rank
- distance
- word
- words
- sentence
- 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.)
- Withdrawn
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/20—Natural language analysis
- G06F40/253—Grammatical analysis; Style critique
Definitions
- the present invention belongs to the field of automatic natural language processing. More particularly, it addresses the problem of generating a set of texts specific to a specific field of application or corpus.
- Specific corpora are necessary, in particular in computerized speech recognition systems to reach an acceptable recognition rate for the user. This is particularly necessary for systems with a large vocabulary (typically 20,000 words).
- the generation of a specific corpus is a processing which still requires, in the state of the art, long progressive learning operations based on a selection of the texts of a corpus of a given field from the sentences entered by the 'user.
- This method has the disadvantage of requiring long and costly user interactions.
- the present invention overcomes this drawback by allowing the user to formulate a specification of the specific corpus in the form of a grammar, or set of syntax rules, specific to the application domain, the generation of the specific corpus being then automatic.
- the invention thus significantly reduces the time required to collect the specific corpus.
- the invention provides a product / program and a method of collecting a set of texts specific to a field of application from a set of texts not specific, characterized in that it comprises a command module by a grammar of the field of application.
- Figure 1 Diagram showing the modules of the product / program according to the invention.
- Figure 2 Diagram showing an example of generation of n-grams of a specific grammar of an application domain.
- Figure 3 Diagram explaining an algorithm for calculating the distances between words according to the invention.
- Figure 4 Example of calculating the distances between words according to the invention.
- Figure 6 Graph showing the distribution of n-grams as a function of the distance to words of the grammar vocabulary.
- Figure 1 shows the sequence of modules and treatments according to the invention. The definitions in the figure are as follows:
- the general corpus 10 is a set of texts, commercially available, not specific to a field, which can contain several million texts.
- n-gram [V C oRPUs] 13 is a set of sequences of ordered words extracted from the general corpus or n-tuples, said words being present in the vocabulary. The manner in which these n-grams are made up is described below.
- the vocabulary of this corpus VCORPU S 1 1 is the set of words most frequently encountered in this corpus or set of monograms. Vocabulary is generally limited to 20,000 words.
- the AEF generator 20 is a module which makes it possible to generate the n-grams of a grammar of the domain ⁇ from said grammar, in a manner also explained in the following description.
- a set n- grams [Vc FG ( ⁇ )] 33 is generated from the grammar CFG ( ⁇ ) 30 in a manner explained in the following description.
- the specific corpus of ⁇ , CORPUS ( ⁇ ) 40 is initialized with the n-grams V C F G ( ⁇ ) 33.
- CORPUS ( ⁇ ) 40 we add the n-grams of VCORPUS 1 which fulfill the condition:
- ⁇ is the distance threshold which must be adjusted so as to optimize the constitution of CORPUS ( ⁇ ) 40 for specific recognition applications in the ⁇ domain.
- n-grams of VCORPUS13 will be bi-grams or tri-grams.
- a biogram is a set of two words which belong to the vocabulary V CORPUS I 1 with which are associated their probabilities of occurrence in the general corpus 10.
- Tri-grams are sets of three words in the order in which they appear in general corpus 10 with which their probabilities of occurrence are associated in general corpus 10.
- V C oRPus To generate n-grams [V C oRPus] one can use commercial tools generally designated under the generic name of tools for generating statistical language models. We can for example use the one developed by Carnegie Mellon University described by Philippe Clarkson and Ronald Rosenfeld in a University publication [Rosenfeld 95] Rosenfeld R., The CMU Statistical Language Modeling Toolkit and its use, ARPA Spoken Language Technology Workshop , Austin Texas (USA) pp 45-50, 1995. This article is incorporated by reference into the present description. Most statistical language models, and in particular the one described in the article under reference, correct the lowest occurrence probabilities so as to eliminate them. the bias which is classic in this type of statistical analysis. The least observed n-grams have a probability of occurrence biased downwards and the most observed a probability of occurrence biased upwards.
- the grammar CFG ( ⁇ ) 30 is a context-independent grammar, which means that variations in the context do not modify the grammar itself. This grammar is, in the state of the art, created manually.
- the n-grams [V C FG ( ⁇ )] 33 will typically be tri-grams or quadri-grams. They are created by the AEF generator 20, an example of which is described in FIG. 2. The generation of the n-grams of CFG ( ⁇ ) 30 takes place as follows,
- GRAMMAR unit (alpha OR bravo) (join OR (go to) unit
- V C FG (unit, alpha, bravo, join, go to, unit).
- VCGF I 6
- the uni-grams are: unit, alpha, bravo, join, go to, unity (we fall back on VCFG) - Bigrams are: alpha unit, bravo unit, alpha join, alpha go to, bravo join, bravo go to , join the unit, go to the unit, the alpha unit, the bravo unit.
- the vocabulary VCF G ( ⁇ ) 31 is the set of uni-grams.
- FIG. 3 illustrates the operation of the algorithm for calculating the distance between two words of a dictionary. In the application we use the three dictionaries 10, 12 and 32 of Figure 1.
- the dico-VcoRP U s 12 and dico-VcFG ( ⁇ ) 32 dictionaries are dictionaries extracted from a general dictionary 10a which is a commercially available component.
- This general dictionary provides information on inflected forms of words, such as pronunciation, the root of the word.
- semantic information which can be represented in the form of a graph or conceptual vectors. This algorithm has three steps:
- the editing distance returns the minimum number of editing operations necessary to transform the word a into word b.
- These editing operations are generally the insertion of a letter, the deletion of a letter and the substitution of a letter.
- D (a, b) be the function which returns the editing distance (Levenstein) which makes it possible to transform a into b.
- D ⁇ m a x be the maximum distance between any two words.
- a ⁇ VCFG ( ⁇ ) and be VCORPUS be the two words whose distance we want to measure.
- Any distance calculation function between a and b can be used. It is however preferable that the function D is continuous in pieces and increasing as a function of DQ.
- An example of the algorithm for calculating the distance between words is given below.
- Vcorpus defined by VCORPUS ⁇ , "show”, "horse” ⁇
- the shortest distance is that for the couple (display, show). It is indeed easier to insert than to delete: deletion leads to the loss of information, while insertion adds noise to the information.
- semantic calculation is made from semantic dictionaries.
- semantic dictionaries There are several forms of semantic dictionaries, two of which in particular: those based on graphs, and those based on vectors. On the example of colors, if the semantic dictionary is a graph, we can obtain the diagram of figure 5;
- the distance between colors and red is 2.
- the distance between red and green is 1.
- the distances are integer values, which makes it easier to build analysis tables that will allow you to choose the threshold.
- M (i, j) min M (i, j - 1) + D ( ⁇ , yj)
- the distance between two n-grams uses the distance of
- M 5 advance The distance between these two sentences is equal to the distance between the sequences M 1 M 2 M 3 M 4 and M 1 M2M 3 M 5 , given the unit distance matrix D (Mj, M j ) calculated previously .
- the implementation of the invention is possible on a commercial computer, of any type provided with conventional interfaces for input and restitution of data (keyboard, mouse, screen, printer). Integration with a voice recognition system is possible on a common configuration.
- the computer system also has a microphone, speakers, a specialized signal processing card and specialized voice recognition software.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Health & Medical Sciences (AREA)
- Artificial Intelligence (AREA)
- Audiology, Speech & Language Pathology (AREA)
- Computational Linguistics (AREA)
- General Health & Medical Sciences (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Machine Translation (AREA)
Applications Claiming Priority (3)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| FR0209531 | 2002-07-26 | ||
| FR0209531A FR2842923B1 (fr) | 2002-07-26 | 2002-07-26 | Generateur d'un corpus specifique a un domaine |
| PCT/EP2003/050315 WO2004013766A1 (fr) | 2002-07-26 | 2003-07-16 | Générateur d'un corpus spécifique à un domaine |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| EP1540512A1 true EP1540512A1 (de) | 2005-06-15 |
Family
ID=30011528
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| EP03766404A Withdrawn EP1540512A1 (de) | 2002-07-26 | 2003-07-16 | Generator eines f r ein feld spezifisches corpus |
Country Status (4)
| Country | Link |
|---|---|
| EP (1) | EP1540512A1 (de) |
| AU (1) | AU2003262524A1 (de) |
| FR (1) | FR2842923B1 (de) |
| WO (1) | WO2004013766A1 (de) |
Family Cites Families (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| EP0602296A1 (de) * | 1992-12-17 | 1994-06-22 | International Business Machines Corporation | Adaptives Verfahren zur Erzeugung gebietsabhängiger Modelle für intelligente Systeme |
| US5995918A (en) * | 1997-09-17 | 1999-11-30 | Unisys Corporation | System and method for creating a language grammar using a spreadsheet or table interface |
| EP1100075A1 (de) * | 1999-11-11 | 2001-05-16 | Deutsche Thomson-Brandt Gmbh | Verfahren zum Aufbau eines kontinuierlichen Spracherkenners |
-
2002
- 2002-07-26 FR FR0209531A patent/FR2842923B1/fr not_active Expired - Lifetime
-
2003
- 2003-07-16 EP EP03766404A patent/EP1540512A1/de not_active Withdrawn
- 2003-07-16 AU AU2003262524A patent/AU2003262524A1/en not_active Abandoned
- 2003-07-16 WO PCT/EP2003/050315 patent/WO2004013766A1/fr not_active Ceased
Non-Patent Citations (1)
| Title |
|---|
| See references of WO2004013766A1 * |
Also Published As
| Publication number | Publication date |
|---|---|
| FR2842923A1 (fr) | 2004-01-30 |
| AU2003262524A1 (en) | 2004-02-23 |
| FR2842923B1 (fr) | 2004-09-24 |
| WO2004013766A1 (fr) | 2004-02-12 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US10665226B2 (en) | System and method for data-driven socially customized models for language generation | |
| CN106415535B (zh) | 使用深度学习模型的上下文相关的搜索 | |
| CN112256822A (zh) | 文本搜索方法、装置、计算机设备和存储介质 | |
| US20170140304A1 (en) | Justifying Passage Machine Learning for Question and Answer Systems | |
| CN114328899B (zh) | 一种文本纪要生成方法、装置、设备及存储介质 | |
| EP1836651B1 (de) | Verfahren zum suchen, erkennen und lokalisieren eines terms in tinte und dazugehörige vorrichtung, computer programm | |
| CN109190109B (zh) | 融合用户信息生成评论摘要的方法及装置 | |
| FR2896603A1 (fr) | Procede et dispositif pour extraire des informations et les transformer en donnees qualitatives d'un document textuel | |
| CN107229627B (zh) | 一种文本处理方法、装置及计算设备 | |
| FR2963841A1 (fr) | Systeme de traduction combinant des modeles hierarchiques et bases sur des phases | |
| CN110297880B (zh) | 语料产品的推荐方法、装置、设备及存储介质 | |
| CN101382946A (zh) | 信息处理设备、信息处理方法和程序 | |
| US9633008B1 (en) | Cognitive presentation advisor | |
| KR101677859B1 (ko) | 지식 베이스를 이용하는 시스템 응답 생성 방법 및 이를 수행하는 장치 | |
| WO2022183923A1 (zh) | 短语生成方法、装置和计算机可读存储介质 | |
| CN117043742A (zh) | 在训练文本到语音模型中使用语音到文本数据 | |
| CN119228386A (zh) | 一种智能客服系统的优化方法、系统、设备及介质 | |
| CN119047494A (zh) | 多语种跨语言环境下的神经网络文本翻译增强方法及系统 | |
| US20120239382A1 (en) | Recommendation method and recommender computer system using dynamic language model | |
| EP1540512A1 (de) | Generator eines f r ein feld spezifisches corpus | |
| EP1984873A1 (de) | Hilfsverfahren und einrichtung zum aufbau der arboreszenz einer elektronischen dokumentgruppe | |
| FR3031823A1 (fr) | Lemmatisateur semantique base sur des dictionnaires ontologiques. | |
| CN114722267A (zh) | 信息推送方法、装置及服务器 | |
| WO2013117872A1 (fr) | Procede d'identification d'un ensemble de phrases d'un document numerique, procede de generation d'un document numerique, dispositif associe | |
| FR3030809A1 (fr) | Procede d'analyse automatique de la qualite litteraire d'un texte |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| PUAI | Public reference made under article 153(3) epc to a published international application that has entered the european phase |
Free format text: ORIGINAL CODE: 0009012 |
|
| 17P | Request for examination filed |
Effective date: 20050127 |
|
| AK | Designated contracting states |
Kind code of ref document: A1 Designated state(s): AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IT LI LU MC NL PT RO SE SI SK TR |
|
| AX | Request for extension of the european patent |
Extension state: AL LT LV MK |
|
| DAX | Request for extension of the european patent (deleted) | ||
| 17Q | First examination report despatched |
Effective date: 20161222 |
|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: THE APPLICATION IS DEEMED TO BE WITHDRAWN |
|
| 18D | Application deemed to be withdrawn |
Effective date: 20170704 |