Update README.md
Browse files
README.md
CHANGED
@@ -15,13 +15,6 @@ tags:
|
|
15 |
- sentiment
|
16 |
- turkish
|
17 |
---
|
18 |
-
# Model Card for Model ID
|
19 |
-
|
20 |
-
<!-- Provide a quick summary of what the model is/does. -->
|
21 |
-
|
22 |
-
This modelcard aims to be a base template for new models. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/modelcard_template.md?plain=1).
|
23 |
-
|
24 |
-
## Model Details
|
25 |
|
26 |
## Model Description
|
27 |
|
@@ -59,26 +52,25 @@ Modeli, `transformers` kütüphanesini kullanarak yükleyebilir ve metinlerdeki
|
|
59 |
from transformers import AutoModelForSequenceClassification, AutoTokenizer
|
60 |
import torch
|
61 |
|
62 |
-
#
|
63 |
model_name = "ebrukilic/ara-proje-bert"
|
64 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
65 |
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
66 |
|
67 |
-
#
|
68 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
69 |
model.to(device)
|
70 |
model.eval()
|
71 |
```
|
72 |
|
73 |
```python
|
74 |
-
#
|
75 |
text = "Ürün çok güzel ama kolları kısa ve çok dar"
|
76 |
aspect = "Beden"
|
77 |
|
78 |
-
# Tokenize etme
|
79 |
inputs = tokenizer(aspect, text, truncation=True, padding='max_length', max_length=128, return_tensors="pt").to(device)
|
80 |
|
81 |
-
#
|
82 |
with torch.no_grad():
|
83 |
outputs = model(**inputs)
|
84 |
|
@@ -95,6 +87,8 @@ print(f"Tahmin edilen etiket: {predicted_label}")
|
|
95 |
|
96 |
## Eğitim Verisi
|
97 |
|
|
|
|
|
98 |
Model, Türkçe metinlerdeki kullanıcı yorumları ve ilgili "aspect"ler (özellikler) kullanılarak eğitildi. Etiketler, 3 sınıflı duygu (polarite) kategorisinde `negatif`, `nötr` ve `pozitif` olarak tanımlanmıştır. Veri kümesi 5045 örnekten oluşmaktadır.
|
99 |
|
100 |
Veri seti:
|
|
|
15 |
- sentiment
|
16 |
- turkish
|
17 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
## Model Description
|
20 |
|
|
|
52 |
from transformers import AutoModelForSequenceClassification, AutoTokenizer
|
53 |
import torch
|
54 |
|
55 |
+
# modelin ve tokenizerın yüklenmesi
|
56 |
model_name = "ebrukilic/ara-proje-bert"
|
57 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
58 |
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
59 |
|
60 |
+
# cuda
|
61 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
62 |
model.to(device)
|
63 |
model.eval()
|
64 |
```
|
65 |
|
66 |
```python
|
67 |
+
# test etmek için örnek
|
68 |
text = "Ürün çok güzel ama kolları kısa ve çok dar"
|
69 |
aspect = "Beden"
|
70 |
|
|
|
71 |
inputs = tokenizer(aspect, text, truncation=True, padding='max_length', max_length=128, return_tensors="pt").to(device)
|
72 |
|
73 |
+
# model ile tahmin yapılması:
|
74 |
with torch.no_grad():
|
75 |
outputs = model(**inputs)
|
76 |
|
|
|
87 |
|
88 |
## Eğitim Verisi
|
89 |
|
90 |
+
[ebrukilic/ytu-ara-proje-absa](https://huggingface.co/datasets/ebrukilic/ytu-ara-proje-absa)
|
91 |
+
|
92 |
Model, Türkçe metinlerdeki kullanıcı yorumları ve ilgili "aspect"ler (özellikler) kullanılarak eğitildi. Etiketler, 3 sınıflı duygu (polarite) kategorisinde `negatif`, `nötr` ve `pozitif` olarak tanımlanmıştır. Veri kümesi 5045 örnekten oluşmaktadır.
|
93 |
|
94 |
Veri seti:
|