Reputation: 9
How to perform Image classification. Get Breakhis data set and classify malignant vs benign using deep learning.
I have to use just Python and Tensorflow. I need to write code for data set splitting, for preprocessing and training, and for creating a prediction on a test image. How to start and how to code?
Upvotes: 0
Views: 357
Reputation: 107
I was pretty much in your same condition like a week ago, so here i go.
When you have all set to install tensorflow, just create a virtual enviroment where you like the most with
conda create -n <myenv> python=x.x
where x.x is the python version you are willing to use, and is the name of your enviroment (Take it as your workshop, with all the tools you need, and where you can make a mess without damaging your computer). After that you can install Tensorflow and maybe Keras (a usefull python module that works on neural networks with Tensorflow as a backend) withpip install --upgrade tensorflow-gpu
and pip install keras
. or maybe use pip3
if you're willing to use python 3.x.
After this all you have to do is read and read, start from the basics, look forward to create your first neural network and so on.
Upvotes: 2