Datasets:

Modalities:
Tabular
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
File size: 3,102 Bytes
652d81a
60b35ff
 
652d81a
0922387
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f040428
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87b0626
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61a06f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2fe71f7
1650640
2fe71f7
1650640
 
61a06f8
652d81a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0922387
 
 
 
f040428
 
 
 
87b0626
 
 
 
 
 
61a06f8
 
 
 
2fe71f7
 
652d81a
 
 
 
 
f7d088a
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
---
language:
- en
dataset_info:
- config_name: SIQA
  features:
  - name: context
    dtype: string
  - name: question
    dtype: string
  - name: answerA
    dtype: string
  - name: answerB
    dtype: string
  - name: answerC
    dtype: string
  - name: label
    dtype: string
  splits:
  - name: validation
    num_bytes: 372815
    num_examples: 1954
  download_size: 203211
  dataset_size: 372815
- config_name: flights
  features:
  - name: id
    dtype: int64
  - name: date
    dtype: string
  - name: airline
    dtype: string
  - name: flight_number
    dtype: string
  - name: origin
    dtype: string
  - name: destination
    dtype: string
  - name: departure_time
    dtype: string
  - name: arrival_time
    dtype: string
  - name: available_seats
    dtype: int64
  splits:
  - name: train
    num_bytes: 2312079
    num_examples: 27899
  download_size: 417341
  dataset_size: 2312079
- config_name: math_word_problems
  features:
  - name: question
    dtype: string
  - name: answer
    dtype: int64
  splits:
  - name: train
    num_bytes: 12217
    num_examples: 50
  - name: test
    num_bytes: 11738
    num_examples: 50
  download_size: 19876
  dataset_size: 23955
- config_name: obscure_questions
  features:
  - name: url
    dtype: string
  - name: article_id
    dtype: string
  - name: prompt
    dtype: string
  - name: choices
    sequence: string
  - name: correct_answer
    dtype: string
  - name: id
    dtype: int64
  splits:
  - name: test
    num_bytes: 239950
    num_examples: 931
  - name: tiny
    num_bytes: 13060
    num_examples: 50
  download_size: 139625
  dataset_size: 253010
- config_name: wikipedia-northeastern-university
  features:
  - name: id
    dtype: string
  - name: url
    dtype: string
  - name: title
    dtype: string
  - name: text
    dtype: string
  splits:
  - name: test
    num_bytes: 7640857.145607997
    num_examples: 2434
  download_size: 12949685
  dataset_size: 7640857.145607997
configs:
- config_name: SIQA
  data_files:
  - split: validation
    path: SIQA/validation-*
- config_name: flights
  data_files:
  - split: train
    path: flights/train-*
- config_name: math_word_problems
  data_files:
  - split: train
    path: math_word_problems/train-*
  - split: test
    path: math_word_problems/test-*
- config_name: obscure_questions
  data_files:
  - split: test
    path: obscure_questions/test-*
  - split: tiny
    path: obscure_questions/tiny-*
- config_name: wikipedia-northeastern-university
  data_files:
  - split: test
    path: wikipedia-northeastern-university/test-*
---

# Engineering LLM-Integrated Systems

*Engineering LLM-Integrated Systems* is course at Northeastern University that teaches students how to
build software that uses LLMs under the hood from a systems perspective. The course teaches students
how to build interactive software systems that testable, scaleable, and well-designed, despite the
fact that they are working with an essential component -- the LLM -- that can behave in unpredictable ways.

This repository contains the datasets that the course uses for homework assignments.