Instructions to use CodeIsAbstract/language_parser-Q8_0-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use CodeIsAbstract/language_parser-Q8_0-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="CodeIsAbstract/language_parser-Q8_0-GGUF", filename="language_parser-q8_0.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use CodeIsAbstract/language_parser-Q8_0-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: llama-cli -hf CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: llama-cli -hf CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0
Use Docker
docker model run hf.co/CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0
- LM Studio
- Jan
- Ollama
How to use CodeIsAbstract/language_parser-Q8_0-GGUF with Ollama:
ollama run hf.co/CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0
- Unsloth Studio
How to use CodeIsAbstract/language_parser-Q8_0-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for CodeIsAbstract/language_parser-Q8_0-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for CodeIsAbstract/language_parser-Q8_0-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for CodeIsAbstract/language_parser-Q8_0-GGUF to start chatting
- Docker Model Runner
How to use CodeIsAbstract/language_parser-Q8_0-GGUF with Docker Model Runner:
docker model run hf.co/CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0
- Lemonade
How to use CodeIsAbstract/language_parser-Q8_0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull CodeIsAbstract/language_parser-Q8_0-GGUF:Q8_0
Run and chat with the model
lemonade run user.language_parser-Q8_0-GGUF-Q8_0
List all available models
lemonade list
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,6 +9,79 @@ tags:
|
|
| 9 |
This model was converted to GGUF format from [`CodeIsAbstract/language_parser`](https://huggingface.co/CodeIsAbstract/language_parser) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
| 10 |
Refer to the [original model card](https://huggingface.co/CodeIsAbstract/language_parser) for more details on the model.
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
## Use with llama.cpp
|
| 13 |
Install llama.cpp through brew (works on Mac and Linux)
|
| 14 |
|
|
|
|
| 9 |
This model was converted to GGUF format from [`CodeIsAbstract/language_parser`](https://huggingface.co/CodeIsAbstract/language_parser) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
| 10 |
Refer to the [original model card](https://huggingface.co/CodeIsAbstract/language_parser) for more details on the model.
|
| 11 |
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
USAGE:
|
| 16 |
+
|
| 17 |
+
user prompt:
|
| 18 |
+
<data>human natural language data</data>
|
| 19 |
+
<format type=xml/yaml/json>
|
| 20 |
+
field name: value_type
|
| 21 |
+
..
|
| 22 |
+
</format>
|
| 23 |
+
|
| 24 |
+
example:
|
| 25 |
+
```
|
| 26 |
+
<format type="yaml">
|
| 27 |
+
{submission_id: string, paper_title: string, review_round: number, submission_status: string, final_editor_decision_details: {decision_type: string, decision_date: date, editor_notes: string optional}, reviewers_feedback: [{reviewer_id: string, review_date: date, overall_score: number optional, contribution_summary: {novelty_assessment: string, rigor_assessment: string, clarity_assessment: string, ethical_concerns_raised: boolean}, specific_areas_for_improvement: [{section: string, issue_type: string, original_text_quote: string optional, suggested_change: string, severity: string}], confidential_comments: string optional}]}
|
| 28 |
+
</format>
|
| 29 |
+
|
| 30 |
+
<data>
|
| 31 |
+
**CONFIDENTIAL EDITORIAL REPORT**
|
| 32 |
+
|
| 33 |
+
**Subject:** Editorial Decision on Manuscript MS-2022-493-R2
|
| 34 |
+
**Title:** "Start Sit Put Prevent Room Return Law Pay Memory Than: Organized optimizing complexity"
|
| 35 |
+
|
| 36 |
+
This memo summarizes the outcome of review round 2. The final editorial decision of 'Major Revisions' was recorded on 2025-08-14, updating the manuscript's status to 'Major Revisions Required'. The handling editor's summary note states: "Opportunity hear can else course oil. Interest Democrat try. Figure evidence bad middle off call." This assessment reflects the consensus drawn from the 4 peer reviews received. Our internal analytics suggest this manuscript's topic is trending, which might explain the diverse reviewer opinions.
|
| 37 |
+
|
| 38 |
+
**Review Panel Feedback Synthesis:**
|
| 39 |
+
--------------------------------------
|
| 40 |
+
|
| 41 |
+
**Reviewer 1 (ID: RVR-T-996)** submitted their evaluation on 2024-11-17.
|
| 42 |
+
They provided an overall score of 4/10. Their assessment highlighted the work's novelty as 'fair' and its methodological rigor as 'poor'. Primary points for revision included:
|
| 43 |
+
- A 'suggestion' issue of type 'Grammar' was identified in the 'Discussion' section. The suggested action is to: "Best phone stuff accept place black describe white."
|
| 44 |
+
The comment seems to target text similar to '...Increase size public next put deal low a number similar....'.
|
| 45 |
+
- A 'suggestion' issue of type 'Unclear_Argument' was identified in the 'Methods' section. The suggested action is to: "Better partner treat decision cost around receive stock tree cup major born them character forget."
|
| 46 |
+
The comment seems to target text similar to '...Them eat middle hotel impact tree radio recognize....'.
|
| 47 |
+
- A 'minor' issue of type 'Methodological_Flaw' was identified in the 'Conclusion' section. The suggested action is to: "Scene source action to usually it majority radio chance page article where somebody."
|
| 48 |
+
|
| 49 |
+
*Confidential Note to Editor:* Be partner financial fill. Scene power head year gun TV decade.
|
| 50 |
+
|
| 51 |
+
**Reviewer 2 (ID: RVR-T-282)** submitted their evaluation on 2024-12-08.
|
| 52 |
+
They provided an overall score of 10/10. Their assessment highlighted the work's novelty as 'high' and its methodological rigor as 'good'. Primary points for revision included:
|
| 53 |
+
- A 'suggestion' issue of type 'Methodological_Flaw' was identified in the 'Abstract' section. The suggested action is to: "Though movement build will impact because nothing keep stop quality contain guess family teach conference."
|
| 54 |
+
The comment seems to target text similar to '...Difficult former continue eye yourself usually change maybe year learn throughout ahead....'.
|
| 55 |
+
- A 'critical' issue of type 'Formatting' was identified in the 'Overall' section. The suggested action is to: "Improve detail this no social method begin continue eye unit white eye position common discuss only read arm source hard oil feeling project bar opportunity series certain."
|
| 56 |
+
The comment seems to target text similar to '...Garden reveal ball surface growth power....'.
|
| 57 |
+
|
| 58 |
+
*Confidential Note to Editor:* Western though doctor. Speech soon explain whatever.
|
| 59 |
+
|
| 60 |
+
**Reviewer 3 (ID: RVR-D-397)** submitted their evaluation on 2025-06-18.
|
| 61 |
+
They provided an overall score of 6/10. Their assessment highlighted the work's novelty as 'poor' and its methodological rigor as 'medium'. Primary points for revision included:
|
| 62 |
+
- A 'minor' issue of type 'Literature_Gap' was identified in the 'Results' section. The suggested action is to: "Phone star happy capital series tax model analysis."
|
| 63 |
+
- A 'major' issue of type 'Formatting' was identified in the 'Methods' section. The suggested action is to: "Style half issue agency decision nor player risk man produce skin lead author particular nation old."
|
| 64 |
+
- A 'major' issue of type 'Methodological_Flaw' was identified in the 'Discussion' section. The suggested action is to: "Note not safe mention too ahead visit tax."
|
| 65 |
+
The comment seems to target text similar to '...Character common from ever daughter beyond how relationship country century generation space feeling free candidate mouth probably....'.
|
| 66 |
+
- A 'major' issue of type 'Scope' was identified in the 'Abstract' section. The suggested action is to: "Member who summer industry imagine network sure back tree movie play someone father season happen bar first ago defense."
|
| 67 |
+
|
| 68 |
+
**Reviewer 4 (ID: RVR-C-823)** submitted their evaluation on 2025-04-17.
|
| 69 |
+
Their assessment highlighted the work's novelty as 'good' and its methodological rigor as 'bad'. Primary points for revision included:
|
| 70 |
+
- A 'suggestion' issue of type 'Unclear_Argument' was identified in the 'Introduction' section. The suggested action is to: "Hour range increase line shoulder lead fast significant high human particularly."
|
| 71 |
+
The comment seems to target text similar to '...Performance receive radio beat dinner after next....'.
|
| 72 |
+
- A 'major' issue of type 'Unclear_Argument' was identified in the 'Abstract' section. The suggested action is to: "Allow notice season teach ground soldier indeed four majority day center ask show difficult may despite modern single apply phone."
|
| 73 |
+
The comment seems to target text similar to '...Recent drive traditional test every media line between finish reality bit fall teach require....'.
|
| 74 |
+
|
| 75 |
+
*Confidential Note to Editor:* Factor best share wife current. Consider movement first prepare technology.
|
| 76 |
+
|
| 77 |
+
**Conclusion:** The compiled feedback provides a clear path forward for the authors. This review cycle was completed slightly behind our quarterly schedule, an issue we're addressing with new workflow management software being rolled out next month. The decision letter is now ready for dispatch.
|
| 78 |
+
</data>
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
try response for yourself.
|
| 83 |
+
|
| 84 |
+
|
| 85 |
## Use with llama.cpp
|
| 86 |
Install llama.cpp through brew (works on Mac and Linux)
|
| 87 |
|