erisdataworks commited on
Commit
b26c2a1
ยท
verified ยท
1 Parent(s): e02fe87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -44
README.md CHANGED
@@ -9,80 +9,71 @@ language:
9
  - de
10
  ---
11
 
12
- # ๐ŸŒŒ Universe Q&A Multilingual Dataset Generator
13
 
14
- This script generates a **Q&A dataset about the universe** in **6 different languages**.
15
- The result is a CSV file containing **300 randomized rows** of questions and answers โ€” ideal for **AI training**, **educational chatbots**, or **cosmology research**.
16
 
17
- Developed by **Eris Dataworks**, part of the **Berinspa** open science and technology initiative.
18
- Released under the **MIT License**.
19
 
20
- ---
 
 
21
 
22
- ## ๐ŸŽฏ Features
23
 
24
- - 15 core questions about astronomy and cosmology.
25
- - Manual translations into **6 languages**:
26
- - ๐Ÿ‡ฎ๐Ÿ‡ฉ Indonesian
27
- - ๐Ÿ‡ฏ๐Ÿ‡ต Japanese
28
- - ๐Ÿ‡จ๐Ÿ‡ณ Chinese
29
- - ๐Ÿ‡ฌ๐Ÿ‡ง English
30
- - ๐Ÿ‡ช๐Ÿ‡ธ Spanish
31
- - ๐Ÿ‡ฉ๐Ÿ‡ช German
32
- - Randomized question and language selection.
33
- - Ready-to-use CSV output (`universe_chat_dataset_300.csv`).
34
 
35
- ---
 
 
 
 
 
 
 
36
 
37
- ## ๐Ÿ“„ Example Output
38
 
39
  ```csv
40
  id,language,question,answer
41
  1,English,What is the universe?,The universe is all of space, time, matter, and energy, including Earth, stars, galaxies, and all other forms of matter and energy.
42
  2,Indonesian,Berapa usia alam semesta?,Alam semesta berusia sekitar 13,8 miliar tahun, berdasarkan pengukuran radiasi latar belakang gelombang mikro kosmik.
43
- 3,Spanish,ยฟQuรฉ es un agujero negro?,Un agujero negro es una regiรณn del espacio donde la gravedad es tan fuerte que nada, ni siquiera la luz, puede escapar de รฉl.
44
- ๐Ÿ“ฆ How to Run
45
- Make sure Python 3 is installed.
46
 
47
- Run the script:
48
 
 
49
 
50
- python3 300chat_universe.py
51
- The universe_chat_dataset_300.csv file will be created in the same folder.
52
 
53
- ๐Ÿ›  Code Structure
54
- base_qa โ€“ Core Q&A in English.
55
 
56
- translations โ€“ Manual translations for 5 other languages.
57
 
58
- languages โ€“ List of language codes used.
59
 
60
- data โ€“ Randomized Q&A entries.
 
61
 
62
- Output CSV โ€“ Contains columns: id, language, question, answer.
63
 
64
- ๐Ÿ“œ License
65
- This project is released under the MIT License.
66
- You are free to use, modify, and distribute it with proper attribution.
67
 
68
- ๐Ÿข About Eris Dataworks
69
- Eris Dataworks is part of Berinspa, focusing on:
70
 
71
- Open source technology
72
 
73
- Data automation and AI
74
 
75
- Educational and scientific tools
 
76
 
77
- ๐Ÿค Contributions
78
- Contributions are welcome! You can:
79
 
80
- Add new Q&A entries.
81
 
82
- Expand language support.
83
 
84
- Improve translation quality.
85
 
86
  ๐Ÿ“ฌ Contact
87
  ๐Ÿ“ง Email: [email protected]
 
88
  ๐Ÿง‘โ€๐Ÿ’ป GitHub: github.com/eris-dataworks
 
9
  - de
10
  ---
11
 
12
+ # ๐ŸŒŒ Universe Q&A Multilingual Dataset
13
 
14
+ This repository contains a **multilingual Questionโ€“Answer dataset** about the **universe**, generated by **Eris Dataworks** as part of the **Berinspa** open science initiative.
 
15
 
16
+ The dataset is suitable for:
 
17
 
18
+ - Multilingual NLP model training and evaluation
19
+ - Astronomy education
20
+ - Open science and translation projects
21
 
22
+ ---
23
 
24
+ ## ๐Ÿ“„ Dataset Details
 
 
 
 
 
 
 
 
 
25
 
26
+ **Filename:** `universe_chat_dataset_300.csv`
27
+ **Languages Included:**
28
+ - ๐Ÿ‡ฎ๐Ÿ‡ฉ Bahasa Indonesia
29
+ - ๐Ÿ‡ฏ๐Ÿ‡ต Japanese
30
+ - ๐Ÿ‡จ๐Ÿ‡ณ Chinese
31
+ - ๐Ÿ‡ฌ๐Ÿ‡ง English
32
+ - ๐Ÿ‡ช๐Ÿ‡ธ Spanish
33
+ - ๐Ÿ‡ฉ๐Ÿ‡ช German
34
 
35
+ ### ๐Ÿ”น Sample Row:
36
 
37
  ```csv
38
  id,language,question,answer
39
  1,English,What is the universe?,The universe is all of space, time, matter, and energy, including Earth, stars, galaxies, and all other forms of matter and energy.
40
  2,Indonesian,Berapa usia alam semesta?,Alam semesta berusia sekitar 13,8 miliar tahun, berdasarkan pengukuran radiasi latar belakang gelombang mikro kosmik.
41
+ Each row contains:
 
 
42
 
43
+ id โ€“ Row number
44
 
45
+ language โ€“ Language of the Q&A pair
46
 
47
+ question โ€“ Question text
 
48
 
49
+ answer โ€“ Answer text
 
50
 
 
51
 
 
52
 
53
+ ๐Ÿ“ฆ File Format
54
+ Type: CSV (Comma-Separated Values)
55
 
56
+ Encoding: UTF-8
57
 
58
+ Total Rows: 300
 
 
59
 
60
+ Columns: id, language, question, answer
 
61
 
 
62
 
 
63
 
64
+ ๐Ÿ“œ License
65
+ This dataset is released under the Apache License 2.0.
66
 
67
+ ๐Ÿข About Eris Dataworks
68
+ Eris Dataworks is part of Berinspa, focusing on:
69
 
70
+ Multilingual open datasets
71
 
72
+ Data automation and AI tools
73
 
74
+ Educational and scientific resources
75
 
76
  ๐Ÿ“ฌ Contact
77
  ๐Ÿ“ง Email: [email protected]
78
+
79
  ๐Ÿง‘โ€๐Ÿ’ป GitHub: github.com/eris-dataworks