VisionAI DataVerse
Observ
English
English
  • Meet DataVerse
  • Data Management
    • Creating Your First Project
    • Import Your Dataset
    • Data Slice - Specific Subsets
    • Data Visualization
      • Image
      • Point Cloud
      • Frame View
      • Sequence View
      • <Use Case> Clean Raw Data
      • <Use Case> Find More Rare Cases
      • <Use Case> Identify Model Weakness
    • Data Metrics
  • Advanced Data Features
    • Image Quality Assessment (IQA)
    • Auto-Tagging
    • Data Discovery (Beta)
    • Data Sampling
    • Data Splitting
    • Data Query
      • Element
      • Logic
      • Use Cases
  • ANNOTATION
    • Before Starting Annotation Task...
    • Create Annotation Task
    • Task Overview
    • Manpower
    • Labeling/Reviewing Panel
      • VQA Labeling Panel
    • Statistics
    • Detail
  • Model Training
    • Train Your AI Model
    • Model Performance
    • Prediction
    • Model Convert (Beta)
    • Model Download (Beta)
  • VisionAI Format
    • VisionAI Data Format
      • coordinate_systems
      • streams
      • contexts
      • objects
      • frames
        • objects
          • bbox
          • cuboid
          • poly2d
          • point
          • binary
        • contexts
        • attributes
      • frame_interval
      • tags
      • metadata
    • Use Case
      • bbox
      • polygon
      • polyline
      • point
      • semantic segmetation
      • classification
      • bbox + cuboid (3d)
      • tagging
    • Format FQA
    • VLM Data Format (VQA)
    • Appendix: Training Format
  • DataVerse Usage
    • Usage and Billing
  • Updates
    • Updates & Release Information
      • Release 2025/4/10
      • Release 2025/1/8
      • Release 2024/11/12
      • Release 2024/09/18
      • Release 2024/08/06
      • Initial Release 2024/01/01
Powered by GitBook
On this page
  • Case 1: Find a certain class in a dataset
  • Case 2: Find no object data
  • Case 3: Find small object size
  1. Advanced Data Features
  2. Data Query

Use Cases

use cases of custom data query

Case 1: Find a certain class in a dataset

Try to find the dataset “new2023“ objects containing "apple" or "banana".

dataset = 'new2023' AND class.name = 'apple' OR class.name = 'banana'

Case 2: Find no object data

Try to find the dataset “new2023“ with no objects.

dataset = 'new2023' AND class IS NULL

In our search syntax, the term 'null' is used to represent the absence or lack of a specified class object. For instance, when querying datasets or images, if you want to identify those that don't contain any objects of a specific class, you would use 'class IS NULL'.

In this case, it will return the dataset named 'new2023' that doesn't have any classified objects within it.

Case 3: Find small object size

Try to find the dataset “new2023“ annotation ”model-a” objects < 20 ^ 20 px

dataset = 'new2023' AND annotation = 'model-a' AND object_size.area < 40
PreviousLogicNextBefore Starting Annotation Task...

Last updated 1 year ago