[go: up one dir, main page]

WO2025117964A1 - Reconnaissance d'entité visuelle à l'aide de réseaux neuronaux génératifs - Google Patents

Reconnaissance d'entité visuelle à l'aide de réseaux neuronaux génératifs Download PDF

Info

Publication number
WO2025117964A1
WO2025117964A1 PCT/US2024/058115 US2024058115W WO2025117964A1 WO 2025117964 A1 WO2025117964 A1 WO 2025117964A1 US 2024058115 W US2024058115 W US 2024058115W WO 2025117964 A1 WO2025117964 A1 WO 2025117964A1
Authority
WO
WIPO (PCT)
Prior art keywords
entity
text
semantic
tokens
database
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
Application number
PCT/US2024/058115
Other languages
English (en)
Inventor
Mathilde CARON
Ahmet ISCEN
Alireza Fathi
Cordelia Luise SCHMID
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Google LLC
Original Assignee
Google LLC
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by Google LLC filed Critical Google LLC
Publication of WO2025117964A1 publication Critical patent/WO2025117964A1/fr
Pending legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/30Information retrieval; Database structures therefor; File system structures therefor of unstructured textual data
    • G06F16/33Querying
    • G06F16/332Query formulation
    • G06F16/3329Natural language query formulation
    • G06F16/33295Natural language query formulation in dialogue systems

Definitions

  • This specification relates to processing images using machine learning models.
  • neural networks are machine learning models that employ one or more layers of nonlinear units to predict an output for a received input.
  • Some neural networks include one or more hidden layers in addition to an output layer. The output of each hidden layer is used as input to another layer in the network, e.g., the next hidden layer or the output layer.
  • Each layer of the network generates an output from a received input in accordance with current values of a respective set of weights.
  • This specification describes a system implemented as one or more computer programs on one or more computers that that performs visual entity recognition.
  • Visual entity recognition requires identifying the specific entity that is depicted within a given input image.
  • “database’' entities that the system must be able to accurately detect grows large, this task becomes difficult for existing approaches.
  • classification-based approaches i.e., ones that generate a probability distribution over the entire set of entities and then select the correct entity using the probability distribution becomes too computationally expensive due to the large substantial parameter counts required to generate such a large probability distribution. They also struggle due to engineering complexities in deploying a model that needs to generate such a large distribution.
  • dual-encoder approaches leam a unified image-text feature space, thereby facilitating efficient nearest neighbor searches for recognition.
  • This specification generally describes techniques for performing visual entity recognition that overcome these difficulties by using semantic codes.
  • this specification describes how to use an entity decoder neural network to ‘"decode 7 ’ a semantic code that identifies an entity that is depicted in a given input image.
  • the described techniques can perform visual entity recognition for any set of database entities and, more generally, can accurately perform visual entity recognition even when the set of database entities includes a very large number of entities, e.g., over a million entities or over five million entities. In other words, even when the number of database entities is prohibitively large for existing techniques to be able to effectively perform retrieval from arbitrary input images, the described techniques can still perform well due to the user of semantic codes, which are compact and well-suited to being generated by a generative model.
  • the system generates semantic codes that have several different properties that allow a generative model, i.e., the entity decoder neural network, to accurately decode a semantic code that accurately identifies which visual entity is depicted in a given input image.
  • the system generates the semantic codes so that similarity between semantic codes reflects semantic similarity between the corresponding database entities. More specifically, by generating the semantic codes from semantic tokens, e.g., generated by a text tokenizer, semantically similar visual entities will generally have semantic codes that have some overlapping semantic tokens. Additionally, the system generates the semantic tokens so that they are discriminative, i.e., compared to all other database entities, and compact, i.e., do not include an excessively large number of tokens.
  • the system can generate codes that include more than one but less than all of the text tokens generated by the tokenizer for any given entity name. Despite this compactness, to allow for precise recognition, the system generates the semantic codes to be unambiguous, i.e., by ensuring that each semantic code is unique.
  • FIG. 1 A is a diagram of an example visual entity recognition system.
  • FIG. IB shows an example of an overview of the visual entity recognition process.
  • FIG. 2 is a flow diagram of an example process for performing visual entity recognition.
  • FIG. 3 is a flow diagram of an example process for generating a semantic code for one of the database entities.
  • FIG. 4 is an example of generating a semantic code for a database entity.
  • FIG. 5 is an example of performing the visual entity recognition process.
  • This specification describes a system implemented as computer programs on one or more computers in one or more locations that performs visual entity' recognition on input images.
  • FIG. 1 A is a diagram of an example visual entity recognition system 100.
  • the visual entity recognition system 100 is an example of a system implemented as computer programs on one or more computers in one or more locations, in which the systems, components, and techniques described below can be implemented.
  • the system 100 is a system that performs visual entity recognition on input images.
  • Visual entity recognition is the process of determining which entity from a predetermined set of entities (referred to in this specification as “database entities”) is represented in an input image.
  • the database entities can be any appropriate set of entities, e.g.. can include any of people, places, objects, animals, and so on.
  • the entities in the set of database entities can be general, e.g., bridges, specific, e.g., the Golden Gate Bridge, or a mix of both.
  • the entities in the set of database entities can include real-world entities, e.g., entities that correspond to concepts that are found in the real-world, or synthetic entities, e.g., entities that correspond to concepts only found in generated media content, or both.
  • the system 100 receives an input that includes (i) an input image 102 and (ii) a text query 104 that specifies an entity in the input image 102. That is, because multiple entities may be represented in a single image, the text query 104 specifies which entity in the input image needs to be recognized, i.e., references an entity that is represented in the input image 102 and that needs to be recognized by the sy stem 100.
  • a single image may depict a bridge that crosses a body of water. If the request is to recognize the bridge, the text query 104 may be ‘"what is the name of this bridge?” If the request is to recognize the body of water, the text query 104 may be “what is the name of this river?”
  • the sy stem 100 maintains code data 120 that specifies, for each of the database entities, a semantic code 122 that represents the database entity.
  • the tokens are referred to as “semantic” tokens because each token has a semantic meaning that conveys semantic information relating to the entity.
  • the semantic tokens can be text tokens as generated by a text tokenizer that divides sequences of text into tokens, e.g., one or more of characters, words, word pieces, and so on.
  • a text tokenizer is the SentencePiece tokenizer.
  • some or all of the semantic tokens in a given semantic code 122 for a given entity can be text tokens that are included in a set of text tokens that are generated by tokenizing an entity name for the given entity using the text tokenizer.
  • the semantic codes 122 are also compact.
  • the total number of tokens in a given semantic code 122 for a given entity can be less than the total number of text tokens that are generated by tokenizing the entity name for the given entity using the text tokenizer.
  • the code data 120 specifies, for each of a plurality of database entities, a semantic code 122 that represents the database entity.
  • the code data 120 can associate each database entity with respective identifiers, e g., integers or other unique identifiers, for each of the semantic tokens in the semantic code 122 for the entity.
  • the code data 120 can map a unique identifier for the database entity to an entity name for the entity and to the respective identifiers for the semantic tokens in the semantic code 122 for the entity.
  • the system 100 Once the system 100 receives the input, the system 100 generates an input sequence 130 from the input image 102 and the text query 104.
  • the input sequence 130 is generally a sequence of embeddings in an embedding space that represents both the input image 102 and the text query 104.
  • the system 100 then processes the input sequence 130 using an entity decoder neural network 140 to generate an output sequence 150 that identifies a particular semantic code 160.
  • the entity decoder neural network 140 is a generative neural network that generates the output sequence 1 0.
  • the output sequence 150 can be a sequence of identifiers for semantic tokens and the entity decoder neural network can auto-regressively generate the sequence, one identifier after another.
  • the system 100 then maps, using the code data 120, the particular semantic code 160 to a particular database entity of the database entities. That is, the system identifies, in the code data 120, which database entity’ is associated with the particular semantic code 160.
  • the system 100 then provides, in response to the input, a visual entity' recognition output 162 that includes data indicating that the particular database entity is the entity referenced in the text query 104.
  • the system 100 can provide the entity name of the particular database entity, the unique identifier for the particular database entity, or both, as the output of the visual entity recognition process.
  • FIG. IB shows an example 180 of an overview of the visual recognition process.
  • the system 100 upon receiving a request to perform visual entity recognition for a set of database entities, the system 100 first performs a semantic code generation process 182 to generate a respective semantic code for each database entity in the set.
  • the system 100 then receives an image 102 of an entity on which visual entity recognition is to be performed and then uses the entity decoder neural network 140 to generate an output sequence 150 that includes a set of identifiers for semantic tokens. While not shown in FIG. IB, the input will generally also include a text query that specifies which entity is to be recognized in the input image. Examples of text queries can include “which animal is on the right of the photo” and “which animal is on the left of the photo.”
  • the system 100 can then map the identifiers in the output sequence 150, i.e., the identifiers 86, 5, and 3, to the entity having the name “black-and-white colobus.”
  • FIG. 2 is a flow diagram of an example process 200 for performing visual entity recognition.
  • the process 200 will be described as being performed by a system of one or more computers located in one or more locations.
  • a visual entity recognition system e.g., the visual entity recognition system 100 depicted in FIG. 1A, appropriately programmed in accordance with this specification, can perform the process 200.
  • the system maintains code data specifying, for each of a plurality' of database entities, a semantic code that represents the database entity (step 202).
  • each semantic code is a set of semantic tokens from a vocabulary of semantic tokens.
  • each semantic token in the vocabulary can be represented by a respective identifier and the code data can associate, for each of the plurality of database entities, the database entity' with a set of identifiers that represent the semantic tokens in the semantic code that represents the database entity'.
  • the identifiers for the semantic tokens can be randomly assigned by the system or can be pre-determined by the text tokenizer used to generate the semantic tokens.
  • the respective identifiers can be integers, so that each semantic token is represented by a different integer.
  • the semantic tokens for any given entity' can be text tokens generated by a text tokenizer, e.g., from an entity name for the entity.
  • a text tokenizer e.g., from an entity name for the entity.
  • the set of semantic tokens in the semantic code for the entity contains fewer text tokens than are generated by the text tokenizer by tokenizing the entity name for the entity.
  • the system obtains a visual entity recognition input that includes an input image and a text query' that references an entity represented in the input image (step 204).
  • the system generates an input sequence from the input image and the text query (step Generally, the input sequence includes image embeddings representing the input image and text embeddings representing the text query.
  • the input sequence can include the image embeddings followed by the text embeddings or the text embeddings followed by the image embeddings.
  • the system can process the input image using an image encoder neural network to generate one or more image embeddings representing the input image.
  • the image encoder neural network can generally have any appropriate architecture that allows the image encoder neural network to map an image to a set of embeddings.
  • the image encoder neural network can be a convolutional neural network, e.g., a ResNet.
  • the image encoder neural network can be a vision Transformer neural network.
  • the image encoder neural network can be a neural network that includes both convolutional and self-attention layers.
  • the system can apply a text tokenizer to the text query to generate a sequence of text tokens and then map each text token to a respective text embedding.
  • a text tokenizer used to generate the semantic codes or a different text tokenizer.
  • the system processes the input sequence using an entity decoder neural network to generate an output sequence that identifies a particular semantic code (step 208).
  • the entity decoder neural network can be an auto-regressive neural network that is configured to process the input sequence to auto-regressively generate the output sequence.
  • Examples of such neural networks include causally-masked, decoder-only Transformer neural networks, recurrent neural networks, and neural networks that include both causally-masked self-attention layers and recurrent layers.
  • the entity decoder neural network can generate a given output sequence by, for any given output sequence, identifying, for any position that precedes the particular position in the given output sequence, a respective token embedding of the semantic token identified at the position in the output sequence.
  • the entity decoder neural network can then process a current input sequence that includes the input sequence and the token embeddings of the semantic tokens corresponding to any positions that precede the particular position in the output sequence to generate a score distribution over the vocabulary of semantic tokens.
  • the system greedily decodes a single output sequence using the entity decoder neural network.
  • the system can determine whether the output sequence is valid, i.e., maps to one of the semantic codes in the code data, and, if not, re-generate a new output sequence, e.g., starting from the last valid prefix.
  • the system can perform ' constrained sampling” to ensure that each token added to the output sequence results in a valid prefix for one or more of the codes in the code data.
  • the system can perform a beam search using the entity decoder neural network to generate the output sequence. That is, the system can maintain a ‘"beam” of multiple candidate output sequences that is updated at each generation step and, after the candidates in the beam have been finalized, select the highest-scoring candidate as the final output sequence. In these cases, if the highest-scoring candidate is not a valid output sequence because it does not correspond to any of the semantic codes in the code data, the system can select the next-highest-scoring candidate from the beam.
  • the system maps, using the code data, the particular semantic code to a particular database entity of the database entities (step 210).
  • the system provides, in response to the visual entity recognition input, data indicating that the particular database entity is the entity referenced in the text query (step 212).
  • the system or another training system trains the entity decoder neural network on training data.
  • the system can obtain a training data set that includes (i) training images that depict database entities and (ii) for each training image, a ground truth label identifying the database entity depicted in the training image.
  • the system can then generate a respective training example for each training image by mapping the ground truth label for the training image to a ground truth output sequence, i.e., a ground truth output sequence that includes the identifiers from the semantic code for the database entity identified by the ground truth label.
  • the system can then train the entity decoder neural network on the training examples, e.g., to minimize any appropriate language modeling loss.
  • the language modeling loss can be a next token prediction loss, e.g., a softmax cross-entropy loss, optionally with label smoothing or other regularization techniques.
  • the system can also train any of a variety of components jointly with the training of the entity decoder neural network.
  • the system can learn the text embeddings during training of the entity decoder neural network by backpropagating gradients of the language modeling loss through the entity decoder neural network.
  • the system can train the image encoder jointly during the training of the entity decoder neural network by backpropagating gradients of the language modeling loss through the entity decoder neural network.
  • the system can learn the token embeddings during training of the entity decoder neural network by backpropagating gradients of the language modeling loss through the entity decoder neural network.
  • the training system can pre-train the entity decoder neural network prior to training the entity decoder neural network using semantic codes.
  • the system can pre-train the entity decoder neural network on a task that requires predicting natural language entity names for entities that are depicted in training images of a pre-training dataset.
  • the pretraining dataset includes a plurality of images with respective entity names.
  • each training image is assigned a single entity in order to avoid instability.
  • FIG. 3 is a flow diagram of an example process 300 for generating a semantic code for a given entity'.
  • the process 300 will be described as being performed by a system of one or more computers located in one or more locations.
  • a visual entity recognition system e.g., the visual entity recognition system 100 depicted in FIG. 1A. appropriately programmed in accordance with this specification, can perform the process 300.
  • the system can perform the process 300 for each entity in the set of database entities to generate a respective semantic code for each of the database entities.
  • the system identifies a name for the database entity (step 302). For example, the system can receive, as input, a respective entity name for each of the database entities.
  • the name can be any text reference to the database entity and can be a single word or a multiword phrase, e.g., “Tower Bridge’' or “Nile River.”
  • the system tokenizes the entity name for the database entity into a plurality of text tokens (step 304). For example, as descnbed above, the system can apply a text tokenizer, e.g., SentencePiece or another appropriate tokenizer, to the entity name to generate the plurality of tokens.
  • a text tokenizer e.g., SentencePiece or another appropriate tokenizer
  • semantically similar visual entities will generally have semantic codes that have some overlapping semantic tokens. This allows the decoder neural network to effectively learn relationships between related entities.
  • the system then generates the semantic code for the database entity by selecting a subset of the plurality of text tokens (step 306). In particular, for each entity, the set of semantic tokens in the semantic code for the entity contains fewer text tokens than are generated by the text tokenizer by tokenizing the entity name for the entity.
  • the system can maintain, for each of the text tokens in the vocabulary, a respective frequency of occurrence of the text tokens in tokenized entity names for the plurality of database entities.
  • the frequency of occurrence can be a count of the number of times the text token appears in an entity name for an entity or a count of the number of entity names in which the text token appears at least once.
  • the system can then select the subset of tokens using the frequencies of occurrence for the text tokens generated from the entity name.
  • the system can select, from the plurality of text tokens, a specified number of least frequently occurring text tokens according to the frequencies of occurrence. That is, the system can rank the text tokens by frequency and then select a fixed number of tokens that are the least frequent according to the ranking.
  • the system By using the least frequent tokens (instead of all of the tokens or the most frequent tokens), the system generates codes that are discriminative, i.e., compared to all other database entities, and compact, i.e., do not include an excessively large number of tokens. This makes the tokens significantly easier to learn for the model.
  • the system can include, in the semantic code for the database entity 7 and in addition to the specified number of least frequently occurring text tokens, one or more additional tokens from the vocabulary that result in the semantic code for the database entity being unique from each other semantic code for each other database entity.
  • the system can include in each semantic code one additional token that ensures the uniqueness of the semantic codes.
  • the system can greedily assign the last code token to the next least frequent token of the tokenized entity name until the resulting code is different from all existing codes. If this still fails to create a unique code, the system can assign the token to a random token value from the vocabulary so that the resulting code is unique.
  • FIG. 4 shows an example 400 of generating a semantic code for a given database entity.
  • the system tokenizes 402 the entity name “Black-and- white colobus” for a given database entity into a plurality of text tokens 404 (“[black] [- ] [and] [-] [white] [col] [ob] [us]”).
  • the system then ranks 406 the text tokens by frequency, yielding the order [col] [ob] [white] [black] [us] [-][-] [and] and then selects 408 (“keeps”) the /.- I least frequent.
  • L is equal to 4 and therefore the system selects [col] [ob] [white] as the semantic tokens in the semantic codes.
  • the system can then add one or more additional tokens to the code to ensure that the semantic code is unique.
  • the system can then map each semantic token to a respective identifier 410 and store the identifiers in association with data identifying the entity for later use in performing visual entity recognition.
  • FIG. 5 shows an example 500 of performing visual entity recognition.
  • the system receives an input that includes an image 502 and a text sequence 504 (“what is the main object?”).
  • the system generates an input sequence 520 for the decoder neural network 140 by processing the image 502 using an image encoder neural network 510 to generate a set of image embeddings and tokenizing and embedding the text sequence 504 to generate a set of text embeddings.
  • the system then processes the input sequence 520 using the decoder neural network 140 to generate an output sequence 530 that, in the example 500, includes a sequence of token identifiers.
  • the system can then map the sequence of token identifiers to a particular database entity from the set of database entities using the code data, as described above.
  • Embodiments of the subject matter and the functional operations described in this specification can be implemented in digital electronic circuitry, in tangibly-embodied computer software or firmware, in computer hardware, including the structures disclosed in this specification and their structural equivalents, or in combinations of one or more of them.
  • Embodiments of the subject matter described in this specification can be implemented as one or more computer programs, e.g., one or more modules of computer program instructions encoded on a tangible non transitory storage medium for execution by, or to control the operation of, data processing apparatus.
  • the computer storage medium can be a machine- readable storage device, a machine-readable storage substrate, a random or serial access memory device, or a combination of one or more of them.
  • the program instructions can be encoded on an artificially generated propagated signal, e.g., a machine-generated electrical, optical, or electromagnetic signal, that is generated to encode information for transmission to suitable receiver apparatus for execution by a data processing apparatus.
  • the term '‘data processing apparatus” refers to data processing hardware and encompasses all kinds of apparatus, devices, and machines for processing data, including by way of example a programmable processor, a computer, or multiple processors or computers.
  • the apparatus can also be, or further include, special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application specific integrated circuit).
  • the apparatus can optionally include, in addition to hardware, code that creates an execution environment for computer programs, e.g., code that constitutes processor firmware, a protocol stack, a database management system, an operating system, or a combination of one or more of them.
  • a computer program which may also be referred to or described as a program, software, a software application, an app, a module, a software module, a script, or code, can be written in any form of programming language, including compiled or interpreted languages, or declarative or procedural languages; and it can be deployed in any form, including as a stand alone program or as a module, component, subroutine, or other unit suitable for use in a computing environment.
  • a program may, but need not, correspond to a file in a file system.
  • a program can be stored in a portion of a file that holds other programs or data, e.g., one or more scripts stored in a markup language document, in a single file dedicated to the program in question, or in multiple coordinated files, e.g., files that store one or more modules, sub programs, or portions of code.
  • a computer program can be deployed to be executed on one computer or on multiple computers that are located at one site or distributed across multiple sites and interconnected by a data communication network.
  • the term “database” is used broadly to refer to any collection of data: the data does not need to be structured in any particular way, or structured at all, and it can be stored on storage devices in one or more locations.
  • the index database can include multiple collections of data, each of which may be organized and accessed differently.
  • engine is used broadly to refer to a software-based system, subsystem, or process that is programmed to perform one or more specific functions.
  • an engine will be implemented as one or more software modules or components, installed on one or more computers in one or more locations. In some cases, one or more computers will be dedicated to a particular engine; in other cases, multiple engines can be installed and running on the same computer or computers.
  • the processes and logic flows described in this specification can be performed by one or more programmable computers executing one or more computer programs to perform functions by operating on input data and generating output.
  • the processes and logic flows can also be performed by special purpose logic circuitry, e.g., an FPGA or an ASIC, or by a combination of special purpose logic circuitry and one or more programmed computers.
  • Computers suitable for the execution of a computer program can be based on general or special purpose microprocessors or both, or any other kind of central processing unit.
  • a central processing unit will receive instructions and data from a read only memory or a random access memory 7 or both.
  • the essential elements of a computer are a central processing unit for performing or executing instructions and one or more memorydevices for storing instructions and data.
  • the central processing unit and the memory can be supplemented by, or incorporated in, special purpose logic circuitry-.
  • a computer will also include, or be operatively coupled to receive data from or transfer data to, or both, one or more mass storage devices for storing data, e.g., magnetic, magneto optical disks, or optical disks.
  • a computer need not have such devices.
  • a computer can be embedded in another device, e.g., a mobile telephone, a personal digital assistant (PDA), a mobile audio or video player, a game console, a Global Positioning System (GPS) receiver, or a portable storage device, e.g., a universal serial bus (USB) flash drive, to name just a few.
  • PDA personal digital assistant
  • GPS Global Positioning System
  • USB universal serial bus
  • Computer readable media suitable for storing computer program instructions and data include all forms of non volatile memory, media and memory devices, including by way of example semiconductor memory- devices, e.g., EPROM, EEPROM, and flash memory devices; magnetic disks, e.g., internal hard disks or removable disks; magneto optical disks; and CD ROM and DVD-ROM disks.
  • semiconductor memory- devices e.g., EPROM, EEPROM, and flash memory devices
  • magnetic disks e.g., internal hard disks or removable disks
  • magneto optical disks e.g., CD ROM and DVD-ROM disks.
  • embodiments of the subject matter described in this specification can be implemented on a computer having a display device, e.g., a CRT (cathode ray tube) or LCD (liquid crystal display) monitor, for displaying information to the user and a keyboard and a pointing device, e.g., a mouse or a trackball, by which the user can provide input to the computer.
  • a display device e.g., a CRT (cathode ray tube) or LCD (liquid crystal display) monitor
  • keyboard and a pointing device e.g., a mouse or a trackball
  • Other kinds of devices can be used to provide for interaction with a user as well; for example, feedback provided to the user can be any form of sensory feedback, e.g., visual feedback, auditory feedback, or tactile feedback; and input from the user can be received in any form, including acoustic, speech, or tactile input.
  • a computer can interact with a user by sending documents to and receiving documents from a device that is used by the user; for example, by sending web pages to a web browser on a user’s device in response to requests received from the web browser.
  • a computer can interact with a user by sending text messages or other forms of message to a personal device, e.g., a smartphone that is running a messaging application, and receiving responsive messages from the user in return.
  • Data processing apparatus for implementing machine learning models can also include, for example, special-purpose hardware accelerator units for processing common and compute-intensive parts of machine learning training or production, e.g., inference, workloads.
  • Machine learning models can be implemented and deployed using a machine learning framework, .e.g., a TensorFlow framework or a Jax framework.
  • a machine learning framework .e.g., a TensorFlow framework or a Jax framework.
  • Embodiments of the subject matter described in this specification can be implemented in a computing system that includes a back end component, e.g., as a data server, or that includes a middleware component, e.g., an application server, or that includes a front end component, e.g., a client computer having a graphical user interface, a web browser, or an app through which a user can interact with an implementation of the subject matter described in this specification, or any combination of one or more such back end, middleware, or front end components.
  • the components of the system can be interconnected by any form or medium of digital data communication, e.g., a communication network. Examples of communication networks include a local area network (LAN) and a wide area network (WAN), e.g., the Internet.
  • LAN local area network
  • WAN wide area network
  • the computing system can include clients and servers.
  • a client and server are generally remote from each other and typically interact through a communication network. The relationship of client and server arises by virtue of computer programs running on the respective computers and having a client-server relationship to each other.
  • a server transmits data, e.g., an HTML page, to a user device, e.g.. for purposes of displaying data to and receiving user input from a user interacting with the device, which acts as a client.
  • Data generated at the user device e.g.. a result of the user interaction, can be received at the server from the device.

Landscapes

  • Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • Mathematical Physics (AREA)
  • Theoretical Computer Science (AREA)
  • Artificial Intelligence (AREA)
  • Human Computer Interaction (AREA)
  • Computational Linguistics (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Character Discrimination (AREA)

Abstract

L'invention concerne des procédés, des systèmes et un appareil, y compris des programmes informatiques codés sur des supports de stockage informatiques, pour effectuer une reconnaissance d'entité visuelle. En particulier, des codes sémantiques qui représentent des entités de base de données sont utilisés pour reconnaître efficacement des entités de base de données spécifiques dans des images d'entrée.
PCT/US2024/058115 2023-12-01 2024-12-02 Reconnaissance d'entité visuelle à l'aide de réseaux neuronaux génératifs Pending WO2025117964A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US202363605440P 2023-12-01 2023-12-01
US63/605,440 2023-12-01

Publications (1)

Publication Number Publication Date
WO2025117964A1 true WO2025117964A1 (fr) 2025-06-05

Family

ID=94083093

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2024/058115 Pending WO2025117964A1 (fr) 2023-12-01 2024-12-02 Reconnaissance d'entité visuelle à l'aide de réseaux neuronaux génératifs

Country Status (1)

Country Link
WO (1) WO2025117964A1 (fr)

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20220130499A1 (en) * 2020-10-28 2022-04-28 International Business Machines Corporation Medical visual question answering
US20230185844A1 (en) * 2019-05-30 2023-06-15 Adobe Inc. Visually Guided Machine-learning Language Model

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20230185844A1 (en) * 2019-05-30 2023-06-15 Adobe Inc. Visually Guided Machine-learning Language Model
US20220130499A1 (en) * 2020-10-28 2022-04-28 International Business Machines Corporation Medical visual question answering

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
PANDA SOUMYA PRIYADARSINI ET AL: "A Visual Question Answering System using YOLO Model", 2021 19TH OITS INTERNATIONAL CONFERENCE ON INFORMATION TECHNOLOGY (OCIT), IEEE, 16 December 2021 (2021-12-16), pages 256 - 260, XP034094133, DOI: 10.1109/OCIT53463.2021.00059 *

Similar Documents

Publication Publication Date Title
US12086198B2 (en) Embedding based retrieval for image search
CN111753060B (zh) 信息检索方法、装置、设备及计算机可读存储介质
US11003856B2 (en) Processing text using neural networks
US11544474B2 (en) Generation of text from structured data
WO2018145098A1 (fr) Systèmes et procédés de marquage de jeton sémantique automatique
CN114298055B (zh) 基于多级语义匹配的检索方法、装置、计算机设备和存储介质
US12373688B2 (en) Granular neural network architecture search over low-level primitives
US11379527B2 (en) Sibling search queries
CN120873195A (zh) 用于基于图谱的动态信息检索及合成的系统和方法
WO2023175089A1 (fr) Génération de séquences de sortie avec des preuves en ligne à l'aide de réseaux neuronaux à modèle de langage
CN114416939A (zh) 智能问答方法、装置、设备及存储介质
KR20230062430A (ko) 스토리 기반 이미지 시퀀스 결정 방법, 장치 및 시스템
CN120045696A (zh) 一种基于动态文档块段优化的检索增强生成方法
CN117725197B (zh) 搜索结果的摘要确定方法、装置、设备及存储介质
US12423518B2 (en) Attention neural networks with N-grammer layers
WO2025117964A1 (fr) Reconnaissance d'entité visuelle à l'aide de réseaux neuronaux génératifs
CN115329755B (zh) 实体链接模型处理方法、装置和实体链接处理方法、装置
US20240127616A1 (en) Connecting vision and language using fourier transform
WO2024206231A1 (fr) Réseaux neuronaux multimodaux comprenant des modèles de langage avec décodeur uniquement
US12499151B2 (en) Embedding based retrieval for image search
US20250217373A1 (en) Contextualized token retriever
CN118981549B (zh) 一种基于类代理蒸馏的零样本草图图像检索方法
US20250378102A1 (en) Performing fact checking using machine learning models
CN117635975A (zh) 图文匹配方法、装置、设备及存储介质
Jiang et al. Semantic Reanalysis of Scene Words in Visual Question Answering

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 24828611

Country of ref document: EP

Kind code of ref document: A1