8000 Add support for 30B model and 65B, if it is made in the future (#104) · codefriar/alpaca.cpp@428aa70 · GitHub
[go: up one dir, main page]

Skip to content

Commit 428aa70

Browse files
authored
Add support for 30B model and 65B, if it is made in the future (antimatter15#104)
1 parent 7636ddb commit 428aa70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chat.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
static const std::map<int, int> LLAMA_N_PARTS = {
3333
{ 4096, 1 },
3434
{ 5120, 1 },
35-
{ 6656, 4 },
36-
{ 8192, 8 },
35+
{ 6656, 1 },
36+
{ 8192, 1 },
3737
};
3838

3939
// default hparams (LLaMA 7B)

0 commit comments

Comments
 (0)
0