hunterhector
commited on
Commit
•
e20e6a2
1
Parent(s):
ca0321a
Update README.md
Browse files
README.md
CHANGED
@@ -5,13 +5,28 @@ language:
|
|
5 |
pipeline_tag: text-generation
|
6 |
library_name: transformers
|
7 |
widget:
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
12 |
tags:
|
13 |
- llm
|
14 |
- code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
---
|
16 |
|
17 |
# CrystalChat
|
@@ -186,4 +201,4 @@ CrystalChat has not been aligned to human preferences for safety within the RLHF
|
|
186 |
archivePrefix={arXiv},
|
187 |
primaryClass={cs.CL}
|
188 |
}
|
189 |
-
```
|
|
|
5 |
pipeline_tag: text-generation
|
6 |
library_name: transformers
|
7 |
widget:
|
8 |
+
- example_title: Write python function and explain
|
9 |
+
text: >-
|
10 |
+
<s> <|sys_start|> You are an AI assistant. You will be given a task. You
|
11 |
+
must generate a detailed and long answer. <|sys_end|> <|im_start|> Write a
|
12 |
+
python function that takes a list of integers and returns the squared sum of
|
13 |
+
the list. <|im_end|>
|
14 |
+
output:
|
15 |
+
text: "\n````\nHere's a Python function named `squared_sum_list` that takes a list of integers as input and returns the squared sum of the list:\n\n```python\ndef squared_sum_list(lst):\n\treturn sum([num ** 2 for num in lst])\n```\nThe function `squared_sum_list` uses a list comprehension to iterate over each number in the input list `lst` and calculate its square. Then, it uses the `sum` function to accumulate all the squared numbers in a single value - the squared sum of the list.\n\nFor example:\n\n```python\nnumbers = [1, 2, 3, 4, 5]\nprint(squared_sum_list(numbers)) # Outputs: 55\n```\n\nIn the above code, the list `[1, 2, 3, 4, 5]` is passed as an argument to the `squared_sum_list` function. The function calculates the sum of the squares of the elements in the list, which is `1 + 4 + 9 + 16 + 25 = 55`. The function then returns this result, which is printed to the console."
|
16 |
tags:
|
17 |
- llm
|
18 |
- code
|
19 |
+
datasets:
|
20 |
+
- openaccess-ai-collective/oasst1-guanaco-extended-sharegpt
|
21 |
+
- Open-Orca/SlimOrca
|
22 |
+
- AtAndDev/ShareGPT-Vicuna-v3-cleaned-unfiltered
|
23 |
+
- WizardLM/WizardLM_evol_instruct_V2_196k
|
24 |
+
- winglian/chatlogs-en-cleaned
|
25 |
+
- HuggingFaceH4/CodeAlpaca_20K
|
26 |
+
- theblackcat102/evol-codealpaca-v1
|
27 |
+
- nickrosh/Evol-Instruct-Code-80k-v1
|
28 |
+
- open-phi/textbooks
|
29 |
+
- open-phi/programming_books_llama
|
30 |
---
|
31 |
|
32 |
# CrystalChat
|
|
|
201 |
archivePrefix={arXiv},
|
202 |
primaryClass={cs.CL}
|
203 |
}
|
204 |
+
```
|