Views
No views yet
transformers classes for its core training lifecycle. Its neural layers are instantiated explicitly out of raw tensor modules using the following structural dimensions:| Architectural Component | Specification Parameter | Functional Description |
|---|---|---|
| Total Parameters | 38,154,240 (~38M) | Active computational weight matrices |
Layer Depth (n_layer) | 12 Blocks | Sequential Pre-LN Transformer layers |
Attention Heads (n_head) | 8 Heads | Parallel contextual subspace windows |
Embedding Width (n_embd) | 512 Dimensions | Hidden feature vector state width |
Context Horizon (block_size) | 256 Sub-word Tokens | Total attention span allocation boundary |
Vocabulary Size (vocab_size) | 2,000 Allocations | Specialized Byte-Level BPE tokenizations |
| Tensor Precision | 32-bit Floating-Point (FP32) | Core calculation resolution tracking |
| Active Memory/VRAM Load | ~184.80 MB | Full network weight footprint in execution |
1├── dataset/
2│ ├── generate_chat_data.py # Script synthesizing custom synthetic text pairs
3│ ├── input.txt # Primary core training corpus dictionary
4│ └── large_input.txt # Expanded corpus handling advanced contextual data
5├── frontend/ (Next.js App)
6│ ├── app/
7│ │ ├── layout.tsx # System viewport viewport mapping
8│ │ └── page.tsx # Next.js Brutalist chat stream dashboard interface
9│ ├── package.json # Client structural system dependency manifests
10│ └── tailwind.config.js # Styling mapping properties handles
11├── model/ (Local Artifact Cache)
12│ ├── agastya_final_chatbot.pth # Saved Pytorch tensor layer weights binary
13│ └── agastya_tokenizer.json # Saved custom trained Byte-Level BPE vocab maps
14├── train_tokenizer.py # Dual-track custom BPE engine training pipeline
15├── finetune_agastya.py # Causal cross-entropy gradient tracking train loop
16├── talk_to_agastya.py # Local interactive testing terminal handler
17├── main_api.py # FastAPI local system loop loop back streaming server
18├── register_hf_model.py # Automated cloud artifact upload synchronization hub
19└── benchmark_hf_agastya.py # Live remote cloud model telemetry benchmarking script