File size: 1,596 Bytes
120b17c
 
 
 
 
5c6a8ac
120b17c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
license: unknown
---
# Telugu-English Bilingual Instruction Dataset

**Created by BHUVAN**

## Overview

This dataset is a bilingual collection of instructions, inputs, and outputs in Telugu paired with their English translations. It is designed to support research and development in multilingual natural language processing, machine translation, and cross-lingual understanding. Each example provides both the original Telugu text and its English counterpart, making it a useful resource for training and evaluating translation or language understanding models.

## Dataset Structure

The dataset is provided in a JSON Lines format (`.jsonl`), where each line is a separate JSON object. Each object contains the following fields:

- **instruction**: The English translation of the original Telugu instruction.
- **input**: An empty field reserved for future use or extensions.
- **output**: The English translation of the original Telugu output.
- **telugu_instruction**: The original instruction in Telugu.
- **telugu_input**: The original input in Telugu (typically empty).
- **telugu_output**: The original output in Telugu.

## Example Entry

```json
{
  "instruction": "Aggantukula Sandram",
  "input": "",
  "output": "Aha \nBroken heart\nAnarchy is broken\nAha\nChallare is a bad adventure",
  "telugu_instruction": "అగ్గంటుకుంది సంద్రం",
  "telugu_input": "",
  "telugu_output": "ఏహా \nభగ్గున మండె ఆకసం\nఅరాచకాలు భగ్నం\nఏహా\nచల్లారె చెడు సాహసం"
}