E-Rong commited on
Commit
5a07374
·
verified ·
1 Parent(s): aba652a

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # TIL-26-AE Bomberman Agent — MaskablePPO + Curriculum Learning
2
 
3
  This repository contains the training pipeline for an RL agent competing in the
@@ -106,3 +110,23 @@ env.close()
106
  ## 📜 License
107
 
108
  MIT — based on the TIL-26 AE challenge environment.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # TIL-26-AE Bomberman Agent — MaskablePPO + Curriculum Learning
6
 
7
  This repository contains the training pipeline for an RL agent competing in the
 
110
  ## 📜 License
111
 
112
  MIT — based on the TIL-26 AE challenge environment.
113
+
114
+ <!-- ml-intern-provenance -->
115
+ ## Generated by ML Intern
116
+
117
+ This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
118
+
119
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
120
+ - Source code: https://github.com/huggingface/ml-intern
121
+
122
+ ## Usage
123
+
124
+ ```python
125
+ from transformers import AutoModelForCausalLM, AutoTokenizer
126
+
127
+ model_id = "E-Rong/til-26-ae-agent"
128
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
129
+ model = AutoModelForCausalLM.from_pretrained(model_id)
130
+ ```
131
+
132
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.