peihsin0715
Add all project files for HF Spaces deployment
7c447a5
raw
history blame contribute delete
597 Bytes
import type { Dataset, Model } from '../types';
export const DATASETS: Dataset[] = [
{ id: 'AmazonScience/bold', name: 'BOLD' }
];
export const LM_MODELS: Model[] = [
{ id: 'microsoft/DialoGPT-large', name: 'DialoGPT-large', type: 'language', description: 'Microsoft 對話生成模型', provider: 'Microsoft' },
{ id: 'openai-community/gpt2', name: 'GPT-2', type: 'language', description: 'OpenAI GPT-2 基礎模型', provider: 'OpenAI' },
{ id: 'EleutherAI/gpt-neo-2.7B', name: 'GPT-Neo-2.7B', type: 'language', description: 'EleutherAI 開源語言模型', provider: 'EleutherAI' }
];