Kendamarron
commited on
Commit
•
193e1ee
1
Parent(s):
1fd40ad
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
[HuggingFaceFW/fineweb-edu-classifier](https://huggingface.co/HuggingFaceFW/fineweb-edu-classifier)を再現するために、日本語データで[pkshatech/GLuCoSE-base-ja](https://huggingface.co/pkshatech/GLuCoSE-base-ja)を学習したモデルです。
|
3 |
+
|
4 |
+
学習データは、[oscar-corpus/OSCAR-2301](https://huggingface.co/datasets/oscar-corpus/OSCAR-2301)に日本語サブセットから抽出した16913個の文書に対して、[TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF](https://huggingface.co/TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF)のQ3_Kを使ってスコアリングしたものを使用しています。
|
5 |
+
|
6 |
+
詳細については[こちら](https://zenn.dev/kendama/articles/aba63f14f88e6e)をご覧ください。
|
7 |
+
|
8 |
+
## 使い方
|
9 |
+
```python
|
10 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
11 |
+
|
12 |
+
tokenizer = AutoTokenizer.from_pretrained("Kendamarron/fineweb-edu-classifier-ja")
|
13 |
+
model = AutoModelForSequenceClassification.from_pretrained("Kendamarron/fineweb-edu-classifier-ja", num_labels=6, classifier_dropout=0.0, hidden_dropout_prob=0.0)
|
14 |
+
|
15 |
+
def predict(text):
|
16 |
+
inputs = tokenizer(text, return_tensors="pt")
|
17 |
+
outputs = model(**inputs)
|
18 |
+
logits = outputs.logits
|
19 |
+
predicted_class = torch.argmax(logits, dim=-1).item()
|
20 |
+
return predicted_class
|
21 |
+
|
22 |
+
text = "富士山は、日本で最も有名な山であり、日本全土にわたる広大な自然公園の一つです。高さは3,776メートルで、日本で最も高い山です。富士山は、東京都、静岡県、山梨県の3つの県にまたがっています。"
|
23 |
+
print(predict(text))
|
24 |
+
# >> 2
|
25 |
+
```
|