2023-12-22 16:39:03 +00:00
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- ai
|
|
|
|
- media
|
2023-12-27 22:45:35 +00:00
|
|
|
- art
|
2023-12-22 16:39:03 +00:00
|
|
|
---
|
2023-06-05 17:01:29 +01:00
|
|
|
# Fully [Convolution](../../../../Signal%20Proc/Convolution.md)al
|
|
|
|
- Remove [Max Pooling](../Max%20Pooling.md)
|
|
|
|
- Use strided [UpConv](../UpConv.md)
|
2023-06-06 11:48:49 +01:00
|
|
|
- Remove [FC](../../MLP/MLP.md) layers
|
2023-06-08 17:52:09 +01:00
|
|
|
- Hurts convergence in non-[classification](../../../Classification/Classification.md)
|
2023-05-26 18:29:17 +01:00
|
|
|
- Normalisation tricks
|
|
|
|
- Batch normalisation
|
|
|
|
- Batches of 0 mean and variance 1
|
2023-06-06 11:48:49 +01:00
|
|
|
- Leaky [ReLu](../../Activation%20Functions.md#ReLu)
|
2023-05-26 18:29:17 +01:00
|
|
|
|
|
|
|
# Stages
|
|
|
|
## Generator, G
|
|
|
|
- Synthesise 'fake' images
|
|
|
|
- From noise
|
|
|
|
## Discriminator, D
|
2023-12-27 21:56:22 +00:00
|
|
|
- Discriminator is a classifier #classification
|
2023-05-26 18:29:17 +01:00
|
|
|
- Is image fake or real
|
|
|
|
|
2023-06-05 17:01:29 +01:00
|
|
|
![gan-arch](../../../../img/gan-arch.png)
|
|
|
|
![gan-arch2](../../../../img/gan-arch2.png)
|
2023-05-26 18:29:17 +01:00
|
|
|
|
2023-06-05 17:01:29 +01:00
|
|
|
![gan-results](../../../../img/gan-results.png)]
|
2023-05-26 18:29:17 +01:00
|
|
|
|
|
|
|
# Training
|
2023-06-05 17:01:29 +01:00
|
|
|
![gan-training-discriminator](../../../../img/gan-training-discriminator.png)
|
|
|
|
![gan-training-generator](../../../../img/gan-training-generator.png)
|
2023-05-26 18:29:17 +01:00
|
|
|
|
|
|
|
# Code Vector Math for Control
|
2023-06-05 17:01:29 +01:00
|
|
|
![cvmfc](../../../../img/cvmfc.png)
|
2023-06-06 11:48:49 +01:00
|
|
|
- Do [AM](../Interpretation.md#Activation%20Maximisation) to derive code for an image
|
2023-06-05 17:01:29 +01:00
|
|
|
![code-vector-math-for-control-results](../../../../img/code-vector-math-for-control-results.png)
|