Skip to content

Commit

Permalink
Add more cerebras models
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler committed Apr 21, 2023
1 parent 39e433b commit f2f3c03
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
matrix:
include:
- model: "ggml-gpt4all-j"
- model: "ggml-cerebras-2.7b-alpaca"
- model: "ggml-cerebras-2.7b-q4"
- model: "ggml-cerebras-testmodel"
runs-on: ubuntu-latest
steps:
- name: Release space from worker
Expand Down
11 changes: 11 additions & 0 deletions ggml-cerebras-2.7b-alpaca/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

set -ex

mkdir models

wget -q -O models/model.bin https://huggingface.co/lxe/Cerebras-GPT-2.7B-Alpaca-SP-ggml/resolve/main/ggml-model-f16.bin

docker build -f ./Dockerfile -t $IMAGE models

rm -rf models
11 changes: 11 additions & 0 deletions ggml-cerebras-2.7b-q4/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

set -ex

mkdir models

wget -q -O models/model.bin https://huggingface.co/concedo/cerebras-2.7b-ggml/resolve/main/cerebras-2.7b-q4_0.bin

docker build -f ./Dockerfile -t $IMAGE models

rm -rf models
11 changes: 11 additions & 0 deletions ggml-cerebras-testmodel/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

set -ex

mkdir models

wget -q -O models/model.bin https://huggingface.co/concedo/cerebras-111M-ggml/resolve/main/cerberas-111m-q4_0.bin

docker build -f ./Dockerfile -t $IMAGE models

rm -rf models

0 comments on commit f2f3c03

Please sign in to comment.