gnumanth commited on
Commit
2dfaf8c
1 Parent(s): 878ed04

chore: shorter import

Browse files
Files changed (1) hide show
  1. README.md +1 -8
README.md CHANGED
@@ -23,14 +23,7 @@ pip install "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
23
 
24
  ```py
25
  from unsloth import FastLanguageModel
26
- import torch
27
-
28
- model, tokenizer = FastLanguageModel.from_pretrained(
29
- model_name = "gnumanth/gemma-unsloth-alpaca",
30
- max_seq_length = 2048,
31
- dtype = None,
32
- load_in_4bit = True,
33
- )
34
  ```
35
 
36
 
 
23
 
24
  ```py
25
  from unsloth import FastLanguageModel
26
+ model, tokenizer = FastLanguageModel.from_pretrained("gnumanth/gemma-unsloth-alpaca")
 
 
 
 
 
 
 
27
  ```
28
 
29