Add README, tokenizer, results
Browse files- pyproject.toml +16 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "sasc"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Multilingual Hate Speech Detection — GloVe + BiLSTM with Sequential Transfer Learning"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.11,<3.14"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"tensorflow>=2.13.0",
|
| 9 |
+
"numpy>=1.24.0",
|
| 10 |
+
"pandas>=2.0.0",
|
| 11 |
+
"scikit-learn>=1.3.0",
|
| 12 |
+
"matplotlib>=3.7.0",
|
| 13 |
+
"seaborn>=0.12.0",
|
| 14 |
+
"huggingface-hub>=0.20.0",
|
| 15 |
+
"prompt-toolkit>=3.0.52",
|
| 16 |
+
]
|