US11372852B2 - Named entity extraction in automated chat assistant - Google Patents
Named entity extraction in automated chat assistant Download PDFInfo
- Publication number
- US11372852B2 US11372852B2 US16/544,596 US201916544596A US11372852B2 US 11372852 B2 US11372852 B2 US 11372852B2 US 201916544596 A US201916544596 A US 201916544596A US 11372852 B2 US11372852 B2 US 11372852B2
- Authority
- US
- United States
- Prior art keywords
- query
- command
- tokens
- named entities
- computing device
- 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.)
- Active, expires
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/24—Querying
- G06F16/242—Query formulation
- G06F16/243—Natural language query formulation
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/24—Querying
- G06F16/245—Query processing
- G06F16/2457—Query processing with adaptation to user needs
- G06F16/24575—Query processing with adaptation to user needs using context
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/30—Information retrieval; Database structures therefor; File system structures therefor of unstructured textual data
- G06F16/33—Querying
- G06F16/332—Query formulation
- G06F16/3329—Natural language query formulation
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; 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 OR CALCULATING; 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
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/30—Semantic analysis
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/30—Semantic analysis
- G06F40/35—Discourse or dialogue representation
-
- G—PHYSICS
- G10—MUSICAL INSTRUMENTS; ACOUSTICS
- G10L—SPEECH ANALYSIS TECHNIQUES OR SPEECH SYNTHESIS; SPEECH RECOGNITION; SPEECH OR VOICE PROCESSING TECHNIQUES; SPEECH OR AUDIO CODING OR DECODING
- G10L15/00—Speech recognition
- G10L15/08—Speech classification or search
- G10L15/18—Speech classification or search using natural language modelling
- G10L15/1815—Semantic context, e.g. disambiguation of the recognition hypotheses based on word meaning
-
- G—PHYSICS
- G10—MUSICAL INSTRUMENTS; ACOUSTICS
- G10L—SPEECH ANALYSIS TECHNIQUES OR SPEECH SYNTHESIS; SPEECH RECOGNITION; SPEECH OR VOICE PROCESSING TECHNIQUES; SPEECH OR AUDIO CODING OR DECODING
- G10L15/00—Speech recognition
- G10L15/22—Procedures used during a speech recognition process, e.g. man-machine dialogue
-
- G—PHYSICS
- G10—MUSICAL INSTRUMENTS; ACOUSTICS
- G10L—SPEECH ANALYSIS TECHNIQUES OR SPEECH SYNTHESIS; SPEECH RECOGNITION; SPEECH OR VOICE PROCESSING TECHNIQUES; SPEECH OR AUDIO CODING OR DECODING
- G10L15/00—Speech recognition
- G10L15/28—Constructional details of speech recognition systems
- G10L15/30—Distributed recognition, e.g. in client-server systems, for mobile phones or network applications
-
- G—PHYSICS
- G10—MUSICAL INSTRUMENTS; ACOUSTICS
- G10L—SPEECH ANALYSIS TECHNIQUES OR SPEECH SYNTHESIS; SPEECH RECOGNITION; SPEECH OR VOICE PROCESSING TECHNIQUES; SPEECH OR AUDIO CODING OR DECODING
- G10L15/00—Speech recognition
- G10L15/22—Procedures used during a speech recognition process, e.g. man-machine dialogue
- G10L2015/223—Execution procedure of a spoken command
Definitions
- This application relates to methods for performing computational linguistics, and more specifically, to methods and systems for parsing a natural language input to simplify processing by a computing system.
- Many automated assistants in home or mobile devices are configured to receive a user's question, such as “What will tomorrow's weather be?” or “What is the capital of Brunei?”, parse the question, and make a best attempt to answer it.
- Many websites also offer a customer service chat window to aid users in navigating the website or being connected to the right customer service representative to help them.
- the system comprises a server comprising a processor and non-transitory memory storing instructions that cause the processor to: retrieve a stored data structure comprising a plurality of named entities; receive a natural language query or command from a human user; extract one or more named entities from the query or command, wherein the extraction comprises iteratively: dividing the query or command into overlapping sets of tokens, determining whether a set of tokens corresponds to a named entity from the plurality of named entities, extracting any corresponding set of tokens from the query, and if no corresponding sets remain, decreasing the set size and repeating; and based at least in part on the query or command and on the extracted one or more named entities, act to fulfill a user intent expressed by the query or command.
- a method for acting in response to natural language queries or commands comprising: retrieving, by a computing device, a stored data structure comprising a plurality of named entities; receiving, by the computing device, a natural language query or command from a human user; extracting, by the computing device, one or more named entities from the query or command, wherein the extraction comprises iteratively: dividing the query or command into overlapping sets of tokens of a given set size, determining whether a set of tokens corresponds to a named entity from the plurality of named entities, extracting any corresponding set of tokens from the query, and if no corresponding sets remain, decreasing the set size and repeating; and based at least in part on the query or command and on the extracted one or more named entities, acting, by the computing device, to fulfill a user intent expressed by the query or command.
- FIG. 1 depicts a computing system for transmitting and receiving natural language queries from a human user
- FIG. 2 depicts a chatbot interface for a human user to enter a query and see the results of a query
- FIG. 3 depicts a method for generally supplying information via a named entity—extracting bot
- FIG. 4 depicts a method for the specific step of entity extraction within the method of FIG. 3 ;
- FIGS. 5A and 5B depict visually the iterative token grouping process of FIG. 4 ;
- FIG. 6 depicts a general computing device for performing a number of features described above.
- FIG. 1 depicts a computing system for transmitting and receiving natural language queries from a human user.
- An end user's client computing device 100 may connect via a network 105 to a server computing device 110 to enable a user of client computing device 100 to transmit queries that are answered by computing device 110 .
- the server computing device 110 may be, in a preferred embodiment, a web server that receives HTTP (Hypertext transfer protocol) requests and responds with data for display via a web browser on client computing device 100 , but in other embodiments may be any kind of server computing device that is listening for queries or commands from a client and transmitting responses to what has been received.
- HTTP Hypertext transfer protocol
- client computing device 100 and server computing device 110 may communicate via other means than a webpage generated by server 110 and displayed in a browser of client 100 .
- Client 100 may run a separate designated application for communication with server 110 , or may use an already existing communications protocol, such as an online instant messaging service, text message service of a mobile device, Skype, email, or any number of other protocols for the communication of data from a source to a destination.
- Network 105 may be, in some embodiments, the Internet as a whole, while in other embodiments, it may be a more localized or specific network, such as a LAN (local area network), WAN (wide area network), ethernet, VPN (virtual private network), or other subset of computers in connectivity with one another.
- network 105 may be unnecessary, and the server software that would have been run on server 110 may run as an application on the client computing device 100 . Connections may avoid the use of a network through direct wired or wireless transmission to send data to and from server 110 . As depicted in FIG. 1 , arrows show data flow to and from the network 105 .
- FIG. 2 depicts a chatbot interface for a human user to enter a query and see the results of a query.
- a user may open a browser window 200 and navigate to a particular website URL (uniform resource locator).
- page 210 may comprise a window or other element 220 for displaying text, including past communications 230 , and a text box 240 for entry of new queries.
- a script running in the background of page 210 may transmit the query to the server 110 and receive a response from server 110 generated according to a method depicted in FIG. 3 , and described below.
- a user could use voice input into a microphone, which is then transcribed to the webpage before submitting.
- the interface could be provided by means of a mobile app instead of a web browser.
- FIG. 3 depicts a method for generally supplying information via a named entity-extracting bot.
- software running on server 110 may retrieve, receive, or otherwise generate or store a list of named entities (Step 300 ).
- these named entities may include a number of proper nouns, such as the names of persons, companies, titles of.
- the list may also include a number of metrics, properties, or characteristics that describe the other named entities.
- the list of named entities might include “Babe Ruth,” “Hank Aaron,” “Joe DiMaggio,” “runs batted in,” and “batting average”; an application for querying cinematic data might include “George Lucas,” “The Empire Strikes Back,” “total box office receipts,” and “release date.”
- the software receives a natural language query or command from a human user of the client 100 (Step 305 ).
- the query may undergo some form of normalization (Step 310 ) through preprocessing by a normalization module.
- the query may be tokenized (i.e., divided up from a single string into an array of substrings based on boundaries such as spaces, hyphens, periods, etc., likely resulting in a set of single words, but potentially being divided based on another criterion), the tokens stemmed (i.e., having certain substring prefixes or suffixes removed, such as replacing “running” with “run” or “dollars” with “dollar”), the tokens lemmatized (i.e., replacing all forms of a word with a base form of the word, such as replacing “are,” “is,” “was,” and “were” with “be”), and/or other text processing, such as converting all characters to lowercase, removing characters that are not-alphanumeric, or removing characters that are not ASCII, etc.
- the query is then processed by an intent extraction module to determine a user intent (Step 315 ).
- a maximum entropy model is used to determine a most likely interpretation of the query's general form, such as asking for the current value of a metric of a named entity, or issuing a command, or requesting meta-information on how the system works rather than information the system is meant to provide, etc.
- the query will be processed and acted upon; if not, the system may skip processing the query and prepare a response to the user indicating that the query was unintelligible and asking for clarification or suggesting possible query or command formats that were meant.
- the normalized query then undergoes named entity extraction (Step 320 ) by an entity extraction module, which is described more fully below and depicted in FIGS. 4, 5A, and 5B , to group tokens into single named entities and associate them with the already known named entities of the list.
- entity extraction module which is described more fully below and depicted in FIGS. 4, 5A, and 5B , to group tokens into single named entities and associate them with the already known named entities of the list.
- the query may then be processed by using any identified intent, named entity, and metrics of the query to search data stores of server 110 , or remote data stores accessible to server 110 (Step 325 ). For example, if the query contains the entities “ACME Corp.” and “stock price,” there may be an accessible database of companies having a column of stock prices, which server 110 may query to find the row with ACME Corp. and return the column's value for that row. If the query is actually a command (e.g., “Please set automated thermostat to 70 degrees” or “Please sell 100 shares of ACME Corporation stock”), server 110 may act upon the command using an API (application programming interface) or communications interface of another device or software application.
- API application programming interface
- server 110 may transmit a response to the query (such as the value requested, or an error message) or a confirmation of the command's receipt to client 100 and the human user (Step 330 ).
- Server 100 may be configured to check for updates (Step 335 ) to the data stores, including the named entity list, at regular intervals. For example, the cached entity list may be updated every 1 minute, or 5 minutes, or after other periods of time. In another embodiment, server 100 may await a push notification from a data store indicating that the data store has changed before requesting an updated copy of the entity list or other cached data.
- server 100 may then continue to listen for a new query (returning to Step 305 ).
- the server 100 may remember information about the conversation state to reduce ambiguity in subsequent queries. For example, if the first query is “What is ACME corporation's stock price?”, and the second is “What is its price to earnings ratio?”, the system may, during the second query's normalization, replace the pronoun “its” with “ACME corporation's” based on the previous query.
- FIG. 4 depicts a method for the specific step of entity extraction within the method of FIG. 3 .
- a maximum token grouping length is set (Step 400 ). In some embodiments, this may be set to a predetermined number independent of the query or the problem domain, such as five. In other embodiments, it may be set to the length of the longest named entity in the stored list of named entities, or variable based on a characteristic of the query.
- tokens are grouped (Step 405 ) into overlapping sets of the current length. For example, if the current length is five, tokens #1-5 are associated as a set, #2-6 are associated as a set, #3-7 are associated as a set, and so on. (See FIGS. 5A and 5B , described further below, for a depiction of this process).
- Each set of tokens is then checked for presence in the list of named entities (Step 410 ). If one is present, it is extracted (Step 415 ) from the query string and stored separately, while the algorithm continues on the remainder of the string. If the extracted entity is not at the beginning or end of the query, the remainder substrings before and after it may be concatenated, but in a preferred embodiment, the algorithm should continue recursively and independently on each remainder substring, as it is unlikely for a named entity to be separated by a longer named entity within it in the original query.
- Step 420 If the query is not empty (Step 420 ) after checking every set of tokens at the current length, the current length is decremented (Step 425 ).
- Step 430 If the current length is greater than one (Step 430 ), the process repeats with iteratively shorter sets of tokens being examined in search of named entities. If the current length is equal to one, every remaining token may be checked (Step 435 ) to determine whether it is a named entity, a token that may be helpful in clarifying the query, or only a grammatical filler that can be filtered out without affecting the query fulfillment.
- the named entities can be returned (Step 440 ) for use within the method described above and in FIG. 3 .
- FIGS. 5A and 5B depict visually the iterative token grouping process of FIG. 4 .
- Initial query 500 (for example, “What was the stock price of ACME Industries Corporation Monday?”) is divided into 10 tokens based on the presence of spaces in the input.
- the normalized query 505 may be, for example, “what be stock price acme industr corp monday”, having removed punctuation, uppercase, stemming and lemmatizing some words, and having removed an article.
- the normalized query is divided into five overlapping sets 510 of five tokens each, which are compared to the stored list of named entities.
- the normalized query 505 is redivided into six overlapping sets 515 of four tokens each and again compared to the list.
- the normalized query 505 is redivided into seven overlapping sets 520 of three tokens each. This time, however, a match is found for “acme industr corp” within the named entities list. These tokens are removed, and the process continues with division of the remainder into sets 525 of two tokens each.
- each remaining token 530 is examined to see whether it is a standard English word that is being used only to form the question and set up the relations between entities (such as “what,” “be,” and “of”) or is actually a relevant entity to the query (“monday”).
- FIG. 6 is a high-level block diagram of a representative computing device that may be utilized to implement various features and processes described herein, for example, the functionality of client computing device 100 or server computing device 110 .
- the computing device may be described in the general context of computer system-executable instructions, such as program modules, being executed by a computer system.
- program modules may include routines, programs, objects, components, logic, data structures, and so on that perform particular tasks or implement particular abstract data types.
- the computing device is illustrated in the form of a special purpose computer system.
- the components of the computing device may include (but are not limited to) one or more processors or processing units 900 , a system memory 910 , and a bus 915 that couples various system components including memory 910 to processor 900 .
- Bus 915 represents one or more of any of several types of bus structures, including a memory bus or memory controller, a peripheral bus, an accelerated graphics port, and a processor or local bus using any of a variety of bus architectures.
- bus architectures include Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, Enhanced ISA (EISA) bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnect (PCI) bus.
- Processing unit(s) 900 may execute computer programs stored in memory 910 . Any suitable programming language can be used to implement the routines of particular embodiments including C, C++, Java, assembly language, etc. Different programming techniques can be employed such as procedural or object oriented. The routines can execute on a single computing device or multiple computing devices. Further, multiple processors 900 may be used.
- the computing device typically includes a variety of computer system readable media. Such media may be any available media that is accessible by the computing device, and it includes both volatile and non-volatile media, removable and non-removable media.
- System memory 910 can include computer system readable media in the form of volatile memory, such as random access memory (RAM) 920 and/or cache memory 930 .
- the computing device may further include other removable/non-removable, volatile/non-volatile computer system storage media.
- storage system 940 can be provided for reading from and writing to a non-removable, non-volatile magnetic media (not shown and typically referred to as a “hard drive”).
- a magnetic disk drive for reading from and writing to a removable, non-volatile magnetic disk (e.g., a “floppy disk”)
- an optical disk drive for reading from or writing to a removable, non-volatile optical disk such as a CD-ROM, DVD-ROM or other optical media
- each can be connected to bus 915 by one or more data media interfaces.
- memory 910 may include at least one program product having a set (e.g., at least one) of program modules that are configured to carry out the functions of embodiments described in this disclosure.
- Program/utility 950 having a set (at least one) of program modules 955 , may be stored in memory 910 by way of example, and not limitation, as well as an operating system, one or more application software, other program modules, and program data. Each of the operating system, one or more application programs, other program modules, and program data or some combination thereof, may include an implementation of a networking environment.
- the computing device may also communicate with one or more external devices 970 such as a keyboard, a pointing device, a display, etc.; one or more devices that enable a user to interact with the computing device; and/or any devices (e.g., network card, modem, etc.) that enable the computing device to communicate with one or more other computing devices. Such communication can occur via Input/Output (I/O) interface(s) 960 .
- I/O Input/Output
- the computing device can communicate with one or more networks, such as a local area network (LAN), a general wide area network (WAN) and/or a public network (e.g., the Internet) via network adaptor 980 .
- network adaptor 980 communicates with other components of the computing device via bus 915 .
- bus 915 It should be understood that although not shown, other hardware and/or software components could be used in conjunction with the computing device. Examples include (but are not limited to) microcode, device drivers, redundant processing units, external disk drive arrays, RAID systems, tape drives, and data archival storage systems, etc.
- the present invention may be a system, a method, and/or a computer program product at any possible technical detail level of integration
- the computer program product may include a computer readable storage medium (or media) having computer readable program instructions thereon for causing a processor to carry out aspects of the present invention
- the computer readable storage medium can be a tangible device that can retain and store instructions for use by an instruction execution device.
- the computer readable storage medium may be, for example, but is not limited to, an electronic storage device, a magnetic storage device, an optical storage device, an electromagnetic storage device, a semiconductor storage device, or any suitable combination of the foregoing.
- a non-exhaustive list of more specific examples of the computer readable storage medium includes the following: a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), a static random access memory (SRAM), a portable compact disc read-only memory (CD-ROM), a digital versatile disk (DVD), a memory stick, a floppy disk, a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon, and any suitable combination of the foregoing.
- RAM random access memory
- ROM read-only memory
- EPROM or Flash memory erasable programmable read-only memory
- SRAM static random access memory
- CD-ROM compact disc read-only memory
- DVD digital versatile disk
- memory stick a floppy disk
- a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon
- a computer readable storage medium is not to be construed as being transitory signals per se, such as radio waves or other freely propagating electromagnetic waves, electromagnetic waves propagating through a waveguide or other transmission media (e.g., light pulses passing through a fiber-optic cable), or electrical signals transmitted through a wire.
- Computer readable program instructions described herein can be downloaded to respective computing/processing devices from a computer readable storage medium or to an external computer or external storage device via a network, for example, the Internet, a local area network, a wide area network and/or a wireless network.
- the network may comprise copper transmission cables, optical transmission fibers, wireless transmission, routers, firewalls, switches, gateway computers and/or edge servers.
- a network adapter card or network interface in each computing/processing device receives computer readable program instructions from the network and forwards the computer readable program instructions for storage in a computer readable storage medium within the respective computing/processing device.
- Computer readable program instructions for carrying out operations of the present invention may be assembler instructions, instruction-set-architecture (ISA) instructions, machine instructions, machine dependent instructions, microcode, firmware instructions, state-setting data, configuration data for integrated circuitry, or either source code or object code written in any combination of one or more programming languages, including an object oriented programming language such as Smalltalk, C++, or the like, and procedural programming languages, such as the “C” programming language or similar programming languages.
- the computer readable program instructions may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server.
- the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
- electronic circuitry including, for example, programmable logic circuitry, field-programmable gate arrays (FPGA), or programmable logic arrays (PLA) may execute the computer readable program instructions by utilizing state information of the computer readable program instructions to personalize the electronic circuitry, in order to perform aspects of the present invention.
- These computer readable program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
- These computer readable program instructions may also be stored in a computer readable storage medium that can direct a computer, a programmable data processing apparatus, and/or other devices to function in a particular manner, such that the computer readable storage medium having instructions stored therein comprises an article of manufacture including instructions which implement aspects of the function/act specified in the flowchart and/or block diagram block or blocks.
- the computer readable program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other device to cause a series of operational steps to be performed on the computer, other programmable apparatus or other device to produce a computer implemented process, such that the instructions which execute on the computer, other programmable apparatus, or other device implement the functions/acts specified in the flowchart and/or block diagram block or blocks.
- each block in the flowchart or block diagrams may represent a module, segment, or portion of instructions, which comprises one or more executable instructions for implementing the specified logical function(s).
- the functions noted in the blocks may occur out of the order noted in the Figures.
- two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved.
Landscapes
- Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- Theoretical Computer Science (AREA)
- Computational Linguistics (AREA)
- General Physics & Mathematics (AREA)
- Audiology, Speech & Language Pathology (AREA)
- General Engineering & Computer Science (AREA)
- Health & Medical Sciences (AREA)
- Artificial Intelligence (AREA)
- Mathematical Physics (AREA)
- General Health & Medical Sciences (AREA)
- Human Computer Interaction (AREA)
- Data Mining & Analysis (AREA)
- Databases & Information Systems (AREA)
- Acoustics & Sound (AREA)
- Multimedia (AREA)
- Information Transfer Between Computers (AREA)
Abstract
Description
Claims (16)
Priority Applications (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US16/544,596 US11372852B2 (en) | 2019-08-19 | 2019-08-19 | Named entity extraction in automated chat assistant |
Applications Claiming Priority (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US16/544,596 US11372852B2 (en) | 2019-08-19 | 2019-08-19 | Named entity extraction in automated chat assistant |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| US20210056098A1 US20210056098A1 (en) | 2021-02-25 |
| US11372852B2 true US11372852B2 (en) | 2022-06-28 |
Family
ID=74646837
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US16/544,596 Active 2041-01-11 US11372852B2 (en) | 2019-08-19 | 2019-08-19 | Named entity extraction in automated chat assistant |
Country Status (1)
| Country | Link |
|---|---|
| US (1) | US11372852B2 (en) |
Cited By (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US12260883B1 (en) | 2024-08-19 | 2025-03-25 | Morgan Stanley Services Group Inc. | System and method to enhance audio and video media using generative artificial intelligence |
Citations (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20110069822A1 (en) * | 2009-09-24 | 2011-03-24 | International Business Machines Corporation | Automatic creation of complex conversational natural language call routing system for call centers |
| US20190087455A1 (en) * | 2017-09-21 | 2019-03-21 | SayMosaic Inc. | System and method for natural language processing |
| US20190272296A1 (en) * | 2018-03-02 | 2019-09-05 | Thoughtspot, Inc. | Natural Language Question Answering Systems |
| US10503468B2 (en) * | 2017-12-08 | 2019-12-10 | Amazon Technologies, Inc. | Voice enabling applications |
| US20200380076A1 (en) * | 2019-05-30 | 2020-12-03 | Microsoft Technology Licensing, Llc | Contextual feedback to a natural understanding system in a chat bot using a knowledge model |
| US20200410989A1 (en) * | 2019-06-26 | 2020-12-31 | Samsung Electronics Co., Ltd. | System and method for natural language understanding |
| US11151986B1 (en) * | 2018-09-21 | 2021-10-19 | Amazon Technologies, Inc. | Learning how to rewrite user-specific input for natural language understanding |
-
2019
- 2019-08-19 US US16/544,596 patent/US11372852B2/en active Active
Patent Citations (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20110069822A1 (en) * | 2009-09-24 | 2011-03-24 | International Business Machines Corporation | Automatic creation of complex conversational natural language call routing system for call centers |
| US20190087455A1 (en) * | 2017-09-21 | 2019-03-21 | SayMosaic Inc. | System and method for natural language processing |
| US10503468B2 (en) * | 2017-12-08 | 2019-12-10 | Amazon Technologies, Inc. | Voice enabling applications |
| US20190272296A1 (en) * | 2018-03-02 | 2019-09-05 | Thoughtspot, Inc. | Natural Language Question Answering Systems |
| US11151986B1 (en) * | 2018-09-21 | 2021-10-19 | Amazon Technologies, Inc. | Learning how to rewrite user-specific input for natural language understanding |
| US20200380076A1 (en) * | 2019-05-30 | 2020-12-03 | Microsoft Technology Licensing, Llc | Contextual feedback to a natural understanding system in a chat bot using a knowledge model |
| US20200410989A1 (en) * | 2019-06-26 | 2020-12-31 | Samsung Electronics Co., Ltd. | System and method for natural language understanding |
Cited By (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US12260883B1 (en) | 2024-08-19 | 2025-03-25 | Morgan Stanley Services Group Inc. | System and method to enhance audio and video media using generative artificial intelligence |
Also Published As
| Publication number | Publication date |
|---|---|
| US20210056098A1 (en) | 2021-02-25 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US11698908B2 (en) | Content inversion for user searches and product recommendations systems and methods | |
| CN110362372B (en) | Page translation method, device, medium and electronic equipment | |
| US10630798B2 (en) | Artificial intelligence based method and apparatus for pushing news | |
| US9576075B2 (en) | Context aware query selection | |
| AU2014214652B2 (en) | Systems and methods for multi-user multi-lingual communications | |
| JP5761833B2 (en) | Dictionary candidates for partial user input | |
| JP5243779B2 (en) | System and method for adaptive spell checking | |
| EP3729231A1 (en) | Domain-specific natural language understanding of customer intent in self-help | |
| CN105550173A (en) | Text correction method and device | |
| US12547876B2 (en) | Method of evaluating data, training method, electronic device, and storage medium | |
| US20170212916A1 (en) | Duplicate post handling with natural language processing | |
| US10621261B2 (en) | Matching a comment to a section of a content item based upon a score for the section | |
| US20190236087A1 (en) | Messaging digest | |
| US11423219B2 (en) | Generation and population of new application document utilizing historical application documents | |
| US11372852B2 (en) | Named entity extraction in automated chat assistant | |
| US20210303795A1 (en) | Methods and systems for processing natural language communications | |
| US20180293508A1 (en) | Training question dataset generation from query data | |
| US20220374603A1 (en) | Method of determining location information, electronic device, and storage medium | |
| CN119558320A (en) | Request statement processing method and device, storage medium and electronic device | |
| CN113704408A (en) | Retrieval method, retrieval apparatus, electronic device, storage medium, and program product | |
| WO2010060117A1 (en) | Method and system for improving utilization of human searchers | |
| US20250225310A1 (en) | Computing technologies for web forms | |
| US20170126605A1 (en) | Identifying and merging duplicate messages | |
| CN119988771A (en) | A method and device for detecting abnormal page loading | |
| CN110147485A (en) | A method and apparatus for identifying attributes of a search term |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| AS | Assignment |
Owner name: MORGAN STANLEY SERVICES GROUP INC., NEW YORK Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:RAMAN, RAMA;SINGH, AMIT KUMAR;REEL/FRAME:050092/0744 Effective date: 20190819 |
|
| FEPP | Fee payment procedure |
Free format text: ENTITY STATUS SET TO UNDISCOUNTED (ORIGINAL EVENT CODE: BIG.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: NON FINAL ACTION MAILED |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: RESPONSE TO NON-FINAL OFFICE ACTION ENTERED AND FORWARDED TO EXAMINER |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: NOTICE OF ALLOWANCE MAILED -- APPLICATION RECEIVED IN OFFICE OF PUBLICATIONS |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT RECEIVED |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT VERIFIED |
|
| STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
| MAFP | Maintenance fee payment |
Free format text: PAYMENT OF MAINTENANCE FEE, 4TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1551); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY Year of fee payment: 4 |