FritzStack commited on
Commit
5e63db1
·
verified ·
1 Parent(s): ad88dfa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -6
README.md CHANGED
@@ -10,12 +10,20 @@ language:
10
  - en
11
  ---
12
 
13
- # Uploaded finetuned model
14
 
15
- - **Developed by:** FritzStack
16
- - **License:** apache-2.0
17
- - **Finetuned from model :** unsloth/Qwen3-8B-unsloth-bnb-4bit
18
 
19
- This qwen3 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
 
20
 
21
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
10
  - en
11
  ---
12
 
13
+ ```bash
14
 
15
+ !pip install git+https://github.com/Fede-stack/TONYpy.git
16
+ ```
 
17
 
18
+ ```python
19
+ from TONY.COGNITIVE import CognitivePredictor, CognitivePredictor_mlx
20
 
21
+ text = 'I keep thinking about how I messed up in college. I should have studied harder and done more with my life.'
22
+ cogn = CognitivePredictor(model_name='FritzStack/COGN-QWEN8B-4bit')
23
+ cogn.predict_cognitive_features(text)
24
+ # Output:
25
+ # Attention Bias: Negative
26
+ # Interpretation Bias: Negative
27
+ # Memory Bias: Negative
28
+ # Rumination: Brooding
29
+ ```