vijay

welcome Netizen

Share Your Knowledge.It is a way to achieve immortality

Saturday, April 11, 2020

How to use Python in Visual studio Code IDE

Friday, April 10, 2020

Install SSDT in visual studio 2015-Error 0x80070002: Failed to send request to URL: https://go.microsoft.com/fwlink/?LinkId=817280&clcid=0x409

Hi All,

Here i have tried to install SSDT in Visual studio 2015 through online.But am not able to make it success.Everytime it has thrown below error at the some point, then i have tried various method to fix this issue but nothing get helped.
Install Visual Studio 2015 in Server without Internet Connection ...
Finally i have found solution form the below link.Here you can download standalone installer for SSDT.After i tried this SSDT has installed Successfully.

https://docs.microsoft.com/en-us/previous-versions/mt186501(v=msdn.10)?redirectedfrom=MSDN

Direct Link to Download the file.


https://go.microsoft.com/fwlink/?linkid=832313&clcid=0x409

Wednesday, April 8, 2020

AttributeError: module 'tensorflow' has no attribute 'app'

Hi All,

i have got this error while doing custom object detection in tensorflow.

Here the solution which i found
It occurs due to Tensorflow version
If it is TF2.0 then you need to replace  with tf.compat.v1.flags

Change the import tensorflow keyword

Correct One:

import tensorflow.compat.v1 as tf

Tuesday, April 7, 2020

ImportError: No module named 'nets'

Hi All,

i have got this error while doing custom object detection in tensorflow.

Here the solution which i found

step 1:
First you need to go to this path in the command prompt..

....(local path)/tensorflow_models/models/slim

Step 2:
if you have Build file in the folder then delete the file

Step 3:

Type Setup.py and press enter

Now its start the installation.Issue will be solved.


Getting started with Jupyter Notebook and machine learning in python


Introduction about CountVectorizer with an example in Machine Learning