File size: 651 Bytes
d683caf
 
 
 
 
 
 
 
 
 
 
 
e14f36f
d683caf
e14f36f
 
d683caf
e14f36f
 
d683caf
e14f36f
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
base_model: unsloth/Qwen3-4B-unsloth-bnb-4bit
tags:
- text-generation-inference
- transformers
- unsloth
- qwen3
license: apache-2.0
language:
- en
---

```bash

!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(model_name='FritzStack/COGN-QWEN4B-4bit')
cogn.predict_cognitive_features(text)
# Output:
# Attention Bias: Negative
# Interpretation Bias: Negative
# Memory Bias: Negative
# Rumination: Brooding
```