Use git add Command Before git commit Command

kannan sudhakaran
Updated on 20-Feb-2021 08:31:42

5K+ Views

The git add command adds files to the staging area whereas the git commit command will write changes to the repository permanently.When you have completed an important feature, you will need to create a snapshot of that change and save it to the Git repository. To achieve this, you will perform a commit.In Git, there exists an intermediate step before commit which does not exist in other version control systems. This intermediate step is called a staging area. The staging area is also known as the index. The staging area can be used to build up a set of changes ... Read More

Handle End of Line Characters in Git on Windows, Linux, Mac

kannan sudhakaran
Updated on 20-Feb-2021 08:29:40

3K+ Views

This question can also be rephrased as − How do you resolve the Git warning − "LF will be replaced by CRLF"?The End−of−Line is marked using two special characters "\r" in Windows Operating System while the “" character is used to mark End-of-Line in MacOS and Linux systems.The \r and are known as the Carriage Return (CR) and Line Feed (LF) characters respectively. It is important to handle End-of-Line characters properly for consistency across multiple Operating Systems.End−of−Line characters can be configured in two ways −At the time of installation −At the time of installation, Git allows us to select from ... Read More

What is Git Folder and Why is it Hidden

kannan sudhakaran
Updated on 20-Feb-2021 08:26:14

22K+ Views

Git is currently the most popular version control system. A version control system records the changes made to our project codebase in a special kind of file system-based database. In Git, this database is known as a repository and its structure is inspired by the Linux file system. The repository maintains a history of the changes to our codebase.The .git folder contains all information that is necessary for the project and all information relating commits, remote repository address, etc. It also contains a log that stores the commit history. This log can help you to roll back to the desired ... Read More

Change Default Configuration in Git

kannan sudhakaran
Updated on 20-Feb-2021 08:24:06

818 Views

The default configuration should be modified when you use Git for the first time. The git config command can be used to achieve the same. The following are some Git configuration settings that can be set −NameEmailDefault EditorLine EndingsGit allows us to configure the above settings at different levels. This means we can have different settings for different repositories of different projects. All configurations are stored in a configuration file.SyntaxThe syntax to modify Git’s configuration is −git config configuration_name [additional_flags]Git configuration can be modified at the following levels −System − System−level configuration is applied across an entire machine and ... Read More

Functions in Rust Programming Language

Mukul Latiyan
Updated on 20-Feb-2021 08:09:31

311 Views

Functions are building blocks of code. They allow us to avoid writing similar code and also help in organizing large section of code into reusable components.In Rust, functions can be found everywhere. Even function definitions are also statements in Rust.One of the most important function in Rust is the main function, which is the entry point of any software or application.We make use of the fn keyword to declare a function in Rust.In Rust, the names of the functions make use of snake case as the conventional style. In snake case, all the letters of the word are in lower ... Read More

Train Model Using TensorFlow in Python

AmitDiwan
Updated on 20-Feb-2021 08:07:11

218 Views

The model can be trained using the ‘train’ method in Tensorflow, where the epochs (number of times the data has to be trained to fit the model) and the training data are specified.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?We are using the Google Colaboratory to run the below code. Google Colab or Colaboratory helps run Python code over the browser and requires zero configuration and free access to GPUs (Graphical Processing Units). Colaboratory has been built on top of Jupyter Notebook.print("The model is being trained") epochs=12 history = model.fit(    train_ds,   ... Read More

Compile TensorFlow Model Using Python

AmitDiwan
Updated on 20-Feb-2021 08:05:40

301 Views

The created model in Tensorflow can be compiled using the ‘compile’ method. The loss is calculated using the ‘SparseCategoricalCrossentropy’ method.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?We are using the Google Colaboratory to run the below code. Google Colab or Colaboratory helps run Python code over the browser and requires zero configuration and free access to GPUs (Graphical Processing Units). Colaboratory has been built on top of Jupyter Notebook.print("The model is being compiled") model.compile(optimizer='adam', loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),    metrics=['accuracy']) print("The architecture of the model") model.summary()Code credit: https://www.tensorflow.org/tutorials/images/classificationOutputThe model is being compiled The architecture of the ... Read More

Create Sequential Model Using TensorFlow in Python

AmitDiwan
Updated on 20-Feb-2021 08:02:57

170 Views

A sequential model can be created using the ‘Sequential’ API that uses the ‘ layers.experimental.preprocessing.Rescaling’ method. The other layers are specified while created the model.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?We will use the Keras Sequential API, which is helpful in building a sequential model that is used to work with a plain stack of layers, where every layer has exactly one input tensor and one output tensor.We are using the Google Colaboratory to run the below code. Google Colab or Colaboratory helps run Python code over the browser and requires zero ... Read More

Standardize Data Using TensorFlow in Python

AmitDiwan
Updated on 20-Feb-2021 07:58:43

404 Views

We will be using the flowers dataset, which contains images of several thousands of flowers. It contains 5 sub-directories, and there is one sub-directory for every class. Once the flower dataset has been downloaded using the ‘get_file’ method, it will be loaded into the environment to work with it.The flower data can be standardized by introducing a normalization layer in the model. This layer is called the ‘Rescaling’ layer, which is applied to the entire dataset using the ‘map’ method.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?We are using the Google Colaboratory to ... Read More

Visualize Data Using TensorFlow in Python

AmitDiwan
Updated on 20-Feb-2021 07:56:00

318 Views

Let's say we have flower dataset. The flower dataset can be downloaded using a google API that basically links to the flower dataset. The ‘get_file’ method can be used to pass the API as a parameter. Once this is done, the data gets downloaded into the environment.It can be visualized using the ‘matplotlib’ library. The ‘imshow’ method is used to display the image on the console. Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?We will use the Keras Sequential API, which is helpful in building a sequential model that is used to work with ... Read More

Advertisements