Crystalcareai commited on
Commit
5996699
·
verified ·
1 Parent(s): 88ab9d2

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Gemma Fine-Tuned Model
2
+
3
+ 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].
4
+
5
+ ## Model Details
6
+
7
+ - **Dataset**: This model was fine-tuned on 3 epochs of the MoD-150k dataset.
8
+ - **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.
9
+
10
+ ## Usage
11
+
12
+ You can use this fine-tuned model like any other HuggingFace model. Simply load it using the `from_pretrained` method:
13
+
14
+ ```python
15
+ from transformers import AutoModelForCausalLM, AutoTokenizer
16
+
17
+ model = AutoModelForCausalLM.from_pretrained("huggingface-username/gemma-fine-tuned")
18
+ tokenizer = AutoTokenizer.from_pretrained("huggingface-username/gemma-fine-tuned")