Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,336 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 54 55 56 57 58 |
import type { TaskDataCustom } from "../Types";
const taskData: TaskDataCustom = {
datasets: [
{
description: "A comprehensive curation of datasets covering all benchmarks.",
id: "inria-soda/tabular-benchmark",
},
],
demo: {
inputs: [
{
table: [
["Car Name", "Horsepower", "Weight"],
["ford torino", "140", "3,449"],
["amc hornet", "97", "2,774"],
["toyota corolla", "65", "1,773"],
],
type: "tabular",
},
],
outputs: [
{
table: [["MPG (miles per gallon)"], ["17"], ["18"], ["31"]],
type: "tabular",
},
],
},
metrics: [
{
description: "",
id: "mse",
},
{
description:
"Coefficient of determination (or R-squared) is a measure of how well the model fits the data. Higher R-squared is considered a better fit.",
id: "r-squared",
},
],
models: [
{
description: "Fish weight prediction based on length measurements and species.",
id: "scikit-learn/Fish-Weight",
},
],
spaces: [
{
description: "An application that can predict weight of a fish based on set of attributes.",
id: "scikit-learn/fish-weight-prediction",
},
],
summary: "Tabular regression is the task of predicting a numerical value given a set of attributes.",
widgetModels: ["scikit-learn/Fish-Weight"],
youtubeId: "",
};
export default taskData;
|