Skip to main content

Grading utilities for DLAI courses

Project description

grader

Automatic grading for DLAI courses. Designed to be compatible with Coursera's grading requirements.

Requirements

To use this library you will need to have Python, Docker and coursera-autograder installed in your pc.

Installation

You can use pip to install it!

pip install dlai_grader

How to use it

Initialize a grader

To start building your grader cd into the directory where you will be working and use the following command:

dlai_grader --init

This will ask you for:

  • Name of the course (abbreviation is recommended)
  • Number of the course
  • Number of the week or module
  • Version of the grader (defaults to 1 but can be 2 or any other number)

This will generate a file system tree like this:

.
└── grader (directory you invoked the command from)
    ├── data/               -> To store datasets (csv, TF Datasets, etc).
    ├── learner/            -> The learner facing version will be generated here.
    ├── solution/           -> Place solution.ipynb here
    ├── submission/         -> Necessary only in debug mode (no need to place anything here).
    ├── mount/              -> This mocks the bind mount that coursera will attach to the container. Should contain submission.ipynb or other file required for grading.
    ├── .conf               -> Configuration variables.
    ├── Dockerfile          -> Uses frolvlad/alpine-miniconda3:python3.7 as base image.
    ├── Makefile            -> Useful commands.
    ├── requirements.txt    -> Python dependencies.
    ├── entry.py            -> Entrypoint of the grader.
    └── grader.py           -> Grading logic.

Placing the solution and submission

Now that you have the layout of the grader you will need to place the solution of the assignment within the solution/ directory. This file must be named solution.ipynb.

A good starting point is to use the solution to create the first iteration of the grader. To do this place the solution within the mount/ directory and rename it to submission.ipynb. You can use the make submit-solution command to do this.

Your filesystem tree should look like this:

.
└── grader
    ├── ... 
    ├── solution/
    │    └── solution.ipynb
    ├── mount/ 
    │    └── submission.ipynb
    └── ...

Note that the grader can be used to grade files other than Jupyter notebooks. If this is the case you can leave the solution/ directory empty and place the file to grade within mount/. This file can be anything (.h5, .tar.gz, .zip, etc) the only requirement is that it should match the name of the file to submit in the coursera programming item.

Add versioning to the notebook

Why is this useful?

We have seen many learners facing issues when submitting their assignments because coursera does not show them the latest version. To address this, a good alternative it to always check that the submission of the learner is up to date and if not, tell them how they can upgrade to the latest version.

To ensure that a submission is compatible with a particular version of the grader the versioning feature has been created.

Within the .conf file you will find the current version of the grader under the variable GRADER_VERSION.

To compare against this version the submission notebook must include a variable called grader_version in its metadata. To add this variable to the submission.ipynb file you can use the make versioning command (this is just a wrapper of the dlai_grader --versioning command). This will add the variable matching the same version as the one found in the .conf file.

Upgrading the grader and notebook version

After a refactor with breaking changes to the grader it is a good idea to upgrade the version to a newer one. You can do this be using the make upgrade command. This will add 1 to the current version in the .conf file and in the notebook.

Tagging graded cells

You might decide to filter out cells created by learners (or other ones such as the ones that train models). If you take this approach you can add a tag to each cell's metadata and then filter out the ones that don't have this tag .

If you wish to add the graded tag to each cell in the submission.ipynb notebook you can use the make tag command.

Important note for make commands

Note that the make tag, make upgrade and make versioning commands change only the mount/submission.ipynb file.

Adding Python dependencies

The next step is to include all the necessary Python dependencies. For this add them to the requirements.txt file. By default only dlai_grader is included.

Building the grading

Notice that two blank Python files were created during the init step. These are grader.py and entry.py. It might be odd to have two separate files if ony could do the trick.

However it is usually best to separate the grading logic from the entrypoint of the application, as the names suggest, these should be placed within grader.py and entry.py, respectively.

Building the Docker image

Every time you make changes to any file that the grader is dependant-on, you should rebuild the Docker image used for grading. You can do this by using the make build command.

Grading

To grade, simply use the make grade command. This will spin up the coursera-autograder tool to simulate Coursera's grading environment.

Debugging

Some times when using this command you will be presented with a not so descriptive error by coursera-autograder such as "Problem when running command. Sorry!". This happens because this tool does not transparently exposes the errors.

When you face this error you can enter debug mode by using the make debug command. This will spin up a container using the image you created and configuring it in the same way as coursera-autograder would.

Within the container you have a command line where you can test your code directly. To do this, export the partid you are currently working on as an environment variable. export partId=XxXx will do the trick. And then use the entrypoint of the application by running python entry.py.

By doing this you can actually see the error messages that are being generated and another nice feature of this mode is that you don't need to rebuild the image, you can simply edit grading.py and run python entry.py to try out the grader.

Building by Example

To better ilustrate how to use the library, an example will be used. The assignment for the first week of the first course of the Tensorflow 1 specialization will be used.

Trimming the markdown and including the solution, the assignment looks like this:

import tensorflow as tf
import numpy as np

# GRADED FUNCTION: house_model
def house_model():
    ### START CODE HERE
    
    # Define input and output tensors with the values for houses with 1 up to 6 bedrooms
    # Hint: Remember to explictly set the dtype as float
    xs = np.array([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], dtype=float)
    ys = np.array([1.0, 1.5, 2.0, 2.5, 3.0, 3.5], dtype=float)
    
    # Define your model (should be a model with 1 dense layer and 1 unit)
    model = tf.keras.Sequential([tf.keras.layers.Dense(units=1, input_shape=[1])])
    
    # Compile your model
    # Set the optimizer to Stochastic Gradient Descent
    # and use Mean Squared Error as the loss function
    model.compile(optimizer='sgd', loss='mean_squared_error') # @REPLACE model.compile(optimizer=None, loss=None)
    
    # Train your model for 1000 epochs by feeding the i/o tensors
    model.fit(xs, ys, epochs=1000) # @REPLACE model.fit(None, None, epochs=None)
    
    ### END CODE HERE
    return model

# Get your trained model
model = house_model()

new_y = 7.0
prediction = model.predict([new_y])[0]
print(prediction)

Download the assignment

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dlai-grader-1.19.0.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

dlai_grader-1.19.0-py3-none-any.whl (18.5 kB view details)

Uploaded Python 3

File details

Details for the file dlai-grader-1.19.0.tar.gz.

File metadata

  • Download URL: dlai-grader-1.19.0.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for dlai-grader-1.19.0.tar.gz
Algorithm Hash digest
SHA256 d8ad27a6997ae6c1b6e71883f57d53e53b49b1d2d14b08b15d1ee7d338b6b44f
MD5 f1148ab719e72ce063e976361e32c760
BLAKE2b-256 4f9a73176927c4419a399285e4a50cd693578a8b4c40b43180dc594f475d23ad

See more details on using hashes here.

File details

Details for the file dlai_grader-1.19.0-py3-none-any.whl.

File metadata

  • Download URL: dlai_grader-1.19.0-py3-none-any.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for dlai_grader-1.19.0-py3-none-any.whl
Algorithm Hash digest
SHA256 10075540828a5321acf57890aa646329315f01c1ff2f2ede9768fb9a734a7f38
MD5 65aee83a44c40aa86f0c7a1442625fe3
BLAKE2b-256 f4927028c2d90e1241bb04bfcc6438c3f13cad35a2dbee8621b8af66b3b76317

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page