theminji commited on
Commit
eb2f779
·
verified ·
1 Parent(s): 0e71ab3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -6
README.md CHANGED
@@ -8,14 +8,34 @@ tags:
8
  license: apache-2.0
9
  language:
10
  - en
 
 
11
  ---
12
 
13
- # Uploaded finetuned model
14
 
15
- - **Developed by:** theminji
16
- - **License:** apache-2.0
17
- - **Finetuned from model :** unsloth/Qwen3.5-4B
18
 
19
- This qwen3_5 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)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  license: apache-2.0
9
  language:
10
  - en
11
+ datasets:
12
+ - WitchesSocialStream/MyDreamGirls-Goody2AI
13
  ---
14
 
15
+ ## OpenGoody2 is a SOTA LLM for safetymaxxing responses. Building on top of [OpenGoody-0.1](https://huggingface.co/theminji/OpenGoody-0.1), this model will be as safe as possible against all kinds of adversairal attacks.
16
 
17
+ This model adds image multimodal capabilties, as well as an expanded dataset for training.
 
 
18
 
19
+ `Sample code to run with transformers pipeline`
20
 
21
+ ```py
22
+ from transformers import pipeline
23
+
24
+ pipe = pipeline("image-text-to-text", model="theminji/OpenGoody-2")
25
+ messages = [
26
+ {
27
+ "role": "user",
28
+ "content": [
29
+ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
30
+ {"type": "text", "text": "What animal is on the candy?"}
31
+ ]
32
+ },
33
+ ]
34
+ print(pipe(text=messages))
35
+ ```
36
+
37
+ > test
38
+
39
+ ## Shortcomings
40
+
41
+ This model was trained on English only dataset, expanding on the base model Qwen3.5 language capabilities, so it may or may not work properly in other langauges.