Instructions to use MarshallDoyle/NASA-Systems-Engineering with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MarshallDoyle/NASA-Systems-Engineering with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("MarshallDoyle/NASA-Systems-Engineering", dtype="auto") - llama-cpp-python
How to use MarshallDoyle/NASA-Systems-Engineering with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="MarshallDoyle/NASA-Systems-Engineering", filename="unsloth.Q4_K_M.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use MarshallDoyle/NASA-Systems-Engineering with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf MarshallDoyle/NASA-Systems-Engineering:Q4_K_M # Run inference directly in the terminal: llama-cli -hf MarshallDoyle/NASA-Systems-Engineering:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf MarshallDoyle/NASA-Systems-Engineering:Q4_K_M # Run inference directly in the terminal: llama-cli -hf MarshallDoyle/NASA-Systems-Engineering:Q4_K_M
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 MarshallDoyle/NASA-Systems-Engineering:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf MarshallDoyle/NASA-Systems-Engineering:Q4_K_M
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 MarshallDoyle/NASA-Systems-Engineering:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf MarshallDoyle/NASA-Systems-Engineering:Q4_K_M
Use Docker
docker model run hf.co/MarshallDoyle/NASA-Systems-Engineering:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use MarshallDoyle/NASA-Systems-Engineering with Ollama:
ollama run hf.co/MarshallDoyle/NASA-Systems-Engineering:Q4_K_M
- Unsloth Studio new
How to use MarshallDoyle/NASA-Systems-Engineering 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 MarshallDoyle/NASA-Systems-Engineering 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 MarshallDoyle/NASA-Systems-Engineering to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for MarshallDoyle/NASA-Systems-Engineering to start chatting
- Docker Model Runner
How to use MarshallDoyle/NASA-Systems-Engineering with Docker Model Runner:
docker model run hf.co/MarshallDoyle/NASA-Systems-Engineering:Q4_K_M
- Lemonade
How to use MarshallDoyle/NASA-Systems-Engineering with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull MarshallDoyle/NASA-Systems-Engineering:Q4_K_M
Run and chat with the model
lemonade run user.NASA-Systems-Engineering-Q4_K_M
List all available models
lemonade list
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,12 +11,39 @@ language:
|
|
| 11 |
- en
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
| 15 |
|
| 16 |
-
- **Developed by:** MarshallDoyle
|
| 17 |
-
- **License:**
|
| 18 |
-
- **
|
| 19 |
|
| 20 |
-
This
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
- en
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# NASA Systems Engineering LLaMA-3.1 8B Instruct (Fine-Tuned)
|
| 15 |
|
| 16 |
+
- **Developed by:** MarshallDoyle
|
| 17 |
+
- **License:** Apache-2.0
|
| 18 |
+
- **Fine-tuned from model:** unsloth/meta-llama-3.1-8b-instruct-unsloth-bnb-4bit
|
| 19 |
|
| 20 |
+
This model specializes in answering questions and summarizing content from NASA’s *Systems Engineering Handbook* (2018) PDF. It was fine-tuned using Hugging Face’s TRL and LoRA techniques for high efficiency.
|
| 21 |
|
| 22 |
+
## Preview of Fine-Tuning Source
|
| 23 |
+
|
| 24 |
+

|
| 25 |
+
|
| 26 |
+
*(Above: the front page of the NASA Systems Engineering Handbook used for fine-tuning.)*
|
| 27 |
+
|
| 28 |
+
---
|
| 29 |
+
|
| 30 |
+
## Overview
|
| 31 |
+
|
| 32 |
+
**Key Features:**
|
| 33 |
+
|
| 34 |
+
- **Domain Expertise:** Deep understanding of NASA systems engineering lifecycle phases, verification vs. validation testing, and SE best practices.
|
| 35 |
+
- **Compact Footprint:** Keeps the lightweight 8B base model, adding only ~83.8M trainable parameters via LoRA.
|
| 36 |
+
- **Extended Context:** Supports up to 128K tokens for long-form document Q&A.
|
| 37 |
+
|
| 38 |
+
**Intended Use:** Ideal for educational tools, engineering Q&A assistants, mission planning support, and rapid handbook lookup.
|
| 39 |
+
|
| 40 |
+
---
|
| 41 |
+
|
| 42 |
+
## Model Card Updates
|
| 43 |
+
|
| 44 |
+
- Removed Unsloth branding badges in favor of a direct preview of the NASA PDF source.
|
| 45 |
+
- Added a representative image of the handbook’s first page to illustrate the training data.
|
| 46 |
+
|
| 47 |
+
---
|
| 48 |
+
|
| 49 |
+
*
|