Skip to content

Commit 0fe5e0a

Browse files
author
RabidSheep55
committed
update to new docs structure
1 parent 3b9d454 commit 0fe5e0a

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

app/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Base image that bundles AWS Lambda Python 3.8 image with some middleware functions
2+
# FROM base-eval-tmp
23
FROM rabidsheep55/python-base-eval-layer
34

45
WORKDIR /app
@@ -12,7 +13,8 @@ COPY evaluation.py ./app/
1213
COPY evaluation_tests.py ./app/
1314

1415
# Copy Documentation
15-
COPY docs.md ./app/
16+
COPY docs/dev.md ./app/docs/dev.md
17+
COPY docs/user.md ./app/docs/user.md
1618

1719
# Set permissions so files and directories can be accessed on AWS
1820
RUN chmod 644 $(find . -type f)
File renamed without changes.

app/docs/user.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# IsSimilar
2+
3+
Use this evaluation function to check if the student's reponse is within a tolerance range defined in `params`. Works exactly like the [numpy.isclose](https://numpy.org/doc/stable/reference/generated/numpy.isclose.html#numpy.isclose) function. Valid params include `atol` and `rtol` (absolute and relative tolerances) which can be used in combination, or alone.

0 commit comments

Comments
 (0)