rqualis commited on
Commit
07d0453
·
verified ·
1 Parent(s): a634da2

Delete research_1/qa.jsonl

Browse files
Files changed (1) hide show
  1. research_1/qa.jsonl +0 -2
research_1/qa.jsonl DELETED
@@ -1,2 +0,0 @@
1
- { "prompt": "What kind of programming language is Python?", "completion": "Python is an interpreted, object-oriented, high-level programming language." }
2
- { "prompt": "How do you compile Python programs?", "completion": "Python is an interpreted language, and you can run the scripts directly, either using: python hello.py or make your script executable by adding #!/usr/bin/env python to the top of the script, making the file executable with chmod +x hello.py and then running: ./hello.py. You may also try compileall: python -m compileall ./" }