|
| 1 | +type ImageGenerationModelType = { |
| 2 | + architecture: string; |
| 3 | + textToImage: boolean; |
| 4 | + imageToImage: boolean; |
| 5 | + loraSupport: boolean; |
| 6 | + links: string[]; |
| 7 | +}; |
| 8 | + |
| 9 | +export const IMAGE_GENERATION_MODELS: ImageGenerationModelType[] = [ |
| 10 | + { |
| 11 | + architecture: 'Latent Consistency Model', |
| 12 | + textToImage: true, |
| 13 | + imageToImage: true, |
| 14 | + loraSupport: true, |
| 15 | + links: ['https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7'], |
| 16 | + }, |
| 17 | + { |
| 18 | + architecture: 'Stable Diffusion', |
| 19 | + textToImage: true, |
| 20 | + imageToImage: true, |
| 21 | + loraSupport: true, |
| 22 | + links: [ |
| 23 | + 'https://huggingface.co/CompVis/stable-diffusion-v1-1', |
| 24 | + 'https://huggingface.co/CompVis/stable-diffusion-v1-2', |
| 25 | + 'https://huggingface.co/CompVis/stable-diffusion-v1-3', |
| 26 | + 'https://huggingface.co/CompVis/stable-diffusion-v1-4', |
| 27 | + 'https://huggingface.co/junnyu/stable-diffusion-v1-4-paddle', |
| 28 | + 'https://huggingface.co/jcplus/stable-diffusion-v1-5', |
| 29 | + 'https://huggingface.co/stable-diffusion-v1-5/stable-diffusion-v1-5', |
| 30 | + 'https://huggingface.co/botp/stable-diffusion-v1-5', |
| 31 | + 'https://huggingface.co/dreamlike-art/dreamlike-anime-1.0', |
| 32 | + 'https://huggingface.co/stabilityai/stable-diffusion-2', |
| 33 | + 'https://huggingface.co/stabilityai/stable-diffusion-2-base', |
| 34 | + 'https://huggingface.co/stabilityai/stable-diffusion-2-1', |
| 35 | + 'https://huggingface.co/bguisard/stable-diffusion-nano-2-1', |
| 36 | + 'https://huggingface.co/justinpinkney/pokemon-stable-diffusion', |
| 37 | + 'https://huggingface.co/stablediffusionapi/architecture-tuned-model', |
| 38 | + 'https://huggingface.co/IDEA-CCNL/Taiyi-Stable-Diffusion-1B-Chinese-EN-v0.1', |
| 39 | + 'https://huggingface.co/ZeroCool94/stable-diffusion-v1-5', |
| 40 | + 'https://huggingface.co/pcuenq/stable-diffusion-v1-4', |
| 41 | + 'https://huggingface.co/rinna/japanese-stable-diffusion', |
| 42 | + 'https://huggingface.co/benjamin-paine/stable-diffusion-v1-5', |
| 43 | + 'https://huggingface.co/philschmid/stable-diffusion-v1-4-endpoints', |
| 44 | + 'https://huggingface.co/naclbit/trinart_stable_diffusion_v2', |
| 45 | + 'https://huggingface.co/Fictiverse/Stable_Diffusion_PaperCut_Model', |
| 46 | + ], |
| 47 | + }, |
| 48 | + { |
| 49 | + architecture: 'Stable Diffusion XL', |
| 50 | + textToImage: true, |
| 51 | + imageToImage: true, |
| 52 | + loraSupport: true, |
| 53 | + links: [ |
| 54 | + 'https://huggingface.co/stabilityai/stable-diffusion-xl-base-0.9', |
| 55 | + 'https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0', |
| 56 | + 'https://huggingface.co/stabilityai/sdxl-turbo', |
| 57 | + ], |
| 58 | + }, |
| 59 | + { |
| 60 | + architecture: 'Stable Diffusion 3', |
| 61 | + textToImage: true, |
| 62 | + imageToImage: false, |
| 63 | + loraSupport: false, |
| 64 | + links: [ |
| 65 | + 'https://huggingface.co/stabilityai/stable-diffusion-3-medium-diffusers', |
| 66 | + 'https://huggingface.co/stabilityai/stable-diffusion-3.5-medium', |
| 67 | + 'https://huggingface.co/stabilityai/stable-diffusion-3.5-large', |
| 68 | + 'https://huggingface.co/stabilityai/stable-diffusion-3.5-large-turbo', |
| 69 | + ], |
| 70 | + }, |
| 71 | + { |
| 72 | + architecture: 'Flux', |
| 73 | + textToImage: true, |
| 74 | + imageToImage: false, |
| 75 | + loraSupport: false, |
| 76 | + links: [ |
| 77 | + 'https://huggingface.co/black-forest-labs/FLUX.1-schnell', |
| 78 | + 'https://huggingface.co/Freepik/flux.1-lite-8B-alpha', |
| 79 | + 'https://huggingface.co/black-forest-labs/FLUX.1-dev', |
| 80 | + 'https://huggingface.co/shuttleai/shuttle-3-diffusion', |
| 81 | + 'https://huggingface.co/shuttleai/shuttle-3.1-aesthetic', |
| 82 | + 'https://huggingface.co/Shakker-Labs/AWPortrait-FL', |
| 83 | + ], |
| 84 | + }, |
| 85 | +]; |
0 commit comments