DeepQ AI Platform
DeepQ AI Platform
  • 👋Welcome to DeepQ AI Platform!
  • Overview
    • 💡What is DeepQ AI Platform?
    • ✨Our Features
    • 🎁Whats new?
  • Product Guides
    • 👁️‍🗨️Navigation
      • 🧱Modules
      • 👩‍🏫User Profile
    • 📐DeepCap (Image Annotation Module)
      • 🖼️Dataset(s)
      • 📝Annotation Projects
      • 🖌️Annotation Jobs
    • 🖥️AI Training
      • 🖼️Dataset(s)
      • ⚙️Training Tasks
      • 🧠Models
  • Use Cases
    • 🧑‍🤝‍🧑Roles & Plans
    • ⬆️Upload & Manage Image Data
      • Data Formats
      • Combine Datasets
    • 👨‍🏫Create & Run Annotation Project
      • Create Annotation Project
        • Annotation Quality Control
      • Manage/View Annotation Project
      • Advanced Tips
    • 🧑‍⚕️Annotate/Review Images
      • Basic Annotation
      • Advanced Annotation Tips
    • 👨‍🔬Train/Test AI Model
      • Create Training Task
        • General Training
        • Specialized Training
        • Existing Model Retraining
      • Manage/View Training Task
        • Training Insight Reports
      • View/Test Models
        • Inference Insight Reports
      • Advanced Tips
  • Tutorial Videos
    • 🛠️Basic operations
    • 🔩Advanced Operations
  • Misc
    • ⁉️Troubleshooting & FAQs
    • 📔Changelogs
      • V3.0
      • V3.0.2.1
    • 📖Legal Documents
Powered by GitBook
On this page
  • Dataset Format
  • Dataset format: zip file
  • Import multi-class data from separate folders
  • Image Classification (Single-Label):
  • Image Classification (Multi-Label):
  • Object Detection:
  • Object Segmentation:
  1. Use Cases
  2. Upload & Manage Image Data

Data Formats

PreviousUpload & Manage Image DataNextCombine Datasets

Last updated 1 year ago

DeepQ AI Platform supports differnt types of labeld data such as classification, detection & segmentation. If a user has labels created by other annotation tools, just convert them into the formats described below then upload to the DeepQ AI platform. Once the dataset is accepted by the platform, you can train your models right away.


Dataset Format

The accepted dataset format is described below, please check your dataset and image format before uploading.

Dataset format: zip file

  • Image only: Images (jpg, png & Dicom) can be placed anywhere in the .zip file.

  • With annotation: To upload images with annotation, “label.csv” should be presented here.

  • For annotation file (label.csv) format, please refer to Annotation Data Formats **

Import multi-class data from separate folders

Images can also be stored in different folders under "Classes" then upload the compressed zip file. By doing so, the DeepQ AI Platform will automatically label the images according to the folder name, e.g. "Class A", and no additional annotation effort will be needed.

Image Classification (Single-Label):

  • Each row specifies the path/filename and class, separated by a comma in between.

  • The pairs of an image name and a category label start from the first line. That is, there is no CSV header in the label file.

Image Classification (Multi-Label):

  • Each row specifies the path/filename, class and value, all separated by commas in between.

  • The pairs of an image name and a category label start from the first line. That is, there is no CSV header in the label file.

  • Images that contains only path/filename will be used in training, in contrast to image that are not listed in the csv (excluded from training).

Object Detection:

  • Each row specifies a bounding box of an object.

  • Each row must include 6 fields, separated by a comma: image name, object name, xLeft, yTop, width, height.

  • (xLeft, yTop) is the top-left vertex of the bounding box, and width and height indicate the width and height of the bounding box.

  • (x, y, w, h) can be either integer or floating-point numbers.

  • If an image contain more than 1 bounding boxes, it can be shown in multiple rows.

  • Images that contains only path/filename will be used in training, in contrast to image that are not listed in the csv (excluded from training).

Object Segmentation:

  • Each row specifies a bounding box of an object.

  • Each row must include 5 fields, separated by a comma: image path/name, class name, image size (x&y) & mask.

  • All objects of the same class will be represented by a single mask.

  • Images that contains only path/filename will be used in training, in contrast to image that are not listed in the csv (excluded from training).

  • DeepQ AI platform uses a proprietary format for depicting masks that offers better flexibility in label modification and storage efficiency. If you want to export your segmentation label as a specific format, please contact DeepQ for assistance.

⬆️