Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +16 -11
- logo.png +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
logo.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
language: en
|
| 3 |
-
license:
|
| 4 |
tags:
|
| 5 |
- mbti
|
| 6 |
- personality-classification
|
|
@@ -38,7 +38,11 @@ model-index:
|
|
| 38 |
name: J/P Accuracy
|
| 39 |
---
|
| 40 |
|
| 41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
Production-grade MBTI (Myers-Briggs Type Indicator) personality classification model implemented in Rust with GPU acceleration.
|
| 44 |
|
|
@@ -104,7 +108,7 @@ To use this model, you have two options:
|
|
| 104 |
|
| 105 |
### Option 1: Use the Web Interface (Easiest)
|
| 106 |
|
| 107 |
-
Visit **https://
|
| 108 |
|
| 109 |
### Option 2: Run Locally (Full Control)
|
| 110 |
|
|
@@ -119,8 +123,8 @@ Visit **https://polyjuice.0xbase.ai** for instant MBTI predictions - no setup re
|
|
| 119 |
### Installation
|
| 120 |
|
| 121 |
```bash
|
| 122 |
-
git clone https://github.com/RyanKung/
|
| 123 |
-
cd
|
| 124 |
|
| 125 |
# Set up environment
|
| 126 |
conda create -n psycial python=3.10
|
|
@@ -140,12 +144,12 @@ from huggingface_hub import hf_hub_download
|
|
| 140 |
|
| 141 |
# Download model files
|
| 142 |
mlp_weights = hf_hub_download(
|
| 143 |
-
repo_id="ElderRyan/
|
| 144 |
filename="mlp_weights_multitask.pt"
|
| 145 |
)
|
| 146 |
|
| 147 |
vectorizer = hf_hub_download(
|
| 148 |
-
repo_id="ElderRyan/
|
| 149 |
filename="tfidf_vectorizer_multitask.json"
|
| 150 |
)
|
| 151 |
|
|
@@ -227,16 +231,17 @@ If you use this model, please cite:
|
|
| 227 |
|
| 228 |
```bibtex
|
| 229 |
@software{psycial_mbti_2025,
|
| 230 |
-
title = {
|
| 231 |
-
author = {
|
| 232 |
year = {2025},
|
| 233 |
-
url = {https://huggingface.co/
|
|
|
|
| 234 |
}
|
| 235 |
```
|
| 236 |
|
| 237 |
## License
|
| 238 |
|
| 239 |
-
|
| 240 |
|
| 241 |
## Acknowledgments
|
| 242 |
|
|
|
|
| 1 |
---
|
| 2 |
language: en
|
| 3 |
+
license: gpl-3.0
|
| 4 |
tags:
|
| 5 |
- mbti
|
| 6 |
- personality-classification
|
|
|
|
| 38 |
name: J/P Accuracy
|
| 39 |
---
|
| 40 |
|
| 41 |
+
<div align="center">
|
| 42 |
+
<img src="https://raw.githubusercontent.com/RyanKung/psycial/master/logo.png" alt="Psycial Logo" width="200"/>
|
| 43 |
+
|
| 44 |
+
# MBTI Personality Classifier - Multi-Task Model
|
| 45 |
+
</div>
|
| 46 |
|
| 47 |
Production-grade MBTI (Myers-Briggs Type Indicator) personality classification model implemented in Rust with GPU acceleration.
|
| 48 |
|
|
|
|
| 108 |
|
| 109 |
### Option 1: Use the Web Interface (Easiest)
|
| 110 |
|
| 111 |
+
Visit **https://psycial.0xbase.ai** for instant MBTI predictions - no setup required!
|
| 112 |
|
| 113 |
### Option 2: Run Locally (Full Control)
|
| 114 |
|
|
|
|
| 123 |
### Installation
|
| 124 |
|
| 125 |
```bash
|
| 126 |
+
git clone https://github.com/RyanKung/psycial
|
| 127 |
+
cd psycial
|
| 128 |
|
| 129 |
# Set up environment
|
| 130 |
conda create -n psycial python=3.10
|
|
|
|
| 144 |
|
| 145 |
# Download model files
|
| 146 |
mlp_weights = hf_hub_download(
|
| 147 |
+
repo_id="ElderRyan/psycial",
|
| 148 |
filename="mlp_weights_multitask.pt"
|
| 149 |
)
|
| 150 |
|
| 151 |
vectorizer = hf_hub_download(
|
| 152 |
+
repo_id="ElderRyan/psycial",
|
| 153 |
filename="tfidf_vectorizer_multitask.json"
|
| 154 |
)
|
| 155 |
|
|
|
|
| 231 |
|
| 232 |
```bibtex
|
| 233 |
@software{psycial_mbti_2025,
|
| 234 |
+
title = {Psycial: Multi-Task MBTI Personality Classifier},
|
| 235 |
+
author = {ElderRyan},
|
| 236 |
year = {2025},
|
| 237 |
+
url = {https://huggingface.co/ElderRyan/psycial},
|
| 238 |
+
github = {https://github.com/RyanKung/psycial}
|
| 239 |
}
|
| 240 |
```
|
| 241 |
|
| 242 |
## License
|
| 243 |
|
| 244 |
+
GNU General Public License v3.0 (GPLv3) - See LICENSE file for details
|
| 245 |
|
| 246 |
## Acknowledgments
|
| 247 |
|
logo.png
ADDED
|
Git LFS Details
|