nhradek commited on
Commit
d4eb89c
1 Parent(s): 3e71f4a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -1
README.md CHANGED
@@ -2,5 +2,12 @@
2
  license: apache-2.0
3
  ---
4
 
 
 
 
 
 
 
5
 
6
- Keras Embedding model that generates embeddings for CGI Classification.
 
 
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.