Update README.md
Browse files
README.md
CHANGED
|
@@ -13,7 +13,7 @@ tags:
|
|
| 13 |
base_model:
|
| 14 |
- beomi/KcELECTRA-base
|
| 15 |
---
|
| 16 |
-
# Model Card for MisileLab/
|
| 17 |
|
| 18 |
<!-- Provide a quick summary of what the model is/does. -->
|
| 19 |
|
|
@@ -25,7 +25,7 @@ A transformer-based model for detecting bot-generated spam comments on YouTube,
|
|
| 25 |
|
| 26 |
<!-- Provide a longer summary of what this model is. -->
|
| 27 |
|
| 28 |
-
|
| 29 |
|
| 30 |
- **Developed by:** MisileLab
|
| 31 |
- **Model type:** Fine-tuned KcELECTRA for sequence classification
|
|
@@ -107,8 +107,8 @@ from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
|
| 107 |
import torch
|
| 108 |
|
| 109 |
# Load model and tokenizer
|
| 110 |
-
tokenizer = AutoTokenizer.from_pretrained("MisileLab/
|
| 111 |
-
model = AutoModelForSequenceClassification.from_pretrained("MisileLab/
|
| 112 |
|
| 113 |
# Prepare input
|
| 114 |
comment = "여기 방문하세요 19금 즐거움이 가득합니다" # Example spam comment
|
|
|
|
| 13 |
base_model:
|
| 14 |
- beomi/KcELECTRA-base
|
| 15 |
---
|
| 16 |
+
# Model Card for MisileLab/noMoreSpamYT
|
| 17 |
|
| 18 |
<!-- Provide a quick summary of what the model is/does. -->
|
| 19 |
|
|
|
|
| 25 |
|
| 26 |
<!-- Provide a longer summary of what this model is. -->
|
| 27 |
|
| 28 |
+
noMoreSpamYT is a fine-tuned KcELECTRA model designed to identify and filter bot comments on YouTube videos. It specifically targets automated comments that promote adult content or gambling websites using repetitive patterns and specific keywords in Korean. The model uses a combination of CLS token and mean pooling strategies with custom classification layers to achieve high accuracy in distinguishing between human and bot-generated content.
|
| 29 |
|
| 30 |
- **Developed by:** MisileLab
|
| 31 |
- **Model type:** Fine-tuned KcELECTRA for sequence classification
|
|
|
|
| 107 |
import torch
|
| 108 |
|
| 109 |
# Load model and tokenizer
|
| 110 |
+
tokenizer = AutoTokenizer.from_pretrained("MisileLab/noMoreSpamYT")
|
| 111 |
+
model = AutoModelForSequenceClassification.from_pretrained("MisileLab/noMoreSpamYT")
|
| 112 |
|
| 113 |
# Prepare input
|
| 114 |
comment = "여기 방문하세요 19금 즐거움이 가득합니다" # Example spam comment
|