Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -36,6 +36,7 @@ RUN huggingface-cli login --token $HF_TOKEN || true
|
|
| 36 |
|
| 37 |
# Download model into models/ folder
|
| 38 |
RUN huggingface-cli download tiiuae/Falcon3-7B-Instruct-1.58bit-GGUF --local-dir models/
|
|
|
|
| 39 |
|
| 40 |
# Run cmake build process (assumes a CMakeLists.txt is in place)
|
| 41 |
RUN mkdir -p build && cd build && cmake .. && make -j$(nproc)
|
|
|
|
| 36 |
|
| 37 |
# Download model into models/ folder
|
| 38 |
RUN huggingface-cli download tiiuae/Falcon3-7B-Instruct-1.58bit-GGUF --local-dir models/
|
| 39 |
+
RUN python utils/codegen_tl1.py --model bitnet_b1_58-3B --BM 160,320,320 --BK 64,128,64 --bm 32,64,32
|
| 40 |
|
| 41 |
# Run cmake build process (assumes a CMakeLists.txt is in place)
|
| 42 |
RUN mkdir -p build && cd build && cmake .. && make -j$(nproc)
|