Posts

CoviFight

Image
Inspiration The virus has affected humanity in various ways, be it our economy, our freedom of movement, and the loss of loved ones. Then how do we live on, comfortably, and safely with this virus around? Even after the lockdown is over, there is a massive possibility that traces of the virus will remain, and it can spread again. We wanted to bring people back their mobility and keep them safe at the same time. We wanted people to know about their status while they leave their houses. What it does CoviFight is not just a contact tracing application. It is a 3-tier solution which:- • By using Machine Learning and Social Networking analysis, CoviFight alerts the users the risks of catching the virus if they have come in contact with an infected person within the past three weeks. • Identifies the public place or the transport mode, be it a bus, a metro, or a McDonald's restaurant, that needs sterilisation. No other application in the world is capable of doing so.

Installing TensorFlow with conda Explained

Image
In this post, we will learn to install  TensorFlow  with conda For this setup, we first need to understand what is conda and why we use it. What is conda conda is an open source package management system which creates and manages different environment and packages. Why we use conda By using conda we can create different instances of the same compiler. Like we can create different versions of python with different packages so that the packages do not interfere with each other.   Installing with Anaconda Take the following steps to install TensorFlow in an Anaconda environment: 1.     Follow the instructions on the  Anaconda download site  to download and install Anaconda. Launch anaconda terminal. 2.     Create a conda environment named tensorflow by invoking the following command: C:> conda create -n tensorflow pip python=3.5 3.     Activate the conda environment by issuing the following command: C:> activate tensorflow ( tensorflow )C: