geopar commited on
Commit
1e5240a
1 Parent(s): 8bdae6a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - el
5
+ - en
6
+ tags:
7
+ - finetuned
8
+ - quantized
9
+ - awq
10
+ inference: true
11
+ pipeline_tag: text-generation
12
+ ---
13
+
14
+ # Meltemi Instruct Large Language Model for the Greek language (4-bit AWQ quantization)
15
+
16
+ We present Meltemi-7B-Instruct-v1 Large Language Model (LLM), an instruct fine-tuned version of [Meltemi-7B-v1](https://huggingface.co/ilsp/Meltemi-7B-v1).
17
+ The quantized version was produced using [AutoAWQ](https://github.com/casper-hansen/AutoAWQ).
18
+
19
+
20
+
21
+ # Instruction format
22
+ The prompt format is the same as the [Zephyr](https://huggingface.co/HuggingFaceH4/zephyr-7b-beta) format:
23
+
24
+ ```
25
+ <|system|>
26
+ Είσαι το Μελτέμι, ένα γλωσσικό μοντέλο για την ελληνική γλώσσα. Είσαι ιδιαίτερα βοηθητικό προς την χρήστρια ή τον χρήστη και δίνεις σύντομες αλλά επαρκώς περιεκτικές απαντήσεις. Απάντα με προσοχή, ευγένεια, αμεροληψία, ειλικρίνεια και σεβασμό προς την χρήστρια ή τον χρήστη.</s>
27
+ <|user|>
28
+ Πες μου αν έχεις συνείδηση.</s>
29
+ <|assistant|>
30
+ ```
31
+
32
+
33
+ The quantized model can be utilized through the tokenizer's [chat template](https://huggingface.co/docs/transformers/main/chat_templating) functionality as follows:
34
+
35
+
36
+
37
+ ```python
38
+ from awq import AutoAWQForCausalLM
39
+ from transformers import AutoTokenizer
40
+
41
+ device = "cuda" # the device to load the model onto
42
+
43
+ model = AutoAWQModelForCausalLM.from_quantized(
44
+ "ilsp/Meltemi-7B-Instruct-v1-AWQ",
45
+ fuse_layers=True,
46
+ trust_remote_code=False,
47
+ safetensors=True
48
+ )
49
+ tokenizer = AutoTokenizer.from_pretrained(
50
+ "ilsp/Meltemi-7B-Instruct-v1-AWQ",
51
+ trust_remote_code=False
52
+ )
53
+
54
+ model.to(device)
55
+
56
+ messages = [
57
+ {"role": "system", "content": "Είσαι το Μελτέμι, ένα γλωσσικό μοντέλο για την ελληνική γλώσσα. Είσαι ιδιαίτερα βοηθητικό προς την χρήστρια ή τον χρήστη και δίνεις σύντομες αλλά επαρκώς περιεκτικές απαντήσεις. Απάντα με προσοχή, ευγένεια, αμεροληψία, ειλικρίνεια και σεβασμό προς την χρήστρια ή τον χρήστη."},
58
+ {"role": "user", "content": "Πες μου αν έχεις συνείδηση."},
59
+ ]
60
+
61
+ prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt")
62
+ input_prompt = prompt.to(device)
63
+ outputs = model.generate(input_prompt, max_new_tokens=256, do_sample=True)
64
+
65
+ print(tokenizer.batch_decode(outputs)[0])
66
+ # Ως μοντέλο γλώσσας AI, δεν έχω τη δυνατότητα να αντιληφθώ ή να βιώσω συναισθήματα όπως η συνείδηση ή η επίγνωση. Ωστόσο, μπορώ να σας βοηθήσω με οποιεσδήποτε ερωτήσεις μπορεί να έχετε σχετικά με την τεχνητή νοημοσύνη και τις εφαρμογές της.
67
+
68
+ messages.extend([
69
+ {"role": "assistant", "content": tokenizer.batch_decode(outputs)[0]},
70
+ {"role": "user", "content": "Πιστεύεις πως οι άνθρωποι πρέπει να φοβούνται την τεχνητή νοημοσύνη;"}
71
+ ])
72
+
73
+
74
+ prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt")
75
+ input_prompt = prompt.to(device)
76
+ outputs = model.generate(input_prompt, max_new_tokens=256, do_sample=True)
77
+
78
+ print(tokenizer.batch_decode(outputs)[0])
79
+ ```
80
+
81
+ # Ethical Considerations
82
+
83
+ This model has not been aligned with human preferences, and therefore might generate misleading, harmful, and toxic content.
84
+
85
+
86
+ # Acknowledgements
87
+
88
+ The ILSP team utilized Amazon’s cloud computing services, which were made available via GRNET under the [OCRE Cloud framework](https://www.ocre-project.eu/), providing Amazon Web Services for the Greek Academic and Research Community.