LLMs as Teaching Assistants? Exploring New Horizons Through pTA - Dataset
收藏资源简介:
LLMs as Teaching Assistants? Exploring New Horizons Through pTA - Dataset The Dataset The dataset consists of logs of tests run by students through the pTA on their submissions. The collection, named commandFinished is a json file made up of a list of Mongodb objects. Each object is of the following format: { "_id": { "$oid": "6175e2d0e0375c2f95bd25c5" }, "submissionGitRepoId": "gr0-ms1", "category": "git clone/pull", "finished": { "stdio": "", "stdError": "Cloning into '.'...\n", "wholeInteraction": "Running the process: docker run --network host --interactive --name ms1-gr0-echo-client ms1/gr0/echo-client.jar Testing if put works correctly... Client 1 puts\n-------Input@KV at localhost/127.0.0.1:33121> put dog one two three\n-------Output@KV at localhost/127.0.0.1:33121> put_success dog", "exitValue": 0 }, "finishedTime": { "$date": { "$numberLong": "1635122928975" } }, "durationmillis": 884, "isFinal": false } where - submissionGitRepoId - An ID created of the format <gr>-<ms>, where <gr> is the group id and <ms> is the milestone number - finished - The object containing details of the test How to import - Install MongoDB and MongoDB Compass . - Run a MongoDB deployment. - Open MongoDB Compass and connect to the deployment. Do so by entering the URI and clicking on Connect. - Create a new database and navigate to it. - Create a new collection and navigate to it. - On the resulting page, click on the ADD DATA dropdown and select Import JSON or CSV file. - Confirm the commandFinished.json file that you would like to import.



