This is a review of Convolutional Neural Network. It aims to refresh your memory of what you have learned in class.
Classification is a task of assigning a class label to examples from the problem domain, widely applied in several fields such as medicine and autopilot.
Complete following function:
def data_preprocessing():
...
return x, y
Built your own model with at least 3 convolutional layers and 2 dense layers.
def custom_model():
...
return model
preprocessing.py
and your trained model model_lab8.h5
as lab8_tasks.zip
for submission to ZINC.
Q:How much accuracy should achieve to get full mark?
A:0.95
Q:Where is the .h5
file in Colab?
A:
This list is incomplete; you can help by expanding it.