Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# ClashCR
|
| 2 |
|
| 3 |
Real-time Clash Royale opponent card tracker for emulator gameplay (MuMu Player, BlueStacks).
|
|
@@ -94,3 +98,23 @@ See RESEARCH_SUMMARY.md for evaluated projects, datasets, and APIs.
|
|
| 94 |
|
| 95 |
## Rewrite Plan
|
| 96 |
See REWRITE_PLAN.md for the detailed technical migration guide.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# ClashCR
|
| 6 |
|
| 7 |
Real-time Clash Royale opponent card tracker for emulator gameplay (MuMu Player, BlueStacks).
|
|
|
|
| 98 |
|
| 99 |
## Rewrite Plan
|
| 100 |
See REWRITE_PLAN.md for the detailed technical migration guide.
|
| 101 |
+
|
| 102 |
+
<!-- ml-intern-provenance -->
|
| 103 |
+
## Generated by ML Intern
|
| 104 |
+
|
| 105 |
+
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.
|
| 106 |
+
|
| 107 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 108 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 109 |
+
|
| 110 |
+
## Usage
|
| 111 |
+
|
| 112 |
+
```python
|
| 113 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 114 |
+
|
| 115 |
+
model_id = 'stevenkhan/clashcr'
|
| 116 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 117 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 118 |
+
```
|
| 119 |
+
|
| 120 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|