From fce265b1545b4384fa0a128886c7eb73c93f1b32 Mon Sep 17 00:00:00 2001 From: jebba Date: Sat, 22 Jan 2022 23:40:17 -0700 Subject: [PATCH] wut example --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index ceed32a..76e3ba7 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,23 @@ Can use lots from `wut`. * https://spacecruft.org/spacecruft/satnogs-wut/src/branch/master/wut-worker-mas.py#L67-L79 +``` +def uncompiled_model(): + model = Sequential([ + Conv2D(16, 3, padding='same', activation='relu', input_shape=(IMG_HEIGHT, IMG_WIDTH ,3)), + MaxPooling2D(), + Conv2D(32, 3, padding='same', activation='relu'), + MaxPooling2D(), + Conv2D(64, 3, padding='same', activation='relu'), + MaxPooling2D(), + Flatten(), + Dense(512, activation='relu'), + Dense(1, activation='sigmoid') + ]) + return model +``` + + Amazingly (to me), the paper *Classification of radioxenon spectra with deep learning algorithm* (2021) by Azimi, et al. uses nearly the identical CNN `Sequence()` as