Code Monkey home page Code Monkey logo

Comments (9)

wzk1015 avatar wzk1015 commented on August 25, 2024

Hi, for feature extraction we follow M4C. It is performed on the original dataset, noting that both TextVQA and TextCaps use images from OpenImages, so features extracted on TextVQA can be directly used on TextCaps.

from cnmt.

wzk1015 avatar wzk1015 commented on August 25, 2024

For OCR systems you can refer to their official repos (CRAFT, ABCNet and four-stage STR).

from cnmt.

Caroline0728 avatar Caroline0728 commented on August 25, 2024

Thank you for your reply! Are you referring this link?facebookresearch/mmf

from cnmt.

wzk1015 avatar wzk1015 commented on August 25, 2024

Yes, extract_features_vmb.py and extract_ocr_frcn_feature.py to be precise

from cnmt.

Caroline0728 avatar Caroline0728 commented on August 25, 2024

Thank you very much! Let me try ~!

from cnmt.

Caroline0728 avatar Caroline0728 commented on August 25, 2024

I'm sorry to bother you again. There are a lot of files in MMF, but the configuration file for feature extraction provides URL links, which are invalid now. May I ask where to modify the loading path of the original data set?
image

from cnmt.

wzk1015 avatar wzk1015 commented on August 25, 2024

I think you should probably open issues in MMF repo for this

from cnmt.

Caroline0728 avatar Caroline0728 commented on August 25, 2024

Yes, extract_features_vmb.py and extract_ocr_frcn_feature.py to be precise

Hello, first of all, thank you for the code you provided. I still want to ask you some questions. As for the results obtained after the addition of text recognition and detection algorithm in pictures, how to further generate the. Npy file required by the model? Could you give me some ideas? I would like to try to reproduce your code by myself, thank you very much for your reply at your convenience! ~

from cnmt.

wzk1015 avatar wzk1015 commented on August 25, 2024

Yes, extract_features_vmb.py and extract_ocr_frcn_feature.py to be precise

Hello, first of all, thank you for the code you provided. I still want to ask you some questions. As for the results obtained after the addition of text recognition and detection algorithm in pictures, how to further generate the. Npy file required by the model? Could you give me some ideas? I would like to try to reproduce your code by myself, thank you very much for your reply at your convenience! ~

You can read the .npy file with numpy,

>>> import numpy as np
>>> a=np.load('imdb_val_filtered_by_image_id.npy')
>>> a[1].keys()
dict_keys(['image_id', 'image_classes', 'flickr_original_url', 'flickr_300k_url', 'image_width', 'image_height', 'set_name', 'image_name', 'image_path', 'feature_path', 'ocr_tokens', 'ocr_info', 'ocr_normalized_boxes', 'obj_normalized_boxes', 'caption_id', 'caption_str', 'caption_tokens', 'reference_strs', 'reference_tokens', 'ocr_confidence'])

Most of them come from imdb file in M4C-Captioner except for ocr_confidence

dict_keys(['image_id', 'image_classes', 'flickr_original_url', 'flickr_300k_url', 'image_width', 'image_height', 'set_name', 'image_name', 'image_path', 'feature_path', 'ocr_tokens', 'ocr_info', 'ocr_normalized_boxes', 'obj_normalized_boxes', 'caption_id', 'caption_str', 'caption_tokens', 'reference_strs', 'reference_tokens'])

'image_id', 'image_classes', 'flickr_original_url', 'flickr_300k_url', 'image_width', 'image_height', 'set_name', 'image_name', 'image_path', 'caption_id', 'caption_str', 'caption_tokens', 'reference_strs', 'reference_tokens' are from the json file in original TextCaps dataset (or need some processing)

'feature_path', 'ocr_tokens', 'ocr_info', 'ocr_normalized_boxes', 'obj_normalized_boxes', ocr_confidence`` are from your detection and OCR result. Print out a[1] and you will understand them

from cnmt.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.