Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,245 Bytes
b2ecf7d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
import type { TaskDataCustom } from "../Types";
const taskData: TaskDataCustom = {
datasets: [
{
description: "NYU Depth V2 Dataset: Video dataset containing both RGB and depth sensor data",
id: "sayakpaul/nyu_depth_v2",
},
],
demo: {
inputs: [
{
filename: "depth-estimation-input.jpg",
type: "img",
},
],
outputs: [
{
filename: "depth-estimation-output.png",
type: "img",
},
],
},
metrics: [],
models: [
{
// TO DO: write description
description: "Strong Depth Estimation model trained on 1.4 million images.",
id: "Intel/dpt-large",
},
{
// TO DO: write description
description: "Strong Depth Estimation model trained on the KITTI dataset.",
id: "vinvino02/glpn-kitti",
},
],
spaces: [
{
description: "An application that predicts the depth of an image and then reconstruct the 3D model as voxels.",
id: "radames/dpt-depth-estimation-3d-voxels",
},
{
description: "An application that can estimate the depth in a given image.",
id: "keras-io/Monocular-Depth-Estimation",
},
],
summary: "Depth estimation is the task of predicting depth of the objects present in an image.",
widgetModels: [""],
youtubeId: "",
};
export default taskData;
|