Skip to content

Commit a905a44

Browse files
author
M.Notter
committed
Debugs current deploy issues and updates figure
1 parent 2995555 commit a905a44

File tree

3 files changed

+45
-32
lines changed

3 files changed

+45
-32
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
uses: ruby/setup-ruby@v1
2121
with:
2222
ruby-version: '3.2.2'
23+
- name: Install system dependencies
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install -y imagemagick libmagickwand-dev
2327
- name: Enable bundler cache
2428
uses: actions/cache@v3
2529
with:

_posts/2023-10-23-04_tensorflow_advanced.md

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -164,26 +164,26 @@ model.summary(show_trainable=False)
164164

165165
Model: "model"
166166
_________________________________________________________________
167-
Layer (type) Output Shape Param #
167+
Layer (type) Output Shape Param #
168168
=================================================================
169-
input_1 (InputLayer) [(None, 10)] 0
170-
normalization (Normalizatio (None, 10) 21
171-
n)
172-
dense (Dense) (None, 8) 88
173-
batch_normalization (BatchN (None, 8) 32
174-
ormalization)
175-
re_lu (ReLU) (None, 8) 0
176-
dropout (Dropout) (None, 8) 0
177-
dense_1 (Dense) (None, 4) 36
178-
batch_normalization_1 (Batc (None, 4) 16
179-
hNormalization)
180-
re_lu_1 (ReLU) (None, 4) 0
181-
dropout_1 (Dropout) (None, 4) 0
182-
dense_2 (Dense) (None, 1) 5
169+
input_1 (InputLayer) [(None, 10)] 0
170+
normalization (Normalizati (None, 10) 21
171+
on)
172+
dense (Dense) (None, 8) 88
173+
batch_normalization (Batch (None, 8) 32
174+
Normalization)
175+
re_lu (ReLU) (None, 8) 0
176+
dropout (Dropout) (None, 8) 0
177+
dense_1 (Dense) (None, 4) 36
178+
batch_normalization_1 (Bat (None, 4) 16
179+
chNormalization)
180+
re_lu_1 (ReLU) (None, 4) 0
181+
dropout_1 (Dropout) (None, 4) 0
182+
dense_2 (Dense) (None, 1) 5
183183
=================================================================
184-
Total params: 198
185-
Trainable params: 153
186-
Non-trainable params: 45
184+
Total params: 198 (796.00 Byte)
185+
Trainable params: 153 (612.00 Byte)
186+
Non-trainable params: 45 (184.00 Byte)
187187
_________________________________________________________________
188188

189189

@@ -432,24 +432,25 @@ model.summary()
432432

433433
Model: "model_1"
434434
_________________________________________________________________
435-
Layer (type) Output Shape Param #
435+
Layer (type) Output Shape Param #
436436
=================================================================
437-
input_2 (InputLayer) [(None, 10)] 0
438-
normalization (Normalizatio (None, 10) 21
439-
n)
440-
batch_normalization_2 (Batc (None, 10) 40
441-
hNormalization)
442-
dense_3 (Dense) (None, 8) 88
443-
batch_normalization_3 (Batc (None, 8) 32
444-
hNormalization)
445-
dense_4 (Dense) (None, 4) 36
446-
dense_5 (Dense) (None, 1) 5
437+
input_2 (InputLayer) [(None, 10)] 0
438+
normalization (Normalizati (None, 10) 21
439+
on)
440+
batch_normalization_2 (Bat (None, 10) 40
441+
chNormalization)
442+
dense_3 (Dense) (None, 8) 88
443+
batch_normalization_3 (Bat (None, 8) 32
444+
chNormalization)
445+
dense_4 (Dense) (None, 4) 36
446+
dense_5 (Dense) (None, 1) 5
447447
=================================================================
448-
Total params: 222
449-
Trainable params: 165
450-
Non-trainable params: 57
448+
Total params: 222 (892.00 Byte)
449+
Trainable params: 165 (660.00 Byte)
450+
Non-trainable params: 57 (232.00 Byte)
451451
_________________________________________________________________
452452

453+
453454
Next step is the creation of the parameter grid. First, let's establish the different parameters we could
454455
explore.
455456

wordlist.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,10 @@ autoencoder
183183
axs
184184
azim
185185
ba
186+
backend
186187
backpropagation
187188
basophils
189+
bbox
188190
bloodmnist
189191
bn
190192
bool
@@ -219,6 +221,7 @@ dataframe
219221
dataset
220222
datasets
221223
datetime
224+
del
222225
deltatime
223226
dendrogram
224227
df
@@ -267,6 +270,7 @@ fragmenter
267270
framerate
268271
func
269272
gaussian
273+
gc
270274
geolocation
271275
gif
272276
github
@@ -356,6 +360,7 @@ miykael
356360
mnist
357361
monocytes
358362
msno
363+
mul
359364
multisensory
360365
musicinformationretrieval
361366
nDimension
@@ -424,6 +429,8 @@ polytrans
424429
practise
425430
pre
426431
pred
432+
prefetch
433+
prefetching
427434
preprocess
428435
preprocessed
429436
preprocessing
@@ -502,6 +509,7 @@ tril
502509
uci
503510
umap
504511
univariate
512+
unscaled
505513
url
506514
va
507515
variational

0 commit comments

Comments
 (0)