FlameF0X commited on
Commit
9633f1e
·
verified ·
1 Parent(s): 5a8cb25

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -7
README.md CHANGED
@@ -1,6 +1,3 @@
1
- Here’s a proper, detailed README for your model repository. It covers the architecture, training, usage, and performance.
2
-
3
- ```markdown
4
  ---
5
  language: en
6
  license: apache-2.0
@@ -47,10 +44,6 @@ Chat‑tuned on `HuggingFaceH4/ultrachat_200k` with a simple two‑role template
47
  import torch
48
  from transformers import AutoTokenizer, AutoModelForCausalLM
49
 
50
- # The architecture is custom – you need the model definition from the repository.
51
- # The simplest way is to use the same class definition as in the training script,
52
- # or rely on the provided `modeling_fwkv.py` (if you upload it) and `trust_remote_code=True`.
53
-
54
  model = AutoModelForCausalLM.from_pretrained("FlameF0X/FWKV-ROSA", trust_remote_code=True)
55
  tokenizer = AutoTokenizer.from_pretrained("FlameF0X/FWKV-ROSA")
56
  ```
 
 
 
 
1
  ---
2
  language: en
3
  license: apache-2.0
 
44
  import torch
45
  from transformers import AutoTokenizer, AutoModelForCausalLM
46
 
 
 
 
 
47
  model = AutoModelForCausalLM.from_pretrained("FlameF0X/FWKV-ROSA", trust_remote_code=True)
48
  tokenizer = AutoTokenizer.from_pretrained("FlameF0X/FWKV-ROSA")
49
  ```