# Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("LLM-course/chess-model-eithan", dtype="auto")Quick Links
chess-model-eithan
Chess model submitted to the LLM Course Chess Challenge.
Submission Info
- Submitted by: Eithannak
- Parameters: 1,192,064
- Organization: LLM-course
Model Details
- Architecture: Chess Transformer (GPT-style)
- Vocab size: 2390
- Embedding dim: 128
- Layers: 4
- Heads: 4
- Downloads last month
- 6
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="LLM-course/chess-model-eithan")