FritzStack's picture
Update README.md
ec46719 verified
---
base_model: FritzStack/COGN-QWEN8B-4bit
tags:
- text-generation-inference
- transformers
- unsloth
- qwen3
- mlx
- mlx-my-repo
license: apache-2.0
language:
- en
---
## Use with mlx
```bash
pip install mlx-lm
!pip install git+https://github.com/Fede-stack/TONYpy.git
```
```python
from TONY.COGNITIVE import CognitivePredictor, CognitivePredictor_mlx
text = 'I keep thinking about how I messed up in college. I should have studied harder and done more with my life.'
cogn = CognitivePredictor_mlx(model_name='FritzStack/COGN-QWEN8B-4bit-mlx-Q4')
cogn.predict_cognitive_features(text)
# Output:
# Attention Bias: Negative
# Interpretation Bias: Negative
# Memory Bias: Negative
# Rumination: Brooding
```