Nenemin95 commited on
Commit
f07d3c2
·
verified ·
1 Parent(s): e0f2e58

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -33
README.md CHANGED
@@ -1,51 +1,50 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
4
- # 🇲🇲 🇬🇧 Mon-English-Burmese-Pali Dictionary Data for AI Training & Retrieval
5
 
6
- This repository contains a comprehensive dataset of the Mon language, structured specifically for Artificial Intelligence (AI) applications, Large Language Models (LLMs), Machine Translation, and Retrieval-Augmented Generation (RAG) systems.
7
 
8
- ဖိုင်ဒေတာဝေါဟာရ ကေုာံ ိဓန်ဘာသာမန် သွက်ဂွံဗ္တောန် AI (Training) ကေုာံ စကာပ္ဍဲ AI Applications နကဵု Format ဗီုပြင် JSON/JSONL။
9
 
10
- ---
11
-
12
- ## 📂 Dataset Structure (ဗီုပြင်ဒေတာ)
13
-
14
- The dataset has been processed from multiple alphabetized CSV files into clean, AI-ready formats:
15
-
16
- * **`Combined_Mon_Dict_AI_Format.json`**: Suitable for Vector Databases (Pinecone, ChromaDB), Custom GPTs Knowledge Bases, and Semantic Search.
17
- * **`Mon_AI_Training_Data.jsonl`**: Formatted in Chat/Instruction format (`messages`: `system`, `user`, `assistant`) for LLM Fine-Tuning (OpenAI, LLaMA, Claude).
18
- * **`X_list_Eng_Mon.csv`**: Bidirectional English-to-Mon translation reference dataset.
19
 
20
  ---
21
 
22
- ## 📊 Data Fields (ကဏ္ဍဒေတာမပါလုပ်)
23
 
24
- Each dictionary entry contains the following structured attributes:
25
 
26
- | Field Name | Type | Description | Example |
27
- | :--- | :--- | :--- | :--- |
28
- | `Mon` | String | The core Mon word/phrase | က |
29
- | `Eng` | String | English translation / definition | fish |
30
- | `Mya` | String | Burmese (Myanmar) translation | ငါး |
31
- | `Pali` | String | Pali root/derivative word (if applicable) | မစ္ဆ |
32
- | `source_file`| String | Metadata showing the origin file | `Ka_list_Mon_Eng_Mya_Pali.csv` |
33
 
34
  ---
35
 
36
- ## 🤖 AI Integration & Usage (ဗီုလဵုဂွံစကာ ပ္ဍဲ AI)
37
-
38
- ### 1. For Custom GPTs (Knowledge Base)
39
- Upload `Combined_Mon_Dict_AI_Format.json` to your Custom GPT's **Knowledge** section. Use the following System Prompt:
40
- > "You are an expert Mon Language Translation AI. You have access to a complete Mon-English-Burmese-Pali dictionary file in JSON format. When a user queries a word in Mon, English, or Burmese, look up the exact or closest match from the data, and provide the comprehensive translation, including its Pali root if available."
41
 
42
- ### 2. For LLM Fine-Tuning (JSONL Format)
43
- The `Mon_AI_Training_Data.jsonl` file follows standard conversational training structures:
44
  ```json
45
  {
46
- "messages": [
47
- {"role": "system", "content": "You are an expert Mon translator and lexicographer."},
48
- {"role": "user", "content": "What is the translation and definition for the Mon word 'က'?"},
49
- {"role": "assistant", "content": "The Mon word 'က' means 'fish' in English, 'ငါး' in Burmese, and 'မစ္ဆ' in Pali."}
50
- ]
51
  }
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - mnw
5
+ - en
6
+ - my
7
+ tags:
8
+ - dictionary
9
+ - lexicon
10
+ - multilingual
11
+ - pali
12
+ - mon-language
13
+ - NLP
14
+ - ai-training
15
+ pretty_name: Mon-Eng-Mya-Pali Lexicon Dataset
16
+ size_categories:
17
+ - 10K<n<100K
18
+ task_categories:
19
+ - translation
20
  ---
 
21
 
22
+ # 🇲🇲 🇬🇧 Mon-Eng-Mya-Pali Lexicon Dataset for AI
23
 
24
+ This dataset is a comprehensive, multilingual lexicon of the Mon language (ဘာသာမန်), paired with English, Burmese (Myanmar), and Pali equivalents. It is structured specifically for Natural Language Processing (NLP), Large Language Model (LLM) fine-tuning, Machine Translation, and Retrieval-Augmented Generation (RAG) applications.
25
 
26
+ ဖိုင်ဒေတာဝေါဟာရ ကေုာံ အဘိဓာန်ဘာသာမန် (၄ ဘာသာ) သွက်ဂွံဗ္တောန် AI (Training) ကေုာံ စကာပ္ဍဲ AI Applications နကဵု Format ဗီုပြင် JSON/JSONL။
 
 
 
 
 
 
 
 
27
 
28
  ---
29
 
30
+ ## 📂 Dataset Description
31
 
32
+ The dataset consists of standardized dictionary entries compiled from various alphabetized source files. Each entry maps a Mon word to its corresponding meanings across multiple languages, including linguistic metadata where available.
33
 
34
+ ### Data Formats Available:
35
+ 1. **`Combined_Mon_Dict_AI_Format.json`**: Standard JSON array containing structured objects, perfect for Vector Databases and semantic search.
36
+ 2. **`Mon_AI_Training_Data.jsonl`**: Standard conversational JSON Lines format (`messages` array with `system`, `user`, and `assistant` roles) optimized for direct LLM fine-tuning (e.g., OpenAI, LLaMA).
 
 
 
 
37
 
38
  ---
39
 
40
+ ## 📊 Dataset Structure & Fields
 
 
 
 
41
 
42
+ ### Data Points Example (JSON)
 
43
  ```json
44
  {
45
+ "Mon": "က",
46
+ "Eng": "fish",
47
+ "Mya": "ငါး",
48
+ "Pali": "မစ္ဆ",
49
+ "source_file": "Ka_list_Mon_Eng_Mya_Pali.csv"
50
  }