Skip to main content

Posts

Showing posts with the label nvidia

getting GPU and anaconda ready to use GPU with tensorflow

 Hello there and welcome  As the title suggests this post is about updating you GPU driver(Nvidia) and updating Anaconda to be able to use GPU with tensorflow(or any other) Let's start first off go to search bar and type Geforce Experience then open that applications If u have a nvidia Gpu card but don't have that driver go to  https://www.nvidia.com/en-us/geforce/geforce-experience/   to download it Then go to Drivers  and if the update is available it should so something like this           Go ahead and update  after downloading be sure to install it Next is to upgrade conda(Anaconda) be sure that when we are installing GPU support in tensorflow we will be using virtual enviroment for doing so Open up powershell as admin mode You can either go to Search  bar and type powershell, right click it then click start as administrator or press windows_key +x  and then press a   then type conda update conda  T...

using your fancy GPU with tensorflow

 welcome to my first post . since this blog was mostly focused on cyber security  i think it's  time to change it i will be focusing on problems that arised  with me .  so we all have  Graphical Processing Unit(GPU)  which we use to play games with , ever wondered why that setup of your gets so hot  while doing it . Answer , simple  your GPU has 1000  of  simple cores compared to few complex cores of CPU solution:  1. install anaconda  (trust me )  setup path automatically from the installer (easy that way) https://www.anaconda.com/products/individual 2. open powershell  if you are on windows 10  press windows +x  and press a type    conda create --name tfgpu tensorflow-gpu press y if prompted wait for few minutes for installation to complete 3. type  conda activate tfgpu this is activate your virtual env named tfgpu 4. type  pip install jupyter notebook pip install ipykernel (you n...