Update README.md
Browse files
README.md
CHANGED
@@ -2,5 +2,12 @@
|
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
|
|
|
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
|
5 |
+
Keras Embedding model that generates embeddings for CGI Classification. The model requires that the images be preprocessed by
|
6 |
+
resizing to 256x256 and then converting to grayscale and then applying the Fourier transform. The process can be described as this:
|
7 |
+
1. Resize to 256x256
|
8 |
+
2. Convert to grayscale
|
9 |
+
3. Apply the Fourier transform
|
10 |
+
4. Feed into model input
|
11 |
|
12 |
+
The model will then transform the input transform into a 128-length embedding vector. These vectors are separable and can be used in classification models.
|
13 |
+
The model doesn't enforce a specific classification model, prototypical networks, XGBoost, and other classifiers can be used to classify.
|