Skip to main content

PyTorch Code for Simple Neural Networks for MNIST Dataset

Privacy Policy

Privacy Policy

Introduction

This privacy policy applies to the website and online services offered by [Your Company Name]. We are committed to protecting the privacy of our users and visitors. This policy explains what information we collect, how we use it, and how you can control your privacy settings.

Information We Collect

We collect the following information from our users and visitors:

Personal information: This includes your name, email address, phone number, and any other information that you provide to us when you create an account, sign up for our newsletter, or contact us.

Usage data: This includes information about how you use our website and online services, such as the pages you visit, the links you click, and the time and duration of your visits.

Device information: This includes information about your device, such as your IP address, browser type, and operating system.

How We Use Your Information

We use the information we collect from you to:

Provide you with the services you have requested, such as access to our website and online courses.

Improve our services by understanding how you use them.

Send you marketing and promotional materials about our products and services.

Contact you if we need to troubleshoot a problem or provide customer support.

Comply with laws and regulations.


Sharing Your Information

We may share your information with third parties in the following limited circumstances:

With your consent. We will only share your information with third parties with your explicit consent. For example, if you choose to share your contact information with a teacher or tutor, we will share that information with them.

To comply with the law. We may share your information with third parties if we are required to do so by law, such as to comply with a subpoena or court order.

To protect our rights. We may share your information with third parties to protect our rights, such as to enforce our terms of service or to defend ourselves against legal claims.

Your Privacy Choices

You have the following privacy choices:

Opt out of marketing emails: You can opt out of receiving marketing emails from us by clicking the "unsubscribe" link at the bottom of any marketing email.

Control your cookies: You can control your cookie settings in your browser. For more information, please see the help section of your browser.

Access your personal information: You can request to access your personal information by contacting us at [ns3now with a Gmail Email ID]

Delete your personal information: You can request to delete your personal information by contacting us at [ns3now with a Gmail Email ID]

Changes to This Privacy Policy

We may update this privacy policy from time to time. The most current version of the privacy policy will always be posted on our website. If we make any material changes to the privacy policy, we will notify you by email or through a prominent notice on our website.

Contact Us

If you have any questions about this privacy policy, please contact us at:

Pradeep Kumar

[ns3now with a Gmail Email ID]

Comments

Popular posts from this blog

Installing ns3 in Ubuntu 22.04 | Complete Instructions

In this post, we are going to see how to install ns-3.36.1 in Ubuntu 22.04. You can follow the video for complete details Tools used in this simulation: NS3 version ns-3.36.1  OS Used: Ubuntu 22.04 LTS Installation of NS3 (ns-3.36.1) There are some changes in the ns3 installation procedure and the dependencies. So open a terminal and issue the following commands Step 1:  Prerequisites $ sudo apt update In the following packages, all the required dependencies are taken care and you can install all these packages for the complete use of ns3. $ sudo apt install g++ python3 python3-dev pkg-config sqlite3 cmake python3-setuptools git qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools gir1.2-goocanvas-2.0 python3-gi python3-gi-cairo python3-pygraphviz gir1.2-gtk-3.0 ipython3 openmpi-bin openmpi-common openmpi-doc libopenmpi-dev autoconf cvs bzr unrar gsl-bin libgsl-dev libgslcblas0 wireshark tcpdump sqlite sqlite3 libsqlite3-dev  libxml2 libxml2-dev libc6-dev libc6-dev-i386 libclang-dev llvm-

Installation of NS2 (ns-2.35) in Ubuntu 20.04

Installation of NS2 (ns-2.35) in Ubuntu 20.04 LTS Step 1: Install the basic libraries like      $] sudo apt install build-essential autoconf automake libxmu-dev Step 2: install gcc-4.8 and g++-4.8 open the file using sudo mode $] sudo nano /etc/apt/sources.list Include the following line deb http://in.archive.ubuntu.com/ubuntu bionic main universe $] sudo apt update $] sudo apt install gcc-4.8 g++-4.8 Step 3:  Unzip the ns2 packages to home folder $] tar zxvf ns-allinone-2.35.tar.gz $] cd ns-allinone-2.35/ns-2.35 Modify the following make files. ~ns-2.35/Makefile.in Change @CC@ to gcc-4.8 change @CXX@ to g++-4.8 ~nam-1.15/Makefile.in ~xgraph-12.2/Makefile.in ~otcl-1.14/Makefile.in Change in all places  @CC@ to gcc-4.8 @CPP@ or @CXX@ to g++-4.8 open the file: ~ns-2.35/linkstate/ls.h Change at the Line no 137  void eraseAll() { erase(baseMap::begin(), baseMap::end()); } to This void eraseAll() { this->erase(baseMap::begin(), baseMap::end()); } All changes made Step 4: Open a new termi

Installation of NS2 in Ubuntu 22.04 | NS2 Tutorial 2

NS-2.35 installation in Ubuntu 22.04 This post shows how to install ns-2.35 in Ubuntu 22.04 Operating System Since ns-2.35 is too old, it needs the following packages gcc-4.8 g++-4.8 gawk and some more libraries Follow the video for more instructions So, here are the steps to install this software: To download and extract the ns2 software Download the software from the following link http://sourceforge.net/projects/nsnam/files/allinone/ns-allinone-2.35/ns-allinone-2.35.tar.gz/download Extract it to home folder and in my case its /home/pradeepkumar (I recommend to install it under your home folder) $ tar zxvf ns-allinone-2.35.tar.gz or Right click over the file and click extract here and select the home folder. $ sudo apt update $ sudo apt install build-essential autoconf automake libxmu-dev gawk To install gcc-4.8 and g++-4.8 $ sudo gedit /etc/apt/sources.list make an entry in the above file deb http://in.archive.ubuntu.com/ubuntu/ bionic main universe $ sudo apt update Since, it&#