FritzStack commited on
Commit
a13fbdb
·
verified ·
1 Parent(s): fd60776

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -8
README.md CHANGED
@@ -10,12 +10,13 @@ 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-4B-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
+ !pip install git+https://github.com/Fede-stack/TONYpy.git
15
+ ```
16
 
17
+ ```python
18
+ from TONY.HiTOP import HiTOP_Predictor
19
+ text = 'Some days I keep living, even though I feel completely alone in the world'
20
+ hitop = HiTOP_Predictor(model_name='FritzStack/HiTOP-QWEN4B_4bit')
21
+ hitop.predict_HiTOP(text)
22
+ ```