Skip to content

Commit e2e7ed4

Browse files
committed
fixed dataset un-escaped commas
1 parent 497ec4b commit e2e7ed4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/smoke-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ jobs:
3939
mkdir -p data/processed
4040
cat > data/processed/train_sample.csv << 'EOF'
4141
question,answer
42-
What is AI?,AI stands for Artificial Intelligence.
43-
How are you?,I am fine, thanks!
42+
"What is AI?","AI stands for Artificial Intelligence."
43+
"How are you?","I am fine, thanks!"
4444
EOF
4545
cat > data/processed/val.csv << 'EOF'
4646
question,answer
47-
What is AI?,AI stands for Artificial Intelligence.
48-
How are you?,I am fine, thanks!
47+
"What is AI?","AI stands for Artificial Intelligence."
48+
"How are you?","I am fine, thanks!"
4949
EOF
5050
cat > data/processed/test.csv << 'EOF'
5151
question,answer
52-
What is AI?,AI stands for Artificial Intelligence.
53-
How are you?,I am fine, thanks!
52+
"What is AI?","AI stands for Artificial Intelligence."
53+
"How are you?","I am fine, thanks!"
5454
EOF
5555
5656
- name: Smoke-run training

0 commit comments

Comments
 (0)