Harness-1B
Developed by Algo Science Lab
Author: Shahrear Hossain
Harness-1B
Harness-1B is a lightweight large language model developed by Algo Science Lab for instruction following, coding assistance, reasoning, mathematics, electronics, semiconductor engineering, VLSI design, and general conversational AI.
The model contains approximately 1 billion parameters, making it suitable for local deployment while providing strong performance for everyday AI tasks.
Harness-1B has been fine-tuned to provide accurate, helpful, and concise responses across a wide variety of technical and general domains.
Features
- General conversation
- Code generation
- Python programming
- C programming
- C++ programming
- Rust programming
- Java programming
- JavaScript
- TypeScript
- Verilog HDL
- SystemVerilog
- VHDL
- RTL Design
- FPGA Development
- ASIC Design
- CMOS Digital Design
- Semiconductor Engineering
- VLSI Design
- Mathematics
- Electronics
- Physics
- Problem Solving
- Technical Documentation
- AI Research Assistance
Model Details
| Property | Value |
|---|
| Model Name | Harness-1B |
| Organization | Algo Science Lab |
| Hugging Face Username | algoscienceacademy |
| Parameters | ~1 Billion |
| Architecture | Llama-based |
| Model Type | Causal Language Model |
| Context Length | 2048 Tokens (or your trained context size) |
| Precision | FP16 / BF16 / GGUF |
| Framework | PyTorch |
| License | Apache-2.0 |
Intended Uses
Harness-1B is designed for:
- AI Chatbots
- Programming Assistant
- Educational Applications
- Research
- Embedded AI
- Local AI Deployment
- Engineering Assistance
- Electronics Design
- FPGA Development
- ASIC/VLSI Workflow
- RTL Development
- Automation
- Documentation
Example
1from transformers import pipeline
2
3pipe = pipeline(
4 "text-generation",
5 model="algoscienceacademy/Harness-1B",
6 device_map="auto"
7)
8
9messages = [
10 {
11 "role": "system",
12 "content": "You are Harness, an AI assistant created by Algo Science Lab."
13 },
14 {
15 "role": "user",
16 "content": "Write a Python program to print Fibonacci numbers."
17 }
18]
19
20prompt = pipe.tokenizer.apply_chat_template(
21 messages,
22 tokenize=False,
23 add_generation_prompt=True
24)
25
26output = pipe(
27 prompt,
28 max_new_tokens=256,
29 temperature=0.7,
30)
31
32print(output[0]["generated_text"])
GGUF Usage
Harness-1B is also available in GGUF format for:
- llama.cpp
- LM Studio
- Jan
- Open WebUI
- KoboldCpp
- Ollama (after conversion)
Example:
1./main \
2-m Harness-1B-Q4_K_M.gguf \
3-p "Explain CMOS Inverter."
Training
Harness-1B is trained and fine-tuned using open-source datasets and instruction-following techniques.
Possible data sources include:
- SlimPajama
- StarCoderData
- UltraChat
- UltraFeedback
Additional custom datasets may have been used during supervised fine-tuning.
Capabilities
Harness-1B can:
- Answer questions
- Explain concepts
- Generate code
- Debug code
- Write documentation
- Solve mathematics
- Explain algorithms
- Assist with VLSI
- Help with FPGA design
- Generate Verilog
- Generate SystemVerilog
- Produce technical reports
Limitations
Harness-1B may:
- Produce incorrect information.
- Generate outdated knowledge.
- Make reasoning mistakes.
- Require verification for safety-critical applications.
- Require human review for production environments.
Hardware Requirements
Recommended:
- 8 GB RAM (Q4 GGUF)
- 12 GB RAM (Q6 GGUF)
- 16 GB RAM (FP16)
- CUDA GPU recommended but optional
Citation
1@misc{Harness1B,
2 title={Harness-1B},
3 author={Algo Science Lab},
4 year={2026},
5 publisher={Hugging Face},
6 howpublished={https://huggingface.co/algoscienceacademy/Harness-1B}
7}
License
Apache License 2.0
Acknowledgements
Harness-1B builds upon open-source language model research and would not be possible without the work of the open-source AI community, including:
- Meta AI (Llama Architecture)
- TinyLlama Project
- Hugging Face
- PyTorch
- Transformers
- llama.cpp
Contact
Organization: Algo Science Lab
Made with ❤️ by Algo Science Lab.