cfahlgren1 HF Staff commited on
Commit
81be3e1
·
1 Parent(s): 25ab921

correct param

Browse files
Files changed (1) hide show
  1. src/pages/index.tsx +5 -2
src/pages/index.tsx CHANGED
@@ -67,12 +67,12 @@ export default function Home() {
67
  Smol<span className="text-red-600">Pilot</span>
68
  </h1>
69
  <p className="text-slate-800 italic text-sm mb-4 mt-2 text-center">
70
- What if you had a 350M parameter model in your pocket?
71
  </p>
72
  {isLoading ? (
73
  <p className="text-center mt-4">{loadingStatus}</p>
74
  ) : (
75
- <div className="flex justify-center mt-10">
76
  <div className="w-full border-2 border-slate-200 shadow-2xl rounded-lg max-w-4xl">
77
  <CodeMirror
78
  placeholder="Type anything to suggest a word"
@@ -88,6 +88,9 @@ export default function Home() {
88
  ]}
89
  />
90
  </div>
 
 
 
91
  </div>
92
  )}
93
  </div>
 
67
  Smol<span className="text-red-600">Pilot</span>
68
  </h1>
69
  <p className="text-slate-800 italic text-sm mb-4 mt-2 text-center">
70
+ What if you had a 360M parameter model in your pocket?
71
  </p>
72
  {isLoading ? (
73
  <p className="text-center mt-4">{loadingStatus}</p>
74
  ) : (
75
+ <div className="flex flex-col items-center mt-10">
76
  <div className="w-full border-2 border-slate-200 shadow-2xl rounded-lg max-w-4xl">
77
  <CodeMirror
78
  placeholder="Type anything to suggest a word"
 
88
  ]}
89
  />
90
  </div>
91
+ <p className="text-slate-800 italic text-sm mt-2 text-center">
92
+ Keep in mind, this is a 360M parameter model, it's not Llama 3.1 405B 🤗
93
+ </p>
94
  </div>
95
  )}
96
  </div>