update template code

This commit is contained in:
phatakmr
2025-10-13 14:48:00 +02:00
parent c9d159fcc6
commit 8f637a4a0d
46 changed files with 2955 additions and 1 deletions

2
mmp/a7/dataset.py Normal file
View File

@@ -0,0 +1,2 @@
# copy your dataset.py code from assignment 6 here
# everything that you want points for has to be in this folder

7
mmp/a7/main.py Normal file
View File

@@ -0,0 +1,7 @@
def main():
"""Put the surrounding training code here. The code will probably look very similar to last assignment"""
raise NotImplementedError()
if __name__ == "__main__":
main()