Views
No views yet
mlabonne/FineTome-100k. The fine-tuning process was aimed at enhancing the model's capabilities in specific tasks and domains based on this dataset.FineTome-100k dataset.mlabonne/FineTome-100k dataset, which provides a diverse collection of text samples designed for training and evaluation in natural language processing tasks. The process involved adjusting the pre-trained model's parameters to specialize in the patterns and nuances found within this dataset.1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("chhatramani/gemma3-4b-it-finetune-test")
4model = AutoModelForCausalLM.from_pretrained("chhatramani/gemma3-4b-it-finetune-test")
5
6input_text = "Your input text here."
7inputs = tokenizer(input_text, return_tensors="pt")
8outputs = model.generate(**inputs)
9print(tokenizer.decode(outputs[0], skip_special_tokens=True))
10
11---
12license: apache-2.0
13tags:
14- unsloth
15---