Spaces:
Running
Running
File size: 3,883 Bytes
7e248dd 13dfb27 7e248dd 13dfb27 7e248dd | 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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | const { createApp, ref, onMounted } = Vue;
const UseCases = [
{
"name": "Natural Language Processing (NLP)",
"examples": [
{
"name": "Generate Text Stream",
"description": "Generate text in real-time based on a given input.",
"link": "/nlp/generate-text-stream/"
},
{
"name": "Fill Mask",
"description": "The Fill Mask model can complete sentences where words are masked.",
"link": "/nlp/fill-mask/"
},
{
"name": "Summarization",
"description": "Condense large pieces of text into shorter, coherent versions.",
"link": "/nlp/summarization/"
},
{
"name": "Question Answering",
"description": "Get answers to specific questions based on the provided context.",
"link": "/nlp/question-answering/"
},
{
"name": "Text Classification",
"description": "Classify the sentiment of a given piece of text.",
"link": "/nlp/text-classification/"
},
{
"name": "Text Generation",
"description": "Generate text based on a given input.",
"link": "/nlp/text-generation/"
}
]
},
{
"name": "Audio",
"examples": [
{
"name": "Speech Recognition",
"description": "Convert spoken language into written text.",
"link": "/audio/speech-recognition/"
},
{
"name": "Audio Classification",
"description": "Classify audio data into predefined categories.",
"link": "/audio/classification/"
},
{
"name": "Text To Speech",
"description": "Convert text to spoken language.",
"link": "/audio/text-to-speech/"
},
{
"name": "Audio To Audio",
"description": "Apply audio processing to transform one audio signal into another.",
"link": "/audio/audio-to-audio/"
}
]
},
{
"name": "Computer Vision",
"examples": [
{
"name": "Image Classification",
"description": "Classify an image into one of several predefined categories.",
"link": "/cv/image-classification/"
},
{
"name": "Object Detection",
"description": "Detect and classify objects within images.",
"link": "/cv/object-detection/"
},
{
"name": "Image Segmentation",
"description": "Segment images into component parts.",
"link": "/cv/image-segmentation/"
},
{
"name": "Text to Image",
"description": "Generate an image from a text description.",
"link": "/cv/text-to-image/"
}
]
},
{
"name": "Tabular Data",
"examples": [
{
"name": "Tabular Regression",
"description": "Perform regression on tabular data to predict numerical values.",
"link": "/tabular/regression/"
},
{
"name": "Tabular Classification",
"description": "Classify rows of tabular data into predefined categories.",
"link": "/tabular/classification/"
}
]
}
]
const app = createApp({
setup() {
const useCases = ref(UseCases);
return {
useCases,
};
},
});
app.mount("#app");
|