hotboxxgenn commited on
Commit
e679c16
ยท
verified ยท
1 Parent(s): 8c6340e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -47
README.md CHANGED
@@ -1,63 +1,67 @@
1
- # ๐Ÿซ BerryAI
2
-
3
- BerryAI is a multimodal, coding-focused chatbot trained on a mixture of conversational, coding, UI design, and math reasoning datasets.
4
- It blends creative dialogue with factual accuracy and programming skill.
5
-
6
  ---
7
-
8
- ## ๐Ÿš€ Features
9
- - ๐Ÿ’ฌ Conversational: Fine-tuned with UltraChat for engaging responses
10
- - ๐Ÿง  Smart: FineWeb improves general knowledge
11
- - ๐Ÿงฎ Reasoning: OpenWebMath for step-by-step logic
12
- - ๐Ÿ’ป Coder: WizardCoderData, StarCoderData, and DS-Coder-Instruct for deeper programming skill
13
- - ๐ŸŽจ UI Genius: Trained on multiple UI/UX datasets for design insights
14
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ---
16
 
17
- ## ๐Ÿงฐ Base Models
18
- - `mistralai/Mixtral-8x7B-v0.1`
19
- - `OpenBuddy/openbuddy-openllama-7b-v12-bf16`
20
- - `HuggingFaceH4/mistral-7b-grok`
21
- - `togethercomputer/RedPajama-INCITE-7B-Chat`
22
 
23
- ---
24
-
25
- ## ๐Ÿ“š Datasets
26
- - hotboxxgenn/mix-openhermes-openorca-platypus-airoboros-chatalpaca-opencode
27
- - microsoft/rStar-Coder
28
- - ed001/ds-coder-instruct-v1
29
- - bigcode/starcoderdata
30
- - bigcode/starcoder2data-extras
31
- - codeparrot/self-instruct-starcoder
32
- - mrtoy/mobile-ui-design
33
- - YashJain/UI-Elements-Detection-Dataset
34
- - tecky-tech/Tecky-UI-Elements-VLM
35
- - Tesslate/UIGEN-T2
36
- - FineWeb
37
- - OpenWebMath
38
- - UltraChat
39
- - WizardCoderData
40
 
41
  ---
42
 
43
- ## ๐Ÿง  Capabilities
44
- โœ… Coding (Python, C#, JavaScript)
45
- โœ… UI Design Advice (Mobile / Web)
46
- โœ… Conversational + Creative Writing
47
- โœ… Factual Knowledge
48
- โœ… Math & Logic Reasoning
 
 
49
 
50
  ---
51
 
52
- ## โšก Usage
 
53
  ```python
54
  from transformers import AutoModelForCausalLM, AutoTokenizer
55
 
56
- model_id = "hotboxxgenn/BerryAI"
57
- tokenizer = AutoTokenizer.from_pretrained(model_id)
58
- model = AutoModelForCausalLM.from_pretrained(model_id)
59
 
60
- prompt = "Write a C# function that scrapes titles from a webpage."
61
  inputs = tokenizer(prompt, return_tensors="pt")
62
- outputs = model.generate(**inputs, max_new_tokens=250)
63
  print(tokenizer.decode(outputs[0], skip_special_tokens=True))
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ tags:
6
+ - coding
7
+ - ui
8
+ - chat
9
+ - math
10
+ - factual
11
+ - agent
12
+ - multimodal
13
+ base_model:
14
+ - mistralai/Mixtral-8x7B-v0.1
15
+ - OpenBuddy/openbuddy-openllama-7b-v12-bf16
16
+ - HuggingFaceH4/mistral-7b-grok
17
+ - togethercomputer/RedPajama-INCITE-7B-Chat
18
+ datasets:
19
+ - hotboxxgenn/mix-openhermes-openorca-platypus-airoboros-chatalpaca-opencode
20
+ - microsoft/rStar-Coder
21
+ - ed001/ds-coder-instruct-v1
22
+ - bigcode/starcoderdata
23
+ - bigcode/starcoder2data-extras
24
+ - codeparrot/self-instruct-starcoder
25
+ - mrtoy/mobile-ui-design
26
+ - YashJain/UI-Elements-Detection-Dataset
27
+ - tecky-tech/Tecky-UI-Elements-VLM
28
+ - Tesslate/UIGEN-T2
29
+ - FineWeb
30
+ - OpenWebMath
31
+ - UltraChat
32
+ - WizardCoderData
33
+ library_name: transformers
34
  ---
35
 
36
+ # ๐Ÿ“ BerryAI
 
 
 
 
37
 
38
+ **Author:** [@hotboxxgenn](https://huggingface.co/hotboxxgenn)
39
+ **Version:** 1.1
40
+ **Type:** Conversational + Coding + UI + Math + Factual Model
41
+ **Base:** Mixtral 8x7B, OpenBuddy, Mistral-Grok, RedPajama
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  ---
44
 
45
+ ## โœจ Overview
46
+
47
+ BerryAI is a **multi-skill LLM** designed to perform:
48
+ - ๐Ÿ’ป **Coding** โ€” Python, JS, React, Tailwind, multi-step reasoning
49
+ - ๐ŸŽจ **UI generation** โ€” generate clean, responsive interfaces
50
+ - ๐Ÿ’ฌ **Conversational chat** โ€” helpful, creative, engaging tone
51
+ - ๐Ÿงฎ **Math reasoning** โ€” step-by-step calculations
52
+ - ๐Ÿ” **Factual grounding** โ€” reduced hallucination, improved accuracy
53
 
54
  ---
55
 
56
+ ## ๐Ÿš€ Usage
57
+
58
  ```python
59
  from transformers import AutoModelForCausalLM, AutoTokenizer
60
 
61
+ tokenizer = AutoTokenizer.from_pretrained("hotboxxgenn/BerryAI")
62
+ model = AutoModelForCausalLM.from_pretrained("hotboxxgenn/BerryAI")
 
63
 
64
+ prompt = "Generate a responsive React login form with Tailwind CSS."
65
  inputs = tokenizer(prompt, return_tensors="pt")
66
+ outputs = model.generate(**inputs, max_new_tokens=200)
67
  print(tokenizer.decode(outputs[0], skip_special_tokens=True))