Chess Challenge submission by marius-785
Browse files
README.md
CHANGED
|
@@ -7,7 +7,7 @@ tags:
|
|
| 7 |
license: mit
|
| 8 |
---
|
| 9 |
|
| 10 |
-
## Chess model submitted to the LLM Course Chess Challenge.
|
| 11 |
|
| 12 |
### Submission Info
|
| 13 |
- **Submitted by**: [marius-785](https://huggingface.co/marius-785)
|
|
|
|
| 7 |
license: mit
|
| 8 |
---
|
| 9 |
|
| 10 |
+
## Chess model submitted to the LLM Course Chess Challenge.
|
| 11 |
|
| 12 |
### Submission Info
|
| 13 |
- **Submitted by**: [marius-785](https://huggingface.co/marius-785)
|
model.py
CHANGED
|
@@ -86,7 +86,7 @@ class ChessConfig(PretrainedConfig):
|
|
| 86 |
self.dropout = dropout
|
| 87 |
self.layer_norm_epsilon = layer_norm_epsilon
|
| 88 |
self.tie_weights = tie_weights
|
| 89 |
-
self.rms_Norm =
|
| 90 |
# Inform HF base class about tying behavior
|
| 91 |
self.tie_word_embeddings = bool(tie_weights)
|
| 92 |
|
|
|
|
| 86 |
self.dropout = dropout
|
| 87 |
self.layer_norm_epsilon = layer_norm_epsilon
|
| 88 |
self.tie_weights = tie_weights
|
| 89 |
+
self.rms_Norm = True
|
| 90 |
# Inform HF base class about tying behavior
|
| 91 |
self.tie_word_embeddings = bool(tie_weights)
|
| 92 |
|