Views
No views yet
/
├── train.py # Training script
├── generate.py # Generate Mermaid code from prompt
├── tokenizer.py # Tokenization utilities
├── model.py # GPT-style model architecture
├── data/ # Training data (if any)
├── examples/ # Prompt examples and output
├── checkpoints/ # Saved model checkpoints
└── README.mdpython tokenizer.pypython train.pyblock_size = 128
batch_size = 32
learning_rate = 1e-3
embed_dim = 128
n_heads = 8
n_layers = 8Create a flowchart showing a user sending a request to a server and receiving a response.1graph TD
2 User -->|Request| Server
3 Server -->|Response| UserLICENSE file for details.eric.houzelle@email.com