Text Generation
Transformers
Safetensors
English
Hindi
qwen2
space
isro
nasa
aditya-l1
chandrayaan
chandrayaan-3
astrophysics
astronomy
cosmology
oceansat
oceansat-3
calcofi
oceanography
sentinel-1
sar
radar
flood
remote-sensing
earth-observation
kepler
exoplanet
space-weather
solar-flare
suit
heliophysics
multimodal
sonification
qlora
fp16
national-space-day
india
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use Anoopsingh53/isro-spaceai-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Anoopsingh53/isro-spaceai-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Anoopsingh53/isro-spaceai-v1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Anoopsingh53/isro-spaceai-v1") model = AutoModelForCausalLM.from_pretrained("Anoopsingh53/isro-spaceai-v1", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Anoopsingh53/isro-spaceai-v1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Anoopsingh53/isro-spaceai-v1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Anoopsingh53/isro-spaceai-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Anoopsingh53/isro-spaceai-v1
- SGLang
How to use Anoopsingh53/isro-spaceai-v1 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 "Anoopsingh53/isro-spaceai-v1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Anoopsingh53/isro-spaceai-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "Anoopsingh53/isro-spaceai-v1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Anoopsingh53/isro-spaceai-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Anoopsingh53/isro-spaceai-v1 with Docker Model Runner:
docker model run hf.co/Anoopsingh53/isro-spaceai-v1
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,26 +1,42 @@
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
|
|
|
| 4 |
license: apache-2.0
|
| 5 |
base_model: Qwen/Qwen2.5-7B-Instruct
|
| 6 |
tags:
|
| 7 |
- space
|
| 8 |
-
- astrophysics
|
| 9 |
-
- heliophysics
|
| 10 |
-
- oceanography
|
| 11 |
-
- remote-sensing
|
| 12 |
-
- sar-radar
|
| 13 |
- isro
|
|
|
|
| 14 |
- aditya-l1
|
|
|
|
| 15 |
- chandrayaan-3
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
- oceansat-3
|
| 17 |
- calcofi
|
|
|
|
| 18 |
- sentinel-1
|
| 19 |
-
-
|
| 20 |
-
-
|
| 21 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
- sonification
|
| 23 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
datasets:
|
| 25 |
- UniverseTBD/arxiv-qa-astro-ph
|
| 26 |
- Anoopsingh53/isro-space-ocean-dataset
|
|
@@ -58,8 +74,8 @@ model-index:
|
|
| 58 |
|
| 59 |
<div align="center">
|
| 60 |
|
| 61 |
-
# 🛰️ SpaceAI-v1.1
|
| 62 |
-
### **
|
| 63 |
|
| 64 |
[](https://opensource.org/licenses/Apache-2.0)
|
| 65 |
[](https://huggingface.co/Qwen/Qwen2.5-7B-Instruct)
|
|
@@ -74,11 +90,20 @@ model-index:
|
|
| 74 |
|
| 75 |
---
|
| 76 |
|
| 77 |
-
## Executive Summary
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
|
| 79 |
-
|
| 80 |
|
| 81 |
-
|
|
|
|
|
|
|
|
|
|
| 82 |
|
| 83 |
---
|
| 84 |
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
- hi
|
| 5 |
license: apache-2.0
|
| 6 |
base_model: Qwen/Qwen2.5-7B-Instruct
|
| 7 |
tags:
|
| 8 |
- space
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- isro
|
| 10 |
+
- nasa
|
| 11 |
- aditya-l1
|
| 12 |
+
- chandrayaan
|
| 13 |
- chandrayaan-3
|
| 14 |
+
- astrophysics
|
| 15 |
+
- astronomy
|
| 16 |
+
- cosmology
|
| 17 |
+
- oceansat
|
| 18 |
- oceansat-3
|
| 19 |
- calcofi
|
| 20 |
+
- oceanography
|
| 21 |
- sentinel-1
|
| 22 |
+
- sar
|
| 23 |
+
- radar
|
| 24 |
+
- flood
|
| 25 |
+
- remote-sensing
|
| 26 |
+
- earth-observation
|
| 27 |
+
- kepler
|
| 28 |
+
- exoplanet
|
| 29 |
+
- space-weather
|
| 30 |
+
- solar-flare
|
| 31 |
+
- suit
|
| 32 |
+
- heliophysics
|
| 33 |
+
- multimodal
|
| 34 |
- sonification
|
| 35 |
+
- qlora
|
| 36 |
+
- fp16
|
| 37 |
+
- text-generation
|
| 38 |
+
- national-space-day
|
| 39 |
+
- india
|
| 40 |
datasets:
|
| 41 |
- UniverseTBD/arxiv-qa-astro-ph
|
| 42 |
- Anoopsingh53/isro-space-ocean-dataset
|
|
|
|
| 74 |
|
| 75 |
<div align="center">
|
| 76 |
|
| 77 |
+
# 🛰️ SpaceAI-v1.1: ISRO & NASA 7B Multi-Domain Foundation Model
|
| 78 |
+
### **India's First Unified Foundation Intelligence for Space Exploration, Heliophysics, Oceanography & Earth Observation**
|
| 79 |
|
| 80 |
[](https://opensource.org/licenses/Apache-2.0)
|
| 81 |
[](https://huggingface.co/Qwen/Qwen2.5-7B-Instruct)
|
|
|
|
| 90 |
|
| 91 |
---
|
| 92 |
|
| 93 |
+
## Executive Summary & Overview
|
| 94 |
+
|
| 95 |
+
**SpaceAI-v1.1** (`Anoopsingh53/isro-spaceai-v1`) is an open-weights, domain-specialized 7-Billion parameter foundation language model purpose-built for scientific reasoning in **ISRO Space Missions, Heliophysics, Solar Flares, NASA Kepler Exoplanets, CalCOFI Marine Oceanography, and Sentinel-1 SAR Flood Remote Sensing**.
|
| 96 |
+
|
| 97 |
+
Trained through **QLoRA parameter-efficient fine-tuning with full FP16 weight safe-merging**, SpaceAI bridges multi-scale scientific disciplines—from sub-nanometer solar EUV spectral flux ($130 - 285\text{ nm}$) captured by **ISRO Aditya-L1 (SUIT / PAPA / VELC)** to deep-sea CTD hydrographic profiles from **CalCOFI / Oceansat-3** and light-curve transit photometry from **NASA Kepler**.
|
| 98 |
+
|
| 99 |
+
---
|
| 100 |
|
| 101 |
+
## Keywords & Search Indexing (SEO)
|
| 102 |
|
| 103 |
+
- **ISRO Missions:** Aditya-L1, Chandrayaan-3, Oceansat-3, AstroSat, Gaganyaan, MOSDAC, VEDAS, IN-SPACe, SAC Ahmedabad, ISDA PRADAN.
|
| 104 |
+
- **Space Science:** Heliophysics, Solar UV Spectroscopy, Chromospheric Flares, Coronal Mass Ejections (CME), Solar Wind Plasma, Exoplanets, Kepler Light Curves, Goldilocks Habitable Zone.
|
| 105 |
+
- **Earth & Marine Observation:** CalCOFI CTD casts, Sea Surface Temperature (SST), Salinity (PSU), Chlorophyll-a Biomass, Sentinel-1 C-Band SAR Radar, Microwave Backscatter ($\sigma_0$), Flood Inundation Disaster Mapping.
|
| 106 |
+
- **AI & ML Architecture:** Qwen 2.5 7B, Grouped-Query Attention (GQA), Rotary Position Embeddings (RoPE 32k), GraphRAG, Retrieval Interleaved Generation (RIG), Audio Sonification.
|
| 107 |
|
| 108 |
---
|
| 109 |
|