Update README.md
Browse files
README.md
CHANGED
@@ -22,7 +22,7 @@ tags:
|
|
22 |
|
23 |
|
24 |
|
25 |
-
- **Developed by:** [
|
26 |
- **Funded by [optional]:** [More Information Needed]
|
27 |
- **Shared by [optional]:** [More Information Needed]
|
28 |
- **Model type:** [More Information Needed]
|
@@ -76,7 +76,18 @@ Users (both direct and downstream) should be made aware of the risks, biases and
|
|
76 |
|
77 |
Use the code below to get started with the model.
|
78 |
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
|
81 |
## Training Details
|
82 |
|
|
|
22 |
|
23 |
|
24 |
|
25 |
+
- **Developed by:** [Kang Seok Ju]
|
26 |
- **Funded by [optional]:** [More Information Needed]
|
27 |
- **Shared by [optional]:** [More Information Needed]
|
28 |
- **Model type:** [More Information Needed]
|
|
|
76 |
|
77 |
Use the code below to get started with the model.
|
78 |
|
79 |
+
'''
|
80 |
+
import os
|
81 |
+
from dataclasses import dataclass, field
|
82 |
+
from typing import Optional
|
83 |
+
|
84 |
+
import torch
|
85 |
+
|
86 |
+
from transformers import AutoTokenizer, HfArgumentParser, AutoModelForCausalLM, BitsAndBytesConfig, TrainingArguments
|
87 |
+
from datasets import load_dataset
|
88 |
+
from peft import LoraConfig, PeftModel
|
89 |
+
from transformers import BitsAndBytesConfig
|
90 |
+
'''
|
91 |
|
92 |
## Training Details
|
93 |
|