Commit ·
472cb35
1
Parent(s): b398d65
Upload main-ctx.cpp
Browse files- main-ctx.cpp +1 -1
main-ctx.cpp
CHANGED
|
@@ -17,7 +17,7 @@
|
|
| 17 |
#pragma warning(disable: 4244 4267) // possible loss of data
|
| 18 |
#endif
|
| 19 |
|
| 20 |
-
// default hparams (GPT-2
|
| 21 |
struct gpt_hparams {
|
| 22 |
int32_t n_vocab = 50257; // Vocabulary size remains the same
|
| 23 |
//int32_t n_ctx = 1024; // Maximum context length (sequence length)
|
|
|
|
| 17 |
#pragma warning(disable: 4244 4267) // possible loss of data
|
| 18 |
#endif
|
| 19 |
|
| 20 |
+
// default hparams (GPT-2 774M)
|
| 21 |
struct gpt_hparams {
|
| 22 |
int32_t n_vocab = 50257; // Vocabulary size remains the same
|
| 23 |
//int32_t n_ctx = 1024; // Maximum context length (sequence length)
|