File size: 2,461 Bytes
8547679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e4bcb01
 
 
 
 
 
 
 
8547679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658ede0
8547679
76152e8
8547679
658ede0
8547679
 
 
0221e89
 
 
8547679
 
 
 
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
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>MiniT2I</title>
    <style>
      :root {
        color-scheme: light dark;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      body {
        margin: 0;
        min-height: 100vh;
        display: grid;
        place-items: center;
        background: #f6f7f9;
        color: #1f2937;
      }

      main {
        width: min(760px, calc(100% - 48px));
        padding: 48px 0;
      }

      h1 {
        margin: 0 0 12px;
        font-size: 40px;
        line-height: 1.05;
      }

      p {
        margin: 0 0 20px;
        font-size: 17px;
        line-height: 1.65;
      }

      a {
        color: #4f46e5;
        font-weight: 650;
        text-decoration: none;
      }

      ul {
        margin: 24px 0 0;
        padding-left: 20px;
        line-height: 1.9;
      }

      img.teaser {
        display: block;
        width: 100%;
        height: auto;
        margin: 24px 0 8px;
        border-radius: 12px;
      }

      @media (prefers-color-scheme: dark) {
        body {
          background: #111827;
          color: #e5e7eb;
        }

        a {
          color: #a5b4fc;
        }
      }
    </style>
  </head>
  <body>
    <main>
      <h1>MiniT2I</h1>
      <p>
        Introducing <strong>MiniT2I</strong>: a simple pixel-space text-to-image generator baseline. Please use the project links below to navigate.
      </p>
      <img class="teaser" src="https://huggingface.co/spaces/MiniT2I/README/resolve/main/teaser.png" alt="MiniT2I teaser: a gallery of text-to-image samples" />
      <ul>
        <li><a href="https://peppaking8.github.io/#/post/minit2i">Blog post</a></li>
        <li><a href="https://github.com/Hope7Happiness/t2i-release">PyTorch/Diffusers code</a></li>
        <li><a href="https://github.com/PeppaKing8/minit2i-jax">JAX code</a></li>
        <li><a href="https://huggingface.co/MiniT2I/MiniT2I">PyTorch checkpoints</a></li>
        <li><a href="https://huggingface.co/MiniT2I/MiniT2I-B-16-jax">JAX B/16 checkpoint</a></li>
        <li><a href="https://huggingface.co/MiniT2I/MiniT2I-L-16-jax">JAX L/16 checkpoint</a></li>
        <li><a href="https://huggingface.co/MiniT2I/MiniT2I-B-16-MF-jax">JAX B/16-MF checkpoint</a></li>
      </ul>
    </main>
  </body>
</html>