TensorFlow provides some functions to compute cross entropy loss, however, these functions will compute sigmoid or softmax value for logists. How to compute cross entropy loss without computing softmax or sigmoid value of logits? In this tutorial, we will tell you how to do.
TensorFlow tf.nn.sigmoid_cross_entropy_with_logits() is one of functions which calculate cross entropy. In this tutorial, we will introduce some tips on using this function. As a tensorflow beginner, you should notice these tips.
Python ImportError: No module named ‘six’ Error is easy to fixed, which means we need to install a python library callded six. In this tutorial, we will tell you how to fix this import error.
Conda can allow us to install specific tensorflow version, which is very useful when you are learning tensorflow. In this tutorial, we will introduce you how to install by using conda.
We can use conda command to create python environment very easily. However, how to rename a python environment if you want to change? In this tutorial, we will introduce you how to rename the environment, you can rename your environment by our tutorial.
TensorFlow tf.argmax() function is often used in classification problem. In order to get the predictions, we often use this function. In this tutorial, we will introduce how to use this function correctly for tensorflow beginners.
Matplotlib fontdict can allow us to set the font style of text in a plot, how to use it to set font style? In this tutorial, we will introduce some tips on how to set values of fontdict for matplotlib beginners.
To change the font style of text is very easy in python matplotlib. In this tutorial, we will tell you how to do. However, as a python beginner, you should know two basic concepts: font family and font, which will be used in this tutorial.
There are two important concepts: font family and font in application development. If you plan to change the display style of text, you should understand them. In this tutorial, we will introduce some basic feartures and knowlage on them for beginners.
We can use python matplot to implement a scatter plot easily, However, how to display these scatter point with labels. In this tutorial, we will introduce how to create a scatter plot with labels for python beginners.