Crystalcareai commited on
Commit
c3c3add
1 Parent(s): 8f751fb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -1,3 +1,20 @@
1
  ---
2
- license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
2
  ---
3
+ ## Gemma Fine-Tuned Model
4
+
5
+ This repository contains a fine-tuned version of the Gemma model, which is part of the GemMoE (Gemma Mixture of Experts) family of models. For more information about GemMoE, please refer to the official documentation [https://huggingface.co/Crystalcareai/GemMoE-Beta-1].
6
+
7
+ ## Model Details
8
+
9
+ - **Dataset**: This model was fine-tuned on 3 epochs of the Crystalcareai/CodeFeedback-Alpaca dataset.
10
+ - **Architecture**: The fine-tuned model inherits the lean and efficient architecture of the base Gemma model, making it suitable for a wide range of applications with limited computational resources.
11
+
12
+ ## Usage
13
+
14
+ You can use this fine-tuned model like any other HuggingFace model. Simply load it using the `from_pretrained` method:
15
+
16
+ ```python
17
+ from transformers import AutoModelForCausalLM, AutoTokenizer
18
+
19
+ model = AutoModelForCausalLM.from_pretrained("huggingface-username/gemma-fine-tuned")
20
+ tokenizer = AutoTokenizer.from_pretrained("huggingface-username/gemma-fine-tuned")%%