Afrizal Hasbi Azizy commited on
Commit
5cedff5
1 Parent(s): a526f95

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -2
README.md CHANGED
@@ -35,7 +35,7 @@ inference: false
35
  <img src="https://imgur.com/9nG5J1T.png" alt="Kancil" width="600" height="300">
36
  <p><em>Kancil is a fine-tuned version of Llama 3 8B using synthetic QA dataset generated with Llama 3 70B. Version zero of Kancil is the first generative Indonesian LLM gain functional instruction performance using solely synthetic data.</em></p>
37
  <p><strong><a href="https://colab.research.google.com/drive/1526QJYfk32X1CqYKX7IA_FFcIHLXbOkx?usp=sharing" style="color: blue; font-family: Tahoma;">❕Go straight to the colab demo❕</a></strong></p>
38
- <p><em style="color: orange;">NOTE: There are currently compatibility issues with Unsloth and Kancil-V0. Please kindly wait while I fix this issue.</em></p>
39
  </center>
40
 
41
  Selamat datang!
@@ -69,8 +69,14 @@ As mentioned, this model was trained with Unsloth. Please use its code for bette
69
  ```
70
  # Install dependencies. You need GPU to run this (at least T4)
71
  %%capture
72
- !pip install "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
 
 
 
73
  !pip install --no-deps "xformers<0.0.26" trl peft accelerate bitsandbytes
 
 
 
74
  ```
75
 
76
  ```
 
35
  <img src="https://imgur.com/9nG5J1T.png" alt="Kancil" width="600" height="300">
36
  <p><em>Kancil is a fine-tuned version of Llama 3 8B using synthetic QA dataset generated with Llama 3 70B. Version zero of Kancil is the first generative Indonesian LLM gain functional instruction performance using solely synthetic data.</em></p>
37
  <p><strong><a href="https://colab.research.google.com/drive/1526QJYfk32X1CqYKX7IA_FFcIHLXbOkx?usp=sharing" style="color: blue; font-family: Tahoma;">❕Go straight to the colab demo❕</a></strong></p>
38
+ <p><em style="color: orange;">Compatibility erorrs are fixed! The colab should work fine now.</em></p>
39
  </center>
40
 
41
  Selamat datang!
 
69
  ```
70
  # Install dependencies. You need GPU to run this (at least T4)
71
  %%capture
72
+ !pip install torch==2.2.*
73
+ import torch
74
+ print(torch.__version__)
75
+ !pip install "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git@53dbf76391da0aea35bc6b044b2fe85460d9e345"
76
  !pip install --no-deps "xformers<0.0.26" trl peft accelerate bitsandbytes
77
+
78
+ # Available versions
79
+ KancilV0 = "catinthebag/Kancil-V0-llama3"
80
  ```
81
 
82
  ```