Text Generation
Transformers
English
Llama-4
transformer
code-generation
c++
computer-science
educational
visual-studio
open-source
student-assistant
Eval Results (legacy)
Instructions to use JSR-0003/Computer-Science_All-Courses-Guru with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JSR-0003/Computer-Science_All-Courses-Guru with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="JSR-0003/Computer-Science_All-Courses-Guru")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("JSR-0003/Computer-Science_All-Courses-Guru", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use JSR-0003/Computer-Science_All-Courses-Guru with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "JSR-0003/Computer-Science_All-Courses-Guru" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "JSR-0003/Computer-Science_All-Courses-Guru", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/JSR-0003/Computer-Science_All-Courses-Guru
- SGLang
How to use JSR-0003/Computer-Science_All-Courses-Guru 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 "JSR-0003/Computer-Science_All-Courses-Guru" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "JSR-0003/Computer-Science_All-Courses-Guru", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "JSR-0003/Computer-Science_All-Courses-Guru" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "JSR-0003/Computer-Science_All-Courses-Guru", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use JSR-0003/Computer-Science_All-Courses-Guru with Docker Model Runner:
docker model run hf.co/JSR-0003/Computer-Science_All-Courses-Guru
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,62 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: llama4
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: llama4
|
| 3 |
+
datasets:
|
| 4 |
+
- ComputerScienceHouse/GroceryInContext
|
| 5 |
+
- Lots-of-LoRAs/task701_mmmlu_answer_generation_high_school_computer_science
|
| 6 |
+
- AyoubChLin/ARxiv_Metadata_ComputerScience
|
| 7 |
+
- 5CD-AI/Viet-ComputerScience-VQA
|
| 8 |
+
- shibarashii/general-computer-science-queries
|
| 9 |
+
- Kaeyze/computer-science-synthetic-dataset
|
| 10 |
+
- Danhpham2000/computer_science_qa_dataset
|
| 11 |
+
- masoudc/mmlu-college-computer-science-compilers
|
| 12 |
+
- masoudc/mmlu-college-computer-science-distribution-parallelism
|
| 13 |
+
- Lots-of-LoRAs/task688_mmmlu_answer_generation_college_computer_science
|
| 14 |
+
- >-
|
| 15 |
+
DataoceanAI/University-level_Mathematics_Physics_Chemistry_Computer_Science_Reasoning_Corpus
|
| 16 |
+
- SukrutAI/Computer-Science-Parallel-Dataset-Indic
|
| 17 |
+
- SukrutAI/Computer-Science-Conversational-Dataset-Indic
|
| 18 |
+
- herronej/SciTrust2-ComputerScienceQA
|
| 19 |
+
- anonymous-paper-author/original_mmlu_pro_computerscience
|
| 20 |
+
- >-
|
| 21 |
+
anonymous-paper-author/anonymous-paper-author_reproduction_o4mini_computerscience
|
| 22 |
+
- >-
|
| 23 |
+
anonymous-paper-author/anonymous-paper-author_reproduction_deepseekr1_computerscience
|
| 24 |
+
- >-
|
| 25 |
+
anonymous-paper-author/anonymous-paper-author_reproduction_g3_mini_computerscience
|
| 26 |
+
- >-
|
| 27 |
+
anonymous-paper-author/anonymous-paper-author_reproduction_qwen235b_computerscience
|
| 28 |
+
- Jenjamin3000/RAG_documents_computer_science
|
| 29 |
+
- cristiano-sartori/college_computer_science
|
| 30 |
+
- cristiano-sartori/high_school_computer_science
|
| 31 |
+
- gabrieljimenez/wikipedia-english-handpicked-computer-science
|
| 32 |
+
- gabrieljimenez/epfl-computer-science-mcqa
|
| 33 |
+
- japan-ai-official/jmmlu-curated-computer-science
|
| 34 |
+
- paperlantern/computer_science_ai_search_queries
|
| 35 |
+
- paperlantern/computer_science_non_ai_search_queries
|
| 36 |
+
- joey234/mmlu-college_computer_science-neg
|
| 37 |
+
- joey234/mmlu-high_school_computer_science-neg
|
| 38 |
+
- joey234/mmlu-college_computer_science-neg-prepend
|
| 39 |
+
- joey234/mmlu-high_school_computer_science-neg-prepend
|
| 40 |
+
- joey234/mmlu-college_computer_science-verbal-neg-prepend
|
| 41 |
+
- joey234/mmlu-high_school_computer_science-verbal-neg-prepend
|
| 42 |
+
- joey234/mmlu-college_computer_science-rule-neg-prepend
|
| 43 |
+
- joey234/mmlu-high_school_computer_science-rule-neg-prepend
|
| 44 |
+
- joey234/mmlu-college_computer_science-original-neg
|
| 45 |
+
- joey234/mmlu-high_school_computer_science-original-neg
|
| 46 |
+
- joey234/mmlu-college_computer_science-original-neg-prepend
|
| 47 |
+
- joey234/mmlu-high_school_computer_science-original-neg-prepend
|
| 48 |
+
- joey234/mmlu-college_computer_science-neg-answer
|
| 49 |
+
- joey234/mmlu-high_school_computer_science-neg-answer
|
| 50 |
+
- joey234/mmlu-college_computer_science
|
| 51 |
+
- joey234/mmlu-high_school_computer_science-dev
|
| 52 |
+
- awsebbas/QA_computer_science
|
| 53 |
+
- joey234/mmlu-college_computer_science-neg-prepend-fix
|
| 54 |
+
- joey234/mmlu-high_school_computer_science-neg-prepend-fix
|
| 55 |
+
- joey234/mmlu-college_computer_science-neg-prepend-verbal
|
| 56 |
+
- brucewlee1/mmlu-high-school-computer-science
|
| 57 |
+
- brucewlee1/mmlu-college-computer-science
|
| 58 |
+
- samehuss/Computersciencewords
|
| 59 |
+
- barath13/computerscience91
|
| 60 |
+
- Puidii/aalen_university_faculty_computer_science
|
| 61 |
+
- AlaaElhilo/Wikipedia_ComputerScience
|
| 62 |
+
---
|