From 531ee5c76af6fb49c3823c96f69c4ec44e1555db Mon Sep 17 00:00:00 2001 From: Luc Giffon <luc.giffon@lis-lab.fr> Date: Fri, 12 Jul 2019 15:52:45 +0200 Subject: [PATCH] add docstring to nystrom_layer file --- nystrom_layer.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nystrom_layer.py b/nystrom_layer.py index a610db6..20a5fc3 100644 --- a/nystrom_layer.py +++ b/nystrom_layer.py @@ -1,3 +1,9 @@ +""" +Simple script that shows how a nystrom layer should be implemented. + +This doesn't aim at giving good results, just to show a simple implementation of the Nyström layer in a convolutional neural network. +""" + import keras import numpy as np from keras.datasets import cifar10 -- GitLab