Spaces:
Paused
Paused
Commit
·
807f959
1
Parent(s):
daa1882
wasm experiment
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -13,7 +13,7 @@ RUN pip install --upgrade pip && \
|
|
13 |
pip install -r requirements.txt
|
14 |
|
15 |
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
16 |
-
RUN apt-get install git-lfs
|
17 |
|
18 |
RUN git clone https://github.com/ggerganov/ggml && cd ggml && mkdir build && cd build && cmake ..
|
19 |
RUN git clone https://huggingface.co/bigcode/gpt_bigcode-santacoder
|
@@ -21,6 +21,7 @@ RUN python ggml/examples/starcoder/convert-hf-to-ggml.py ./gpt_bigcode-santacode
|
|
21 |
RUN cd ggml/build && make -j4 starcoder starcoder-quantize
|
22 |
|
23 |
RUN ggml/build/bin/starcoder-quantize models/./gpt_bigcode-santacoder/-ggml.bin ggml-model-q4_0.bin 2
|
|
|
24 |
|
25 |
COPY . .
|
26 |
|
|
|
13 |
pip install -r requirements.txt
|
14 |
|
15 |
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
16 |
+
RUN apt-get install git-lfs emcc
|
17 |
|
18 |
RUN git clone https://github.com/ggerganov/ggml && cd ggml && mkdir build && cd build && cmake ..
|
19 |
RUN git clone https://huggingface.co/bigcode/gpt_bigcode-santacoder
|
|
|
21 |
RUN cd ggml/build && make -j4 starcoder starcoder-quantize
|
22 |
|
23 |
RUN ggml/build/bin/starcoder-quantize models/./gpt_bigcode-santacoder/-ggml.bin ggml-model-q4_0.bin 2
|
24 |
+
RUN emcc -I../../include -I../../include/ggml -I../../examples ../../src/ggml.c main.cpp -o web/santacoder.js -s EXPORTED_FUNCTIONS='["_wasm_eval","_wasm_random_digit","_malloc","_free"]' -s EXPORTED_RUNTIME_METHODS='["ccall"]' -s ALLOW_MEMORY_GROWTH=1 --preload-file ggml-model-q4_0.bin
|
25 |
|
26 |
COPY . .
|
27 |
|