This is basically a multi-class classification which is used to classify the blood cells. I have implemented this on jupyter notebook.
- I have used CNN for the classification.
- I have used keras library which is a framework built on top of tensorflow and used tensorflow as backend.
Install Anaconda from here Anaconda
First install tensorflow otherwise you will get an error because keras is a framework which needs a backend, it can be either tensorflow or theano. I have tested this using tensorflow.
Easiest way is open Anaconda Navigator and from top upper left corner change base(root) to tensorflow.
Then install jupyter notebook from there and then launch it.
- Open anaconda prompt
- Type below commands because you need to activate tensorflow and these are the steps that worked for me.
conda create -n tensorflow python=3.5
activate tensorflow
conda install -c conda-forge tensorflow
- After activating tensorflow type
conda install kerasorpip install keraswhichever works for you in anaconda prompt.
There you go.