gmonsoon commited on
Commit
3249122
1 Parent(s): 950ae55

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -28,7 +28,7 @@ datasets:
28
 
29
  Nusantara is a series of Open Weight Language Model of Bahasa Indonesia (Indonesia language). Nusantara is based from Qwen1.5 Language Model, finetuned by domain specific of datasets.
30
  As Chat-implemented language model, Nusantara is capable to do Question-Answering and respond to instructions given in Bahasa Indonesia.
31
- Due to limited resources, only 0.5B, 1.8B, 2.7B, 4B and 7B models are available. If you're interested in funding this project for further development, specific usage, or larger parameters, please contact [Zulfikar Aji Kusworo](https://huggingface.co/gmonsoon).
32
 
33
 
34
  - **Finetuned by:** [Kalis AI](https://huggingface.co/kalisai) / [Zulfikar Aji Kusworo](https://huggingface.co/gmonsoon)
@@ -55,11 +55,11 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
55
  device = "cuda" # the device to load the model onto
56
 
57
  model = AutoModelForCausalLM.from_pretrained(
58
- "gmonsoon/Nusantaro-2.7B-Base",
59
  torch_dtype="auto",
60
  device_map="auto"
61
  )
62
- tokenizer = AutoTokenizer.from_pretrained("gmonsoon/Nusantaro-2.7B-Base")
63
 
64
  prompt = "Berikan saya resep memasak nasi goreng yang lezat."
65
  messages = [
 
28
 
29
  Nusantara is a series of Open Weight Language Model of Bahasa Indonesia (Indonesia language). Nusantara is based from Qwen1.5 Language Model, finetuned by domain specific of datasets.
30
  As Chat-implemented language model, Nusantara is capable to do Question-Answering and respond to instructions given in Bahasa Indonesia.
31
+ Due to limited resources, only 0.8B, 1.8B, 2.7B, 4B and 7B models are available. If you're interested in funding this project for further development, specific usage, or larger parameters, please contact [Zulfikar Aji Kusworo](https://huggingface.co/gmonsoon).
32
 
33
 
34
  - **Finetuned by:** [Kalis AI](https://huggingface.co/kalisai) / [Zulfikar Aji Kusworo](https://huggingface.co/gmonsoon)
 
55
  device = "cuda" # the device to load the model onto
56
 
57
  model = AutoModelForCausalLM.from_pretrained(
58
+ "kalisai/Nusantara-0.8B-Indo-Chat",
59
  torch_dtype="auto",
60
  device_map="auto"
61
  )
62
+ tokenizer = AutoTokenizer.from_pretrained("kalisai/Nusantara-0.8B-Indo-Chat")
63
 
64
  prompt = "Berikan saya resep memasak nasi goreng yang lezat."
65
  messages = [