Views
No views yet
| Metric | Value |
|---|---|
| Base Model | openai/gpt-oss-20b |
| Architecture | Mixture-of-Experts Transformer |
| Total Parameters | ~16.1B (pruned from 21B) |
| Original Experts per Layer | 32 |
| Pruned Experts per Layer | 24 |
| Layers | 24 |
| Top-k Routing | 4 |
| Context Length | 128K tokens |
| Attention Heads | 64 (Query), 8 (Key-Value) |
| Residual Dimension | 2880 |
| Attention Pattern | Alternating dense & sliding window (128 tokens) |
| Positional Encoding | RoPE (Rotary Position Embedding) |
| Normalization | RMSNorm |
| Precision | BF16 |
| License | Apache 2.0 |
| Specialization | Science |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4# Load the specialized model on CPU
5model = AutoModelForCausalLM.from_pretrained(
6 "AmanPriyanshu/gpt-oss-16.1b-specialized-science-pruned-moe-only-24-experts",
7 torch_dtype=torch.bfloat16,
8 device_map="cpu",
9 trust_remote_code=True
10)
11tokenizer = AutoTokenizer.from_pretrained("AmanPriyanshu/gpt-oss-16.1b-specialized-science-pruned-moe-only-24-experts")
12
13# Generate with the model
14messages = [
15 {"role": "user", "content": "Explain the process of photosynthesis in plants."}
16]
17
18inputs = tokenizer.apply_chat_template(
19 messages,
20 add_generation_prompt=True,
21 return_tensors="pt",
22 return_dict=True,
23 reasoning_effort="medium"
24)
25
26# Ensure inputs are on the same device as model
27inputs = {k: v.to(model.device) for k, v in inputs.items()}
28
29outputs = model.generate(
30 **inputs,
31 max_new_tokens=512,
32 do_sample=True,
33 temperature=0.1,
34 top_p=0.9,
35 pad_token_id=tokenizer.eos_token_id,
36 eos_token_id=tokenizer.eos_token_id
37)
38
39# Decode only the generated part
40input_length = inputs['input_ids'].shape[1]
41response_tokens = outputs[0][input_length:]
42response = tokenizer.decode(response_tokens, skip_special_tokens=True)
43print(response)1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4# Check MPS availability and load model
5device = "mps" if torch.backends.mps.is_available() else "cpu"
6
7model = AutoModelForCausalLM.from_pretrained(
8 "AmanPriyanshu/gpt-oss-16.1b-specialized-science-pruned-moe-only-24-experts",
9 torch_dtype=torch.float16, # Better MPS compatibility
10 device_map=device,
11 trust_remote_code=True,
12 low_cpu_mem_usage=True
13)
14tokenizer = AutoTokenizer.from_pretrained("AmanPriyanshu/gpt-oss-16.1b-specialized-science-pruned-moe-only-24-experts")
15
16# Generate with the model
17messages = [
18 {"role": "user", "content": "Explain the process of photosynthesis in plants."}
19]
20
21inputs = tokenizer.apply_chat_template(
22 messages,
23 add_generation_prompt=True,
24 return_tensors="pt",
25 return_dict=True,
26 reasoning_effort="medium"
27)
28
29# Move inputs to model device
30inputs = {k: v.to(model.device) if isinstance(v, torch.Tensor) else v for k, v in inputs.items()}
31
32# Use torch.no_grad for MPS stability
33with torch.no_grad():
34 outputs = model.generate(
35 **inputs,
36 max_new_tokens=512,
37 do_sample=True,
38 temperature=0.1,
39 top_p=0.9,
40 pad_token_id=tokenizer.eos_token_id,
41 eos_token_id=tokenizer.eos_token_id,
42 use_cache=True
43 )
44
45# Decode only the generated part
46input_length = inputs['input_ids'].shape[1]
47response_tokens = outputs[0][input_length:]
48response = tokenizer.decode(response_tokens, skip_special_tokens=True)
49print(response)1device_map="auto" # Will automatically use GPU if available
2torch_dtype=torch.bfloat16 # or torch.float16<|channel|>analysis<|message|>Need concise explanation.<|end|><|start|>assistant<|channel|>final<|message|>**Photosynthesis in Plants – A Step‑by‑Step Overview**
| Stage | What Happens | Key Components | Result |
|-------|--------------|----------------|--------|
| **Light‑Dependent Reactions (Photophosphorylation)** | • Light energy is absorbed by chlorophyll and accessory pigments in the thylakoid membranes of chloroplasts. <br>• Excited electrons travel through the electron‑transport chain, pumping protons into the thylakoid lumen. <br>• The proton gradient powers ATP synthase to produce ATP. <br>• NADP⁺ is reduced to NADPH. | • Chlorophyll a & b, carotenoids, photosystems I & II, plastoquinone, cytochrome b₆f, ATP synthase, ferredoxin, NADP⁺ reductase. | • **ATP** (energy currency) and **NADPH** (reducing power) are generated. |
| **Calvin Cycle (Light‑Independent Reactions)** | • CO₂ is fixed into a 5‑carbon sugar (RuBP) by the enzyme **Rubisco**. <br>• The resulting 6‑carbon compound splits into two 3‑phosphoglycerate (3‑PGA) molecules. <br>• 3‑PGA is phosphorylated by ATP and reduced by NADPH to glyceraldehyde‑3‑phosphate (G3P). <br>• One G3P exits the cycle to contribute to glucose and other carbohydrates; the rest is recycled to regenerate RuBP. | • **Rubisco** (most abundant enzyme), **ATP**, **NADPH**, **RuBP**, **G3P**. | • **Glucose** (and other sugars) are synthesized; CO₂ is released back to the atmosphere. |
### Key Points
1. **Location** – All reactions occur in chloroplasts; light‑dependent reactions in thylakoid membranes, Calvin cycle in the stroma.
2. **Energy Flow** – Light energy → ATP + NADPH → CO₂ fixation → sugars.
3. **Water Splitting** – In photosystem II, water is oxidized, releasing O₂, electrons, and protons.
4. **Regulation** – Light intensity, CO₂ concentration, temperature, and stomatal opening control the overall rate.
5. **Outcome** – Plants convert atmospheric CO₂<|channel|>analysis<|message|>Need explanation.<|end|><|start|>assistant<|channel|>final<|message|>### What Causes the Greenhouse Effect?
The greenhouse effect is a natural process that warms the Earth’s surface. It is caused by certain gases in the atmosphere—called **greenhouse gases (GHGs)**—that absorb and re‑emit infrared (IR) radiation. The main greenhouse gases are:
| Gas | Typical atmospheric concentration | Primary source |
|-----|-----------------------------------|----------------|
| **Water vapor (H₂O)** | ~0.3 % (variable) | Evaporation, transpiration |
| **Carbon dioxide (CO₂)** | ~0.04 % (≈ 410 ppm in 2024) | Fossil‑fuel combustion, deforestation, industrial processes |
| **Methane (CH₄)** | ~0.00018 % (≈ 1.9 ppm) | Agriculture (especially ruminants), wetlands, fossil‑fuel extraction |
| **Nitrous oxide (N₂O)** | ~0.00003 % (≈ 0.3 ppm) | Agriculture (fertilizers), combustion, industrial processes |
| **Ozone (O₃)** | ~0.00002 % (≈ 0.2 ppm) | Photochemical reactions in the troposphere |
| **CFCs and other halocarbons** | trace | Industrial refrigerants, aerosols (now largely phased out) |
These gases are **transparent to visible sunlight** (short‑wave radiation) but **opaque to the long‑wave infrared radiation** that the Earth emits after absorbing solar energy.
---
### How the Greenhouse Effect Works (Step‑by‑Step)
1. **Solar Radiation Reaches Earth**
- The Sun emits a spectrum of electromagnetic radiation, mostly in the visible and near‑infrared range (≈ 0.4–2.5 µm).
- The atmosphere is largely transparent to this short‑wave radiation, so most of it reaches the Earth’s surface.
2. **Earth Absorbs and Re‑Radiates Energy**
- The surface absorbs the incoming solar energy and warms.
- A warm surface emits thermal radiation (long‑wave IR) with a peak wavelength around 10 µm (according to Wien’s law).
3. **Greenhouse Gases Absorb IR Radiation**
- GHG molecules have vibrational modes that resonate with IR wavelengths.
- When a<|channel|>analysis<|message|>Need concise description.<|end|><|start|>assistant<|channel|>final<|message|>**DNA (Deoxyribonucleic Acid)** is the hereditary material that stores and transmits genetic information in living organisms. Its structure and function can be understood in two complementary layers: the **molecular architecture** and the **biological roles** it plays.
---
## 1. Structural Features
| Feature | Description | Biological Significance |
|---------|-------------|------------------------|
| **Double‑Helix Backbone** | Two sugar‑phosphate chains wound around each other in a right‑handed helix. | Provides mechanical stability and protects the genetic code. |
| **Nucleotides** | Each unit consists of a deoxyribose sugar, a phosphate group, and a nitrogenous base. | The four bases (A, T, C, G) encode information. |
| **Base Pairing (Watson–Crick)** | Adenine (A) pairs with Thymine (T) via two hydrogen bonds; Cytosine (C) pairs with Guanine (G) via three hydrogen bonds. | Enables accurate replication and transcription. |
| **Antiparallel Orientation** | One strand runs 5′→3′, the other 3′→5′. | Essential for polymerase enzymes to read and synthesize DNA. |
| **Major & Minor Grooves** | Structural channels that allow protein binding. | Sites for transcription factors, polymerases, and repair enzymes. |
| **Chromatin Packaging** | DNA wraps around histone octamers to form nucleosomes → 30‑nm fiber → higher‑order structures. | Condensates DNA for mitosis, regulates gene accessibility. |
| **Topological Constraints** | Supercoiling, knotting, and catenation. | Managed by topoisomerases to facilitate replication and transcription. |
---
## 2. Functional Roles
| Function | Mechanism | Key Players |
|----------|-----------|------------|
| **Genetic Information Storage** | Sequence of bases encodes proteins, RNAs, regulatory elements. | Genes, introns, exons, regulatory sequences. |
| **Replication** | Semi‑conservative duplication; each new duplex contains one parental strand. | DNA polymerases (α, δ, ε), helicases, primase, ligase. |
| **Transcription** | RNA polymerase reads DNA template to synthesize mRNA. | RNA polymerase II (eukaryotes),1@misc{priyanshu2025gptoss,
2 title={{GPT-OSS MoE Expert Fingerprinting: Analyzing Expert Activation Patterns in Mixture of Experts Models}},
3 author={Priyanshu, Aman and Vijay, Supriti},
4 year={2025},
5 howpublished={\url{https://amanpriyanshu.github.io/GPT-OSS-MoE-ExpertFingerprinting/}},
6 note={Interactive analysis tool for expert activation patterns in MoE architectures}
7}