MDIIII commited on
Commit
e21828b
·
verified ·
1 Parent(s): 4d0282b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: build-small-hackathon/MiniCPM4-8B-PaperProf
4
+ tags:
5
+ - gguf
6
+ - llama.cpp
7
+ - question-generation
8
+ - education
9
+ - paperprof
10
+ language:
11
+ - en
12
+ ---
13
+
14
+ # MiniCPM4-8B-PaperProf-GGUF
15
+
16
+ GGUF quantizations of [build-small-hackathon/MiniCPM4-8B-PaperProf](https://huggingface.co/build-small-hackathon/MiniCPM4-8B-PaperProf),
17
+ the fine-tuned exam-question generator behind
18
+ [PaperProf](https://huggingface.co/spaces/build-small-hackathon/PaperProf).
19
+
20
+ | File | Quant | Size | Use |
21
+ |---|---|---|---|
22
+ | `minicpm4-8b-paperprof-Q4_K_M.gguf` | Q4_K_M | ~4.9 GB | recommended, used by the Space |
23
+ | `minicpm4-8b-paperprof-f16.gguf` | F16 | ~16 GB | full precision reference |
24
+
25
+ ## Usage with llama.cpp
26
+
27
+ ```bash
28
+ llama-cli -hf build-small-hackathon/MiniCPM4-8B-PaperProf-GGUF -p "your prompt"
29
+ ```
30
+
31
+ ## Usage with llama-cpp-python
32
+
33
+ ```python
34
+ from llama_cpp import Llama
35
+ llm = Llama.from_pretrained("build-small-hackathon/MiniCPM4-8B-PaperProf-GGUF", filename="*Q4_K_M.gguf", n_gpu_layers=-1)
36
+ ```
37
+
38
+ Built for the Build Small Hackathon, June 2026, by Team PaperProf (EPITA).