SkyServe Docs
  • Welcome to Skyserve SURGE
    • Features
    • Terminologies
  • Model Submission
    • User Modes
    • Submission Fields
    • Model Guidelines
    • Model Repository Guidelines
    • Appendix
  • Model Journey
    • Testing Flow
    • Model Deployment
    • Model Tasking
  • My Models
  • Model Tracker Page
  • Notification
  • Profile
  • Resources
Powered by GitBook
On this page
  1. Model Submission

Appendix

PreviousModel Repository GuidelinesNextModel Journey

Last updated 1 month ago

Output Type
Expected Output File Type
Output File Sample

Image - Integer

TIFF File

An image file with different bands

Image - Float

TIFF File

An image file with multiple bands - they will specify what each band is, like NDMI, NDVI etc.

Segmentation - Binary Mask

TIFF File

Binary mask with 0s and 1s

Segmentation - Multi-class segmentation

TIFF File

Mask with n values in it, where n is the number of classes

Object Detection - Point

JSON

Object Detection - Bounding Box

JSON

Object Classification - Point

JSON

Object Classification - BBox

JSON

prediction: [
    {
        score: 0.865,
        x: 12,
        y: 25,
    },
    {
        score: 0.765,
        x: 34,
        y: 67,
    }
]
prediction: [
    {
        score: 0.865,
        xmin: 12,
        ymin: 25,
        xmax: 35,
        ymax: 40
    },
    {
        score: 0.765,
        xmin: 34,
        ymin: 67,
        xmax: 65,
        ymax: 70
    }
]
prediction: [
    {
        class_id: 0,
        label: 'Tree',
        score: 0.865,
        x: 12,
        y: 25
    },
    {
        class_id: 1,
        label: 'Lake',
        score: 0.765,
        x: 34,
        y: 67
    }
]
prediction: [
    
    {
        class_id: 0,
        label: 'Tree',
        score: 0.865,
        xmin: 12,
        ymin: 25,
        xmax: 35,
        ymax: 40
    },
    {
        class_id: 1,
        label: 'Lake',
        score: 0.765,
        xmin: 34,
        ymin: 67,
        xmax: 65,
        ymax: 70
    }
]