JP2007265458A - 複数の圧縮オプションを生成する方法およびコンピュータ - Google Patents
複数の圧縮オプションを生成する方法およびコンピュータ Download PDFInfo
- Publication number
- JP2007265458A JP2007265458A JP2007191482A JP2007191482A JP2007265458A JP 2007265458 A JP2007265458 A JP 2007265458A JP 2007191482 A JP2007191482 A JP 2007191482A JP 2007191482 A JP2007191482 A JP 2007191482A JP 2007265458 A JP2007265458 A JP 2007265458A
- Authority
- JP
- Japan
- Prior art keywords
- word
- compression
- text body
- computer
- text
- 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.)
- Pending
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/30—Semantic analysis
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/20—Natural language analysis
- G06F40/205—Parsing
- G06F40/211—Syntactic parsing, e.g. based on context-free grammar [CFG] or unification grammars
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/20—Natural language analysis
- G06F40/268—Morphological analysis
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/20—Natural language analysis
- G06F40/279—Recognition of textual entities
- G06F40/284—Lexical analysis, e.g. tokenisation or collocates
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/20—Natural language analysis
- G06F40/279—Recognition of textual entities
- G06F40/289—Phrasal analysis, e.g. finite state techniques or chunking
- G06F40/295—Named entity recognition
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Artificial Intelligence (AREA)
- Computational Linguistics (AREA)
- General Health & Medical Sciences (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- Health & Medical Sciences (AREA)
- Audiology, Speech & Language Pathology (AREA)
- Machine Translation (AREA)
- Document Processing Apparatus (AREA)
- Compression, Expansion, Code Conversion, And Decoders (AREA)
- Information Transfer Between Computers (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
- Mobile Radio Communication Systems (AREA)
- Telephone Function (AREA)
Abstract
【解決手段】表示すべきテキスト中の各単語を言語解析し、言語解析に応じて、各単語について複数の圧縮オプションを割り当てる(230)。複数の圧縮オプションの1つを選択して(232)、選択の圧縮オプションに対応の圧縮形(圧縮の単語)を取得する。
【選択図】図4
Description
前記テキスト本文について言語解析を実行し、前記テキスト本文の中の、単語および数字の1つを有する複数のトークンを取得する手段と、前記言語解析の実行の後、前記テキスト本文を圧縮するために、前記テキスト本文の中の複数の対応の異なるトークンの各々について複数の正しい圧縮オプションを自動的に生成して前記テキスト本文を圧縮するための手段であって、そこでは、前記正しい複数の圧縮オプションの各々は、異なる、前記テキスト本分の中の対応のトークンの正しい圧縮形を有し、前記対応のトークンの中の文字列または数字列の個数を少なくとも減らし、前記圧縮形には前記対応の複数のトークンの中のいくつかの、すべてではない文字列を含む手段と、前記テキスト本文の中の異なる複数のトークンの各々についての複数の圧縮オプションの1つを選択し、各トークンについて選択の圧縮のオプションに従って前記テキスト本文の圧縮形を出力する手段として動作することを特徴とする。
LongForm メッセージ本文214に書かれている単語の形である。
ShortForm ShortType属性によって識別される圧縮規則または技法を適用した後の単語の形である。
CaseNormalizedForm ShortFormの第1文字を大文字にして、残りの文字を小文字にする。
CompressedForm CaseNormalizedFormの圧縮形であり、単語をさらに圧縮するためにCaseNormalizedFormに追加の圧縮規則を施す。
have=動詞
a=冠詞
meeting=名詞
with=前置詞
Dr.John Epstein=固有名詞
next=形容詞
Tuesday=名詞
at=前置詞
ten a.m.=名詞
If(x=1){
<Some XML>Content</Some XML><Foo/>.
<EssentialPunct>:これらは叙述を必要とせず、すべてのトークンを叙述する働きをすると仮定する
<CaseDelineable>:大文字/小文字を標準化できる場合の、すべての通常の単語/句などを含む
<Number>:数字(これらには「2」に変換された「two」のようなトークンが含まれることに留意されたい)
<SpaceDelineable>:URLや電子メールアドレスのように、周りにスペースがなければならないトークン
アルゴリズムの一実施形態
//前にスペースのない短い形で始める
Result = RemoveLeadingSpaces (<short form>)
//トークンがNULLでない場合にのみこれを行う
if (Result) {
FrontSpaceNeeded = FALSE;
//現在のトークンのタイプをオンにする
switch <curtype> {
case <EssentialPunct>:
//すべて行うべきである。叙述は必要でない
break;
case <CaseDelineable>:
//前のタイプがspace delineableであった場合はスペースを配置する
if (prevtype == <SpaceDelineable>) FrontSpaceNeeded = TRUE;
break;
case <Number>:
//前のタイプがnumberまたはspace delineableであった場合はスペースを配置する
if (prevtype == <SpaceDelineable> || prevtype == <Number> || PreviousTokenがディジットで終わる) FrontSpaceNeeded = True;
break;
case <SpaceDelineable>:
//前のトークンがessential punctuationでない限りスペースを配置する
if (prevtype! = <EssentialPunct> && !lsFirstTokenInSentence) FrontSpaceNeeded = TRUE;
break;
}
//前のタイプを現在のタイプに設定する
prevtype = curtype;
if (FrontSpaceNeeded) Result = AddLeadingSpace (<Result>)
}
また、後続の単語が数字、日付、時間など(ディジットで始まる場合のある何らかのもの)である場合も、「ein」置換は行われないことに留意されたい。
ある読み方では、単語「he」は「John」と同一指示的である。別の読み方では、「he」は他の誰かである可能性がある。以下のように、出力を入力よりいくらかでもあいまいにすることなく、この文のいくつかの要素を削除することができる。
従属節の主語は、それが代名詞であって、かつ主節の主語と同一指示的であるときだけ削除するように注意しなければならないことに留意されたい。例えば、以下の場合は削除すべきではない。
John said that Bill was arriving...
John sain that they were arriving...
LongForm=You
ShortForm=U
CNF=U
Comp.=U
LongForm=_have
ShortForm=_have
CNF=Have
Comp.=Hve
LongForm=_a
ShortForm=Null
CNF=Null
Comp.=Null
LongForm=_meeting
ShortForm=Mtg
CNF=Mtg
Comp.=Mtg
LongForm=_with
ShortForm=_with
CNF=With
Comp.=Wth
LongForm=_Dr._John_Epstein
ShortForm=_Epstein
CNF=Epstein
Comp.=Epstein
LongForm=_next_Tuesday
ShortForm=_12/3
CNF=12/3
Comp.=12/3
LongForm=_at
ShortForm=@
CNF=@
Comp.=@
LongForm=_ten_am
ShortForm=_10am
CNF=10am
Comp.=10am
非常に大胆な圧縮でも、これは大いに読むことが可能かつ解読可能なテキストメッセージであり、それでもなお、図3に述べた原形に勝って多くの空間を節約する。
120 プロセッシングユニット
121 システムバス
130 システムメモリ
131 ROM
132 RAM
133 BIOS
134 オペレーティングシステム
135 アプリケーションプログラム
136 その他のプログラムモジュール
137 プログラムデータ
140 取外し不可能かつ不揮発性メモリインタフェース
141 ハードディスクドライブ
144 オペレーティングシステム
145 アプリケーションプログラム
146 その他のプログラムモジュール
147 プログラムデータ
150 取外し可能かつ不揮発性メモリインタフェース
151 磁気ディスクドライブ
152 磁気ディスク
155 光学ディスクドライブ
156 光学ディスク
160 ユーザ入力インタフェース
161 ポインティングデバイス
162 キーボード
163 マイクロホン
170 ネットワークインタフェース
171 ローカルエリアネットワーク
172 モデム
173 ワイドエリアネットワーク
180 リモートコンピュータ
185 リモートアプリケーションプログラム
190 ビデオインタフェース
191 モニタ
195 出力周辺インタフェース
196 プリンタ
197 スピーカ
200 メッセージハンドラ
202 コンプレッサ
204 メッセージパーサ
205 ターゲットデバイス
206 言語アナライザ
208 テキスト圧縮コンポーネント
210 リンク
212 メッセージ
214 メッセージ本文
216 圧縮済みXML出力
300、302、304、306、308、310、312、314、316、318、320、322、324、326 ノード
Claims (4)
- コンピュータにおいて、テキスト本文を処理して複数の圧縮オプションを生成する方法において、前記コンピュータは、
前記テキスト本文について言語解析を実行し、前記テキスト本文の中の、単語および数字の1つを有する複数のトークンを取得する手段と、
前記言語解析の実行の後、前記テキスト本文を圧縮するために、前記テキスト本文の中の複数の対応の異なるトークンの各々について複数の正しい圧縮オプションを自動的に生成して前記テキスト本文を圧縮するための手段であって、そこでは、前記正しい複数の圧縮オプションの各々は、異なる、前記テキスト本分の中の対応のトークンの正しい圧縮形を有し、前記対応のトークンの中の文字列または数字列の個数を少なくとも減らし、前記圧縮形には前記対応の複数のトークンの中のいくつかの、すべてではない文字列を含む手段と、
前記テキスト本文の中の異なる複数のトークンの各々についての複数の圧縮オプションの1つを選択し、各トークンについて選択の圧縮のオプションに従って前記テキスト本文の圧縮形を出力する手段
として動作することを特徴とする方法。 - メッセージを受け取り、メッセージの中のテキスト本文の一部分の異なる形態を示す複数の圧縮オプションを生成するコンピュータにおいて、
言語学的に前記テキスト本文を解析して、前記テキスト本文の中の個々のトークンを葉ノードで示す言語学的解析を提供する手段と、
少なくとも前記言語学的解析の中の葉ノードで表される複数のトークンについての複数の異なる圧縮形を提供する手段であって、前記複数の異なる圧縮形は、各々が対応の個々のトークンの正しい圧縮形を示す圧縮形生成手段と、
前記テキスト本文の中の個々のトークンについての異なる複数の圧縮形の中の選択を示す出力を生成する圧縮手段と
を備えたことを特徴とするコンピュータ。 - テキスト本文を圧縮するためのコンピュータにおいて、
圧縮のタイプとして、単語の消去する、単語を置換するおよび単語そのものを使用するタイプが単語の言語学的特徴に対応して予め定められており、
前記テキスト本文中の各単語の特徴を言語学的に解析する解析手段であって、前記言語学的の解析により得られる言語学的特徴は、単語に付加される属性の形態で表される解析手段と、
前記属性に従って前記テキスト本文中の各単語を圧縮する圧縮手段と
を備えたことを特徴とするコンピュータ。 - 前記テキスト本文は、複数の単語を複数のノードとして表される1つのツリーの形態で表され、前記解析手段は前記ツリー上の各単語を検索して単語を言語学的に解析することを特徴とする請求項3に記載のコンピュータ。
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US09/770,779 US7069207B2 (en) | 2001-01-26 | 2001-01-26 | Linguistically intelligent text compression |
Related Parent Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2002019244A Division JP2002334071A (ja) | 2001-01-26 | 2002-01-28 | 言語的にインテリジェントなテキスト圧縮 |
Publications (1)
Publication Number | Publication Date |
---|---|
JP2007265458A true JP2007265458A (ja) | 2007-10-11 |
Family
ID=25089649
Family Applications (2)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2002019244A Pending JP2002334071A (ja) | 2001-01-26 | 2002-01-28 | 言語的にインテリジェントなテキスト圧縮 |
JP2007191482A Pending JP2007265458A (ja) | 2001-01-26 | 2007-07-23 | 複数の圧縮オプションを生成する方法およびコンピュータ |
Family Applications Before (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2002019244A Pending JP2002334071A (ja) | 2001-01-26 | 2002-01-28 | 言語的にインテリジェントなテキスト圧縮 |
Country Status (4)
Country | Link |
---|---|
US (2) | US7069207B2 (ja) |
EP (1) | EP1227408A3 (ja) |
JP (2) | JP2002334071A (ja) |
KR (1) | KR100890691B1 (ja) |
Families Citing this family (107)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20050234727A1 (en) * | 2001-07-03 | 2005-10-20 | Leo Chiu | Method and apparatus for adapting a voice extensible markup language-enabled voice system for natural speech recognition and system response |
US20030149562A1 (en) * | 2002-02-07 | 2003-08-07 | Markus Walther | Context-aware linear time tokenizer |
US7398209B2 (en) | 2002-06-03 | 2008-07-08 | Voicebox Technologies, Inc. | Systems and methods for responding to natural language speech utterance |
FR2841355B1 (fr) * | 2002-06-24 | 2008-12-19 | Airbus France | Procede et dispositif pour elaborer une forme abregee d'un terme quelconque qui est utilise dans un message d'alarme destine a etre affiche sur un ecran du poste de pilotage d'un aeronef |
US7693720B2 (en) | 2002-07-15 | 2010-04-06 | Voicebox Technologies, Inc. | Mobile systems and methods for responding to natural language speech utterance |
US9135236B2 (en) | 2002-07-22 | 2015-09-15 | Nokia Technologies Oy | Method and arrangement for obtaining an electronic mail service |
US7546234B1 (en) * | 2003-01-08 | 2009-06-09 | Xambala, Inc. | Semantic processing engine |
JP2006276918A (ja) * | 2005-03-25 | 2006-10-12 | Fuji Xerox Co Ltd | 翻訳装置、翻訳方法およびプログラム |
US7640160B2 (en) | 2005-08-05 | 2009-12-29 | Voicebox Technologies, Inc. | Systems and methods for responding to natural language speech utterance |
US7620549B2 (en) | 2005-08-10 | 2009-11-17 | Voicebox Technologies, Inc. | System and method of supporting adaptive misrecognition in conversational speech |
US7949529B2 (en) | 2005-08-29 | 2011-05-24 | Voicebox Technologies, Inc. | Mobile systems and methods of supporting natural language human-machine interactions |
US8225231B2 (en) | 2005-08-30 | 2012-07-17 | Microsoft Corporation | Aggregation of PC settings |
EP1934971A4 (en) | 2005-08-31 | 2010-10-27 | Voicebox Technologies Inc | DYNAMIC LANGUAGE SCRIPTURE |
US7567586B2 (en) | 2005-10-31 | 2009-07-28 | Microsoft Corporation | Above-transport layer message partial compression |
CN100401724C (zh) * | 2005-12-15 | 2008-07-09 | 华为技术有限公司 | 发送即时消息的方法和设备 |
US7786979B2 (en) | 2006-01-13 | 2010-08-31 | Research In Motion Limited | Handheld electronic device and method for disambiguation of text input and providing spelling substitution |
US8229733B2 (en) * | 2006-02-09 | 2012-07-24 | John Harney | Method and apparatus for linguistic independent parsing in a natural language systems |
US7966173B2 (en) * | 2006-03-22 | 2011-06-21 | Nuance Communications, Inc. | System and method for diacritization of text |
WO2007127695A2 (en) * | 2006-04-25 | 2007-11-08 | Elmo Weber Frank | Prefernce based automatic media summarization |
US8073681B2 (en) | 2006-10-16 | 2011-12-06 | Voicebox Technologies, Inc. | System and method for a cooperative conversational voice user interface |
US8204738B2 (en) * | 2006-11-03 | 2012-06-19 | Nuance Communications, Inc. | Removing bias from features containing overlapping embedded grammars in a natural language understanding system |
US20080133365A1 (en) * | 2006-11-21 | 2008-06-05 | Benjamin Sprecher | Targeted Marketing System |
US7818176B2 (en) | 2007-02-06 | 2010-10-19 | Voicebox Technologies, Inc. | System and method for selecting and presenting advertisements based on natural language processing of voice-based input |
US7970616B2 (en) * | 2007-07-23 | 2011-06-28 | Dapkunas Ronald M | Efficient review of data |
US8140335B2 (en) | 2007-12-11 | 2012-03-20 | Voicebox Technologies, Inc. | System and method for providing a natural language voice user interface in an integrated voice navigation services environment |
US8219385B2 (en) * | 2008-04-08 | 2012-07-10 | Incentive Targeting, Inc. | Computer-implemented method and system for conducting a search of electronically stored information |
US8666729B1 (en) | 2010-02-10 | 2014-03-04 | West Corporation | Processing natural language grammar |
US8589161B2 (en) | 2008-05-27 | 2013-11-19 | Voicebox Technologies, Inc. | System and method for an integrated, multi-modal, multi-device natural language voice services environment |
US9305548B2 (en) | 2008-05-27 | 2016-04-05 | Voicebox Technologies Corporation | System and method for an integrated, multi-modal, multi-device natural language voice services environment |
US20100087169A1 (en) * | 2008-10-02 | 2010-04-08 | Microsoft Corporation | Threading together messages with multiple common participants |
US8086275B2 (en) | 2008-10-23 | 2011-12-27 | Microsoft Corporation | Alternative inputs of a mobile communications device |
US8411046B2 (en) | 2008-10-23 | 2013-04-02 | Microsoft Corporation | Column organization of content |
US8385952B2 (en) | 2008-10-23 | 2013-02-26 | Microsoft Corporation | Mobile communications device user interface |
US8818803B2 (en) * | 2008-10-27 | 2014-08-26 | Frank Elmo Weber | Character-based automated text summarization |
JP5412096B2 (ja) * | 2008-12-03 | 2014-02-12 | 株式会社やまびこ | 携帯式チェンソーの動力ユニット構造 |
US20100145676A1 (en) * | 2008-12-09 | 2010-06-10 | Qualcomm Incorporated | Method and apparatus for adjusting the length of text strings to fit display sizes |
US8326637B2 (en) | 2009-02-20 | 2012-12-04 | Voicebox Technologies, Inc. | System and method for processing multi-modal device interactions in a natural language voice services environment |
US8355698B2 (en) | 2009-03-30 | 2013-01-15 | Microsoft Corporation | Unlock screen |
US8175653B2 (en) | 2009-03-30 | 2012-05-08 | Microsoft Corporation | Chromeless user interface |
US8238876B2 (en) | 2009-03-30 | 2012-08-07 | Microsoft Corporation | Notifications |
US8836648B2 (en) | 2009-05-27 | 2014-09-16 | Microsoft Corporation | Touch pull-in gesture |
US8924893B2 (en) * | 2009-10-14 | 2014-12-30 | At&T Mobility Ii Llc | Locking and unlocking of an electronic device using a sloped lock track |
US9424444B2 (en) | 2009-10-14 | 2016-08-23 | At&T Mobility Ii Llc | Systems, apparatus, methods and computer-readable storage media for facilitating integrated messaging, contacts and social media for a selected entity |
US20130262486A1 (en) * | 2009-11-07 | 2013-10-03 | Robert B. O'Dell | Encoding and Decoding of Small Amounts of Text |
US9171541B2 (en) | 2009-11-10 | 2015-10-27 | Voicebox Technologies Corporation | System and method for hybrid processing in a natural language voice services environment |
US9502025B2 (en) | 2009-11-10 | 2016-11-22 | Voicebox Technologies Corporation | System and method for providing a natural language content dedication service |
US20120010870A1 (en) * | 2010-07-09 | 2012-01-12 | Vladimir Selegey | Electronic dictionary and dictionary writing system |
US20120159395A1 (en) | 2010-12-20 | 2012-06-21 | Microsoft Corporation | Application-launching interface for multiple modes |
US20120159383A1 (en) | 2010-12-20 | 2012-06-21 | Microsoft Corporation | Customization of an immersive environment |
US8612874B2 (en) | 2010-12-23 | 2013-12-17 | Microsoft Corporation | Presenting an application change through a tile |
US8689123B2 (en) | 2010-12-23 | 2014-04-01 | Microsoft Corporation | Application reporting in an application-selectable user interface |
US9423951B2 (en) | 2010-12-31 | 2016-08-23 | Microsoft Technology Licensing, Llc | Content-based snap point |
US20120197630A1 (en) * | 2011-01-28 | 2012-08-02 | Lyons Kenton M | Methods and systems to summarize a source text as a function of contextual information |
US9383917B2 (en) | 2011-03-28 | 2016-07-05 | Microsoft Technology Licensing, Llc | Predictive tiling |
US9158445B2 (en) | 2011-05-27 | 2015-10-13 | Microsoft Technology Licensing, Llc | Managing an immersive interface in a multi-application immersive environment |
US20120304132A1 (en) | 2011-05-27 | 2012-11-29 | Chaitanya Dev Sareen | Switching back to a previously-interacted-with application |
US9104440B2 (en) | 2011-05-27 | 2015-08-11 | Microsoft Technology Licensing, Llc | Multi-application environment |
US9104307B2 (en) | 2011-05-27 | 2015-08-11 | Microsoft Technology Licensing, Llc | Multi-application environment |
US8893033B2 (en) | 2011-05-27 | 2014-11-18 | Microsoft Corporation | Application notifications |
US9658766B2 (en) | 2011-05-27 | 2017-05-23 | Microsoft Technology Licensing, Llc | Edge gesture |
US8687023B2 (en) | 2011-08-02 | 2014-04-01 | Microsoft Corporation | Cross-slide gesture to select and rearrange |
US20130057587A1 (en) | 2011-09-01 | 2013-03-07 | Microsoft Corporation | Arranging tiles |
US10353566B2 (en) | 2011-09-09 | 2019-07-16 | Microsoft Technology Licensing, Llc | Semantic zoom animations |
US8922575B2 (en) | 2011-09-09 | 2014-12-30 | Microsoft Corporation | Tile cache |
US9557909B2 (en) | 2011-09-09 | 2017-01-31 | Microsoft Technology Licensing, Llc | Semantic zoom linguistic helpers |
US9244802B2 (en) | 2011-09-10 | 2016-01-26 | Microsoft Technology Licensing, Llc | Resource user interface |
US8933952B2 (en) | 2011-09-10 | 2015-01-13 | Microsoft Corporation | Pre-rendering new content for an application-selectable user interface |
US9146670B2 (en) | 2011-09-10 | 2015-09-29 | Microsoft Technology Licensing, Llc | Progressively indicating new content in an application-selectable user interface |
US8965752B2 (en) | 2011-10-06 | 2015-02-24 | International Business Machines Corporation | Filtering prohibited language formed inadvertently via a user-interface |
US9223472B2 (en) | 2011-12-22 | 2015-12-29 | Microsoft Technology Licensing, Llc | Closing applications |
US9128605B2 (en) | 2012-02-16 | 2015-09-08 | Microsoft Technology Licensing, Llc | Thumbnail-image selection of applications |
US9280520B2 (en) * | 2012-08-02 | 2016-03-08 | American Express Travel Related Services Company, Inc. | Systems and methods for semantic information retrieval |
GB2509889A (en) * | 2012-10-15 | 2014-07-23 | Kieran Hayes | Compressing text for software input |
US10303746B1 (en) | 2012-12-21 | 2019-05-28 | CRLK, Inc. | Method for coding a vanity message for display |
US12079563B1 (en) | 2012-12-21 | 2024-09-03 | Crkl, Inc. | Method for coding a vanity message for display |
US11010535B1 (en) | 2012-12-21 | 2021-05-18 | Crkl, Inc. | Method for coding a vanity message for display |
US9450952B2 (en) | 2013-05-29 | 2016-09-20 | Microsoft Technology Licensing, Llc | Live tiles without application-code execution |
CN105359094A (zh) | 2014-04-04 | 2016-02-24 | 微软技术许可有限责任公司 | 可扩展应用表示 |
WO2015154273A1 (en) | 2014-04-10 | 2015-10-15 | Microsoft Technology Licensing, Llc | Collapsible shell cover for computing device |
KR20160143784A (ko) | 2014-04-10 | 2016-12-14 | 마이크로소프트 테크놀로지 라이센싱, 엘엘씨 | 컴퓨팅 디바이스용 슬라이더 커버 |
US10678412B2 (en) | 2014-07-31 | 2020-06-09 | Microsoft Technology Licensing, Llc | Dynamic joint dividers for application windows |
US10592080B2 (en) | 2014-07-31 | 2020-03-17 | Microsoft Technology Licensing, Llc | Assisted presentation of application windows |
US10254942B2 (en) | 2014-07-31 | 2019-04-09 | Microsoft Technology Licensing, Llc | Adaptive sizing and positioning of application windows |
US10642365B2 (en) | 2014-09-09 | 2020-05-05 | Microsoft Technology Licensing, Llc | Parametric inertia and APIs |
US9626703B2 (en) | 2014-09-16 | 2017-04-18 | Voicebox Technologies Corporation | Voice commerce |
US9898459B2 (en) | 2014-09-16 | 2018-02-20 | Voicebox Technologies Corporation | Integration of domain information into state transitions of a finite state transducer for natural language processing |
US9747896B2 (en) | 2014-10-15 | 2017-08-29 | Voicebox Technologies Corporation | System and method for providing follow-up responses to prior natural language inputs of a user |
CN106662891B (zh) | 2014-10-30 | 2019-10-11 | 微软技术许可有限责任公司 | 多配置输入设备 |
JP6507579B2 (ja) * | 2014-11-10 | 2019-05-08 | ヤマハ株式会社 | 音声合成方法 |
US10431214B2 (en) | 2014-11-26 | 2019-10-01 | Voicebox Technologies Corporation | System and method of determining a domain and/or an action related to a natural language input |
US10614799B2 (en) | 2014-11-26 | 2020-04-07 | Voicebox Technologies Corporation | System and method of providing intent predictions for an utterance prior to a system detection of an end of the utterance |
JP6295977B2 (ja) * | 2015-02-17 | 2018-03-20 | 京セラドキュメントソリューションズ株式会社 | 表示装置、情報処理装置、メッセージ表示方法 |
US9767193B2 (en) * | 2015-03-27 | 2017-09-19 | Fujitsu Limited | Generation apparatus and method |
US10484493B2 (en) | 2015-11-17 | 2019-11-19 | At&T Intellectual Property I, L.P. | Method and apparatus for communicating messages |
US9639528B1 (en) | 2016-01-29 | 2017-05-02 | Sap Se | Translation-based visual design |
US10275450B2 (en) * | 2016-02-15 | 2019-04-30 | Tata Consultancy Services Limited | Method and system for managing data quality for Spanish names and addresses in a database |
US10581456B2 (en) * | 2016-06-22 | 2020-03-03 | Fujitsu Limited | Data compression device and data decompression device |
US10261990B2 (en) * | 2016-06-28 | 2019-04-16 | International Business Machines Corporation | Hybrid approach for short form detection and expansion to long forms |
US10083170B2 (en) | 2016-06-28 | 2018-09-25 | International Business Machines Corporation | Hybrid approach for short form detection and expansion to long forms |
US10140260B2 (en) * | 2016-07-15 | 2018-11-27 | Sap Se | Intelligent text reduction for graphical interface elements |
US10503808B2 (en) | 2016-07-15 | 2019-12-10 | Sap Se | Time user interface with intelligent text reduction |
WO2018023106A1 (en) | 2016-07-29 | 2018-02-01 | Erik SWART | System and method of disambiguating natural language processing requests |
US10210147B2 (en) * | 2016-09-07 | 2019-02-19 | International Business Machines Corporation | System and method to minimally reduce characters in character limiting scenarios |
JP7095684B2 (ja) * | 2017-03-30 | 2022-07-05 | ソニーグループ株式会社 | 情報処理装置、情報処理方法、プログラム |
CN109388794A (zh) * | 2017-08-03 | 2019-02-26 | 阿里巴巴集团控股有限公司 | 一种时间解析方法、装置、设备和计算机存储介质 |
US20190065446A1 (en) * | 2017-08-22 | 2019-02-28 | Microsoft Technology Licensing, Llc | Reducing text length while preserving meaning |
US10839135B1 (en) * | 2018-01-03 | 2020-11-17 | Amazon Technologies, Inc. | Detection of access to text-based transmissions |
Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH0490047A (ja) * | 1990-08-01 | 1992-03-24 | Canon Inc | 文生成方式 |
JPH1063666A (ja) * | 1996-08-27 | 1998-03-06 | Toshiba Corp | 短縮文字列置き換え装置及び短縮文字列置き換え方法、及び短縮文字列置き換え方法のプログラムを格納した記憶媒体 |
JPH10240206A (ja) * | 1997-02-28 | 1998-09-11 | Sony Corp | 表示装置 |
JPH11345233A (ja) * | 1998-04-02 | 1999-12-14 | Sony Corp | 文書処理方法および装置ならびに記録媒体 |
Family Cites Families (13)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4333152A (en) * | 1979-02-05 | 1982-06-01 | Best Robert M | TV Movies that talk back |
DE69432575T2 (de) * | 1993-01-28 | 2004-03-18 | Kabushiki Kaisha Toshiba, Kawasaki | Dokumentenerkennungssystem mit verbesserter Wirksamkeit der Dokumentenerkennung |
US5410475A (en) * | 1993-04-19 | 1995-04-25 | Mead Data Central, Inc. | Short case name generating method and apparatus |
JPH08212228A (ja) * | 1995-02-02 | 1996-08-20 | Sanyo Electric Co Ltd | 要約文作成装置および要約音声作成装置 |
US5708822A (en) * | 1995-05-31 | 1998-01-13 | Oracle Corporation | Methods and apparatus for thematic parsing of discourse |
US6026410A (en) * | 1997-02-10 | 2000-02-15 | Actioneer, Inc. | Information organization and collaboration tool for processing notes and action requests in computer systems |
US6112168A (en) * | 1997-10-20 | 2000-08-29 | Microsoft Corporation | Automatically recognizing the discourse structure of a body of text |
GB9806085D0 (en) | 1998-03-23 | 1998-05-20 | Xerox Corp | Text summarisation using light syntactic parsing |
JP3879321B2 (ja) * | 1998-12-17 | 2007-02-14 | 富士ゼロックス株式会社 | 文書要約装置、文書要約方法及び文書要約プログラムを記録した記録媒体 |
US6279018B1 (en) * | 1998-12-21 | 2001-08-21 | Kudrollis Software Inventions Pvt. Ltd. | Abbreviating and compacting text to cope with display space constraint in computer software |
US6535886B1 (en) * | 1999-10-18 | 2003-03-18 | Sony Corporation | Method to compress linguistic structures |
US6766287B1 (en) * | 1999-12-15 | 2004-07-20 | Xerox Corporation | System for genre-specific summarization of documents |
CN1465018A (zh) * | 2000-05-11 | 2003-12-31 | 南加利福尼亚大学 | 机器翻译技术 |
-
2001
- 2001-01-26 US US09/770,779 patent/US7069207B2/en not_active Expired - Fee Related
-
2002
- 2002-01-22 KR KR1020020003560A patent/KR100890691B1/ko not_active IP Right Cessation
- 2002-01-25 EP EP02001811A patent/EP1227408A3/en not_active Ceased
- 2002-01-28 JP JP2002019244A patent/JP2002334071A/ja active Pending
-
2006
- 2006-04-04 US US11/397,503 patent/US7398203B2/en not_active Expired - Fee Related
-
2007
- 2007-07-23 JP JP2007191482A patent/JP2007265458A/ja active Pending
Patent Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH0490047A (ja) * | 1990-08-01 | 1992-03-24 | Canon Inc | 文生成方式 |
JPH1063666A (ja) * | 1996-08-27 | 1998-03-06 | Toshiba Corp | 短縮文字列置き換え装置及び短縮文字列置き換え方法、及び短縮文字列置き換え方法のプログラムを格納した記憶媒体 |
JPH10240206A (ja) * | 1997-02-28 | 1998-09-11 | Sony Corp | 表示装置 |
JPH11345233A (ja) * | 1998-04-02 | 1999-12-14 | Sony Corp | 文書処理方法および装置ならびに記録媒体 |
Also Published As
Publication number | Publication date |
---|---|
US7069207B2 (en) | 2006-06-27 |
US7398203B2 (en) | 2008-07-08 |
JP2002334071A (ja) | 2002-11-22 |
KR100890691B1 (ko) | 2009-03-26 |
KR20020063118A (ko) | 2002-08-01 |
US20060184351A1 (en) | 2006-08-17 |
US20020138248A1 (en) | 2002-09-26 |
EP1227408A3 (en) | 2005-07-20 |
EP1227408A2 (en) | 2002-07-31 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
JP2007265458A (ja) | 複数の圧縮オプションを生成する方法およびコンピュータ | |
JP5362353B2 (ja) | 文書中のコロケーション誤りを処理すること | |
US6401061B1 (en) | Combinatorial computational technique for transformation phrase text-phrase meaning | |
US6694055B2 (en) | Proper name identification in chinese | |
EP1367501B1 (en) | Lexicon with sectionalized data and method of using the same | |
US7092871B2 (en) | Tokenizer for a natural language processing system | |
JP5113750B2 (ja) | 定義の抽出 | |
US20020123877A1 (en) | Method and apparatus for performing machine translation using a unified language model and translation model | |
EP1217533A2 (en) | Method and computer system for part-of-speech tagging of incomplete sentences | |
US20060095250A1 (en) | Parser for natural language processing | |
JPH0689304A (ja) | テキスト処理システムにより使用されるテキストを準備する方法及び装置 | |
US7328404B2 (en) | Method for predicting the readings of japanese ideographs | |
US6125377A (en) | Method and apparatus for proofreading a document using a computer system which detects inconsistencies in style | |
TW548600B (en) | Method and system for identifying attributes of new words in non-segmented text | |
US7620541B2 (en) | Critiquing clitic pronoun ordering in french | |
US7389220B2 (en) | Correcting incomplete negation errors in French language text | |
KR101052004B1 (ko) | 번역서비스 제공방법 및 그 시스템 | |
Sankaravelayuthan et al. | English to tamil machine translation system using parallel corpus | |
Vasuki et al. | English to Tamil machine translation system using parallel corpus | |
Elwert et al. | Toiling with the Pāli Canon | |
JP2009009583A (ja) | 構文パースを用いてセグメント化されていないテキストをセグメント化する方法 | |
JP4023384B2 (ja) | 自然言語翻訳方法及び装置及び自然言語翻訳プログラム | |
Alfter et al. | Toiling with the Pāli Canon | |
Alhonen | Automatic Morphological Parsing of Chinese | |
JPH0744566A (ja) | 抄録作成装置 |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20070822 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20100319 |
|
A521 | Written amendment |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20100621 |
|
A02 | Decision of refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A02 Effective date: 20100820 |
|
A521 | Written amendment |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20101220 |
|
RD13 | Notification of appointment of power of sub attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7433 Effective date: 20101221 |
|
A521 | Written amendment |
Free format text: JAPANESE INTERMEDIATE CODE: A821 Effective date: 20101221 |
|
A911 | Transfer to examiner for re-examination before appeal (zenchi) |
Free format text: JAPANESE INTERMEDIATE CODE: A911 Effective date: 20110224 |
|
A521 | Written amendment |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20130318 |