Views
No views yet
| Developed by | Jack Al-Kahwati / Stardrive |
| Funded by | ⬜️ (Self-funded) |
| Shared by | jackal79 (Hugging Face) |
| Model type | LoRA adapter (peft==0.10.0) |
| Languages | English |
| License | TLE-Orbit-NonCommercial v1.0 (custom terms) |
| Finetuned from | Qwen/Qwen1.5-7B |
| Category | Note |
|---|---|
| Data bias | Trained primarily on decayed objects (DECAY = 1), possibly underestimating longevity for active satellites. |
| Temporal limits | Operates on snapshot data; does not handle continuous high-frequency time-series. |
| Language | Supports explanations in English only. |
| Accuracy | Potential inaccuracies in decay date predictions; verify independently. |
1from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
2from peft import PeftModel
3
4base = "Qwen/Qwen1.5-7B"
5lora = "jackal79/tle-orbit-explainer"
6
7tok = AutoTokenizer.from_pretrained(base)
8model = AutoModelForCausalLM.from_pretrained(base, device_map="auto")
9model = PeftModel.from_pretrained(model, lora) # merges LoRA
10
11pipe = pipeline("text-generation", model=model, tokenizer=tok, device=0)
12
13prompt = """### Prompt:
141 25544U 98067A 24079.07757601 .00016717 00000+0 10270-3 0 9994
152 25544 51.6400 337.6640 0007776 35.5310 330.5120 15.50377579499263
16
17### Reasoning:
18"""
19print(pipe(prompt, max_new_tokens=120)[0]["generated_text"])
20