Coder Social home page Coder Social logo

Comments (5)

keldrom avatar keldrom commented on July 22, 2024 8

https://github.com/EscVM/OIDv4_ToolKit

from dataset.

Nachwa avatar Nachwa commented on July 22, 2024 2

I did a small script using the bbox_hierarchy.json file from dendrogram
You can download the file from here

import json
class_hierarchy_path = './data/classes/bbox_hierarchy.json'
with open(class_hierarchy_path, 'r') as file:
    class_hierarchy = json.load(file)
    
def find_children(json_input, keyword):
    
    if isinstance(json_input, dict):
        for k, v in json_input.items():
            if  k =='name' and v == keyword:
                print('search in children of', v)
                keywords.update([keyword])
                if 'children' in json_input:
                    find_children(json_input['children'], keyword=next(studied_class))
            elif k =='name' and keyword == '*':
                    keywords.update([v])                    
                    if 'children' in json_input:
                        find_children(json_input['children'], keyword=keyword)  
            
    elif isinstance(json_input, list):
        for json_item in  json_input:
            find_children(json_item, keyword)

Then you can write some paths from the dendrogram. Examples:

categories = ['Entity.Vehicle.Land vehicle.Car.*',
              'Entity.Outdoor.Street items.*'
             ]

keywords = set()
for category in categories:
    studied_class = iter(category.split('.'))
    #assert class_hierarchy['name'] == next(studied_class), 'the root class is "Entity"'
    find_children(class_hierarchy, next(studied_class))
print('Found keywords are : ', keywords)

Those keywords can be replaces with trainable_classes_path in code of deepdive5 which I used to download images.

from dataset.

MostafaEmam95 avatar MostafaEmam95 commented on July 22, 2024

Any Solution to download only needed classes ?

from dataset.

cyrineee avatar cyrineee commented on July 22, 2024

how can i use data augmentation on open images v4 for some classes ?

from dataset.

Jarmos-san avatar Jarmos-san commented on July 22, 2024

@cyrineee I guess you should search StackOverflow for the answer & replies to this thread shouldn't be derailed. Besides, I guess the thread should be closed as @keldrom's reply appears to work perfectly.

from dataset.

Related Issues (20)

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.