Month: June 2020

Technology tensorflow

compiling tensorflow AVX FMA

Step 1: Create a virtual environment to do the job python3 -m venv ./ Create the virtual environment in my target directory. For Python 3, the venv module comes with the standard library installed. The following directory is created with the above command. In order to use this environment’s packages/resources in isolation, we will need to “activate” […]

Technology tensorflow

tensor flow AVX FMA

While executing tensorflow code in Pycharm, I received the following warning: 2020-06-21 23:00:03.609546: I tensorflow/core/platform/cpu_feature_guard.cc:143] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA Advanced Vector Extensions (AVX) are extensions to the x86 instruction set architecture for microprocessors from Intel and AMD proposed by Intel in March 2008 and first […]

python Technology tensorflow

tensorflow with Pycharm

I was trying to execute the sample code from Google tensorflow quick start for beginner on my Mac and I run into the ssl.SSLCertVerificationError. My Pycharm was setup to run all code in venv with Python 3.8 and the necessary tensorflow library setup. Error Message: ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local […]

Back To Top