8 lines
194 B
Python
8 lines
194 B
Python
def main():
|
|
"""Put the surrounding training code here. The code will probably look very similar to last assignment"""
|
|
raise NotImplementedError()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|