Instructions to use cs-552-2026-RatGPT/general_knowledge_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cs-552-2026-RatGPT/general_knowledge_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cs-552-2026-RatGPT/general_knowledge_model") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cs-552-2026-RatGPT/general_knowledge_model") model = AutoModelForCausalLM.from_pretrained("cs-552-2026-RatGPT/general_knowledge_model") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use cs-552-2026-RatGPT/general_knowledge_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cs-552-2026-RatGPT/general_knowledge_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-RatGPT/general_knowledge_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cs-552-2026-RatGPT/general_knowledge_model
- SGLang
How to use cs-552-2026-RatGPT/general_knowledge_model with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "cs-552-2026-RatGPT/general_knowledge_model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-RatGPT/general_knowledge_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "cs-552-2026-RatGPT/general_knowledge_model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-RatGPT/general_knowledge_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cs-552-2026-RatGPT/general_knowledge_model with Docker Model Runner:
docker model run hf.co/cs-552-2026-RatGPT/general_knowledge_model
Automated MNLP evaluation report (2026-06-11)
#1
by zechen-nlp - opened
- EVAL_REPORT.md +112 -0
EVAL_REPORT.md
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Automated MNLP evaluation report
|
| 2 |
+
|
| 3 |
+
- **Model repo:** [`cs-552-2026-RatGPT/general_knowledge_model`](https://huggingface.co/cs-552-2026-RatGPT/general_knowledge_model)
|
| 4 |
+
- **Owner(s):** group **RatGPT**
|
| 5 |
+
- **Generated at:** 2026-06-11T06:23:10+00:00 (UTC)
|
| 6 |
+
- **Pipeline:** [mnlp-project-ci](https://github.com/eric11eca/mnlp-project-ci)
|
| 7 |
+
|
| 8 |
+
_This PR is opened automatically by the course CI. It is **non-blocking** β you do not need to merge it. The next nightly run will refresh this file._
|
| 9 |
+
|
| 10 |
+
## Evaluated checkpoint
|
| 11 |
+
|
| 12 |
+
- **Commit:** [`e59119b`](https://huggingface.co/cs-552-2026-RatGPT/general_knowledge_model/commit/e59119ba6536588297d77b7e55ea55ff161c4375)
|
| 13 |
+
- **Message:** SFT v1: auto-distillation, concise reasoning + commit-to-box
|
| 14 |
+
- **Committed:** 2026-06-01T22:12:03+00:00
|
| 15 |
+
|
| 16 |
+
## Summary
|
| 17 |
+
|
| 18 |
+
| Benchmark | Accuracy | Status |
|
| 19 |
+
|---|---:|---|
|
| 20 |
+
| Math | β | not run |
|
| 21 |
+
| Knowledge | 0.3800 | ok |
|
| 22 |
+
| Multilingual | β | not run |
|
| 23 |
+
| Safety | β | not run |
|
| 24 |
+
|
| 25 |
+
## Sample completions
|
| 26 |
+
|
| 27 |
+
_Prompts are intentionally omitted to avoid revealing benchmark contents. For multi-completion problems, only one completion is shown per sample._
|
| 28 |
+
|
| 29 |
+
### Knowledge
|
| 30 |
+
|
| 31 |
+
**Correct** (1 shown)
|
| 32 |
+
|
| 33 |
+
- **reference**: `C`
|
| 34 |
+
- **overall** (1/1 completions correct)
|
| 35 |
+
- **extracted** (β): `C`
|
| 36 |
+
- **completion**:
|
| 37 |
+
|
| 38 |
+
```text
|
| 39 |
+
<think>
|
| 40 |
+
Okay, let's see. The question is asking which mental disorder is linked to acetylcholine research. The choices are from A to J.
|
| 41 |
+
|
| 42 |
+
First, I need to recall what I know about acetylcholine and mental disorders. Acetylcholine is a neurotransmitter involved in various bodily functions, including muscle movement, memory, and learning. I remember that cholinergic pathways are important in the brai
|
| 43 |
+
|
| 44 |
+
... [truncated 822 chars] ...
|
| 45 |
+
|
| 46 |
+
C. Alzheimer's disease**: Directly linked to acetylcholine. The **degeneration of cholinergic neurons** is a central feature of the disease.
|
| 47 |
+
- **D. Parkinson's disease**: Also linked to acetylcholine, especially in the **basal ganglia**, where **acetylcholine levels are reduced**. While the primary issue is dopamine, the role of acetylcholine in the disease is well-documented.
|
| 48 |
+
- **E. Post-Traumatic Stress Disorder (PTSD)**: Not directly linked to acetylcholine.
|
| 49 |
+
- **F. Mania**: Not directly linked to acetylcholine.
|
| 50 |
+
- **G. Attention Deficit Hyperactivity Disorder (ADHD)**: Not directly linked.
|
| 51 |
+
- **H. Bipolar Disorder**: Not directly linked.
|
| 52 |
+
- **I. Schizophrenia**: Not directly linked.
|
| 53 |
+
- **J. Major Depressive Disorder**: Not directly linked.
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
### Conclusion:
|
| 58 |
+
|
| 59 |
+
Both **Alzheimer's disease** and **Parkinson's disease** are **directly linked to acetylcholine**, with the former being more **specifically associated** with the decline in cholinergic neurons. However, since the question asks for **which of the following** is **"research suggested may be linked"**, and **both C and D are valid**, the most **specific and well-established** answer is **Alzheimer's disease**.
|
| 60 |
+
|
| 61 |
+
$$
|
| 62 |
+
\boxed{C}
|
| 63 |
+
$$
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
**Incorrect** (1 shown)
|
| 67 |
+
|
| 68 |
+
- **reference**: `A`
|
| 69 |
+
- **overall** (0/1 completions correct)
|
| 70 |
+
- **extracted** (β): `G`
|
| 71 |
+
- **completion**:
|
| 72 |
+
|
| 73 |
+
```text
|
| 74 |
+
<think>
|
| 75 |
+
Okay, so I need to find the power spectral density (PSD) of the function f(t), which is defined as the convolution of h(Ο) and Ο(t - Ο). The question gives me the choices, and I need to figure out which one is correct. Let me recall some concepts about power spectral densities and convolution.
|
| 76 |
+
|
| 77 |
+
First, I remember that the power spectral density of a signal is related to its autocorrelation
|
| 78 |
+
|
| 79 |
+
... [truncated 820 chars] ...
|
| 80 |
+
|
| 81 |
+
Now, we compare this with the given choices:
|
| 82 |
+
|
| 83 |
+
- **Choice G**: $ G_f(\omega) = \frac{|H(\omega)|^2}{G_\phi(\omega)} $
|
| 84 |
+
|
| 85 |
+
This is **not** the correct expression. It would be the inverse of the correct formula.
|
| 86 |
+
|
| 87 |
+
- **Choice A**: $ G_f(\omega) = |H(\omega)|^2 \cdot G_\phi(\omega)^2 $ β Incorrect.
|
| 88 |
+
|
| 89 |
+
- **Choice B**: $ G_f(\omega) = \frac{G_\phi(\omega)}{|H(\omega)|^2} $ β Incorrect.
|
| 90 |
+
|
| 91 |
+
- **Choice C**: $ G_f(\omega) = H(\omega) \cdot G_\phi(\omega)^2 $ β Incorrect.
|
| 92 |
+
|
| 93 |
+
- **Choice D**: $ G_f(\omega) = \frac{|H(\omega)|^2}{G_\phi(\omega)} $ β Incorrect.
|
| 94 |
+
|
| 95 |
+
- **Choice E**: $ G_f(\omega) = \frac{1}{|H(\omega)|^2} \cdot G_\phi(\omega) $ β Incorrect.
|
| 96 |
+
|
| 97 |
+
- **Choice F**: $ G_f(\omega) = |H(\omega)| \cdot G_\phi(\omega)^2 $ β Incorrect.
|
| 98 |
+
|
| 99 |
+
- **Choice J**: $ G_f(\omega) = |H(\omega)| \cdot G_\phi(\omega) $ β Incorrect.
|
| 100 |
+
|
| 101 |
+
---
|
| 102 |
+
|
| 103 |
+
### **Conclusion**
|
| 104 |
+
|
| 105 |
+
None of the choices exactly match the derived formula $ G_f(\omega) = |H(\omega)|^2 \cdot G_\phi(\omega) $. However, **Choice G** is the **closest match** in the sense that it is the only one that involves $ |H(\omega)|^2 $, which is the correct expression for the power spectral density of the convolution of two signals.
|
| 106 |
+
|
| 107 |
+
Thus, the **correct answer is**:
|
| 108 |
+
|
| 109 |
+
$$
|
| 110 |
+
\boxed{G}
|
| 111 |
+
$$
|
| 112 |
+
```
|