From f53bab83dbdd414389efefe27eb3c4e0d453e41f Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 2 Oct 2020 19:25:50 +0530 Subject: cleaned up website repository --- feed.rss | 1228 -------------------------------------------------------------- 1 file changed, 1228 deletions(-) delete mode 100644 feed.rss (limited to 'feed.rss') diff --git a/feed.rss b/feed.rss deleted file mode 100644 index 6637b94..0000000 --- a/feed.rss +++ /dev/null @@ -1,1228 +0,0 @@ -Navan ChauhanWelcome to my personal fragment of the internet. Majority of the posts should be complete.https://navanchauhan.github.io/enTue, 15 Sep 2020 15:53:16 +0530Tue, 15 Sep 2020 15:53:16 +0530250https://navanchauhan.github.io/posts/2020-08-01-Natural-Feature-Tracking-ARJSIntroduction to AR.js and Natural Feature TrackingAn introduction to AR.js and NFThttps://navanchauhan.github.io/posts/2020-08-01-Natural-Feature-Tracking-ARJSSat, 1 Aug 2020 15:43:00 +0530Introduction to AR.js and Natural Feature Tracking

AR.js

AR.js is a lightweight library for Augmented Reality on the Web, coming with features like Image Tracking, Location based AR and Marker tracking. It is the easiest option for cross-browser augmented reality.

The same code works for iOS, Android, Desktops and even VR Browsers!

It was initially created by Jerome Etienne and is now maintained by Nicolo Carpignoli and the AR-js Organisation

NFT

Usually for augmented reality you need specialised markers, like this Hiro marker (notice the thick non-aesthetic borders 🤢)

This is called marker based tracking where the code knows what to look for. NFT or Natural Feature Tracing converts normal images into markers by extracting 'features' from it, this way you can use any image of your liking!

I'll be using my GitHub profile picture

Creating the Marker!

First we need to create the marker files required by AR.js for NFT. For this we use Carnaux's repository 'NFT-Marker-Creator'.

$ git clone https://github.com/Carnaux/NFT-Marker-Creator - -Cloning into 'NFT-Marker-Creator'... -remote: Enumerating objects: 79, done. -remote: Counting objects: 100% (79/79), done. -remote: Compressing objects: 100% (72/72), done. -remote: Total 580 (delta 10), reused 59 (delta 7), pack-reused 501 -Receiving objects: 100% (580/580), 9.88 MiB | 282.00 KiB/s, done. -Resolving deltas: 100% (262/262), done. - -$ cd NFT-Makrer-Creator -

Install the dependencies

$ npm install - -npm WARN nodegenerator@1.0.0 No repository field. - -added 67 packages from 56 contributors and audited 67 packages in 2.96s - -1 package is looking for funding - run `npm fund` for details - -found 0 vulnerabilities - - - - ╭────────────────────────────────────────────────────────────────╮ - │ │ - │ New patch version of npm available! 6.14.5 → 6.14.7 │ - │ Changelog: https://github.com/npm/cli/releases/tag/v6.14.7 │ - │ Run npm install -g npm to update! │ - │ │ - ╰────────────────────────────────────────────────────────────────╯ -

Copy the target marker to the folder

$ cp ~/CodingAndStuff/ARjs/me.png . -

Generate Marker

$ node app.js -i me.png - -Confidence level: [ * * * * * ] 5/5 || Entropy: 5.24 || Current max: 5.17 min: 4.6 - -Do you want to continue? (Y/N) -y -writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead! -[info] -Commands: -[info] -- -Generator started at 2020-08-01 16:01:41 +0580 -[info] Tracking Extraction Level = 2 -[info] MAX_THRESH = 0.900000 -[info] MIN_THRESH = 0.550000 -[info] SD_THRESH = 8.000000 -[info] Initialization Extraction Level = 1 -[info] SURF_FEATURE = 100 -[info] min allow 3.699000. -[info] Image DPI (1): 3.699000 -[info] Image DPI (2): 4.660448 -[info] Image DPI (3): 5.871797 -[info] Image DPI (4): 7.398000 -[info] Image DPI (5): 9.320896 -[info] Image DPI (6): 11.743593 -[info] Image DPI (7): 14.796000 -[info] Image DPI (8): 18.641792 -[info] Image DPI (9): 23.487186 -[info] Image DPI (10): 29.592001 -[info] Image DPI (11): 37.283585 -[info] Image DPI (12): 46.974373 -[info] Image DPI (13): 59.184002 -[info] Image DPI (14): 72.000000 -[info] Generating ImageSet... -[info] (Source image xsize=568, ysize=545, channels=3, dpi=72.0). -[info] Done. -[info] Saving to asa.iset... -[info] Done. -[info] Generating FeatureList... - -... - -[info] (46, 44) 5.871797[dpi] -[info] Freak features - 23[info] ========= 23 =========== -[info] (37, 35) 4.660448[dpi] -[info] Freak features - 19[info] ========= 19 =========== -[info] (29, 28) 3.699000[dpi] -[info] Freak features - 9[info] ========= 9 =========== -[info] Done. -[info] Saving FeatureSet3... -[info] Done. -[info] Generator finished at 2020-08-01 16:02:02 +0580 --- - -Finished marker creation! -Now configuring demo! - -Finished! -To run demo use: 'npm run demo' -

Now we have the required files in the output folder

$ ls output - -me.fset me.fset3 me.iset -

Creating the HTML Page

Create a new file called index.html in your project folder. This is the basic template we are going to use. Replace me with the root filename of your image, for example NeverGonnaGiveYouUp.png will become NeverGonnaGiveYouUp. Make sure you have copied all three files from the output folder in the previous step to the root of your project folder.

<script src="https://cdn.jsdelivr.net/gh/aframevr/aframe@1c2407b26c61958baa93967b5412487cd94b290b/dist/aframe-master.min.js"></script> -<script src="https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar-nft.js"></script> - -<style> - .arjs-loader { - height: 100%; - width: 100%; - position: absolute; - top: 0; - left: 0; - background-color: rgba(0, 0, 0, 0.8); - z-index: 9999; - display: flex; - justify-content: center; - align-items: center; - } - - .arjs-loader div { - text-align: center; - font-size: 1.25em; - color: white; - } -</style> - -<body style="margin : 0px; overflow: hidden;"> - <div class="arjs-loader"> - <div>Calculating Image Descriptors....</div> - </div> - <a-scene - vr-mode-ui="enabled: false;" - renderer="logarithmicDepthBuffer: true;" - embedded - arjs="trackingMethod: best; sourceType: webcam;debugUIEnabled: false;" - > - <a-nft - type="nft" - url="./me" - smooth="true" - smoothCount="10" - smoothTolerance=".01" - smoothThreshold="5" - > - - </a-nft> - <a-entity camera></a-entity> - </a-scene> -</body> -

In this we are creating a AFrame scene and we are telling it that we want to use NFT Tracking. The amazing part about using AFrame is that we are able to use all AFrame objects!

Adding a simple box

Let us add a simple box!

<a-nft .....> - <a-box position='100 0.5 -180' material='opacity: 0.5; side: double' scale="100 100 100"></a-box> -</a-nft> -

Now to test it out we will need to create a simple server, I use Python's inbuilt SimpleHTTPServer alongside ngrok

In one terminal window, cd to the project directory. Currently your project folder should have 4 files, index.html, me.fset3, me.fset and me.iset

Open up two terminal windows and cd into your project folder then run the following commands to start up your server.

In the first terminal window start the Python Server

$ cd ~/CodingAndStuff/ARjs -$ python2 -m SimpleHTTPServer - -Serving HTTP on 0.0.0.0 port 8000 ... -

In the other window run ngrok ( Make sure you have installed it prior to running this step )

$ ngrok http 8000 -

Now copy the url to your phone and try running the example

👏 Congratulations! You just built an Augmented Reality experience using AR.js and AFrame

Adding a Torus-Knot in the box

Edit your index.html

<a-nft ..> - <a-box ..> - <a-torus-knot radius='0.26' radius-tubular='0.05' ></a-torus-knot> - </ a-box> -</ a-nft> -

Where are the GIFs?

Now that we know how to place a box in the scene and add a torus knot in it, what do we do next? We bring the classic internet back!

AFrame GIF Shader is a gif shader for A-Frame created by mayognaise.

First things first

Add <script src="https://rawgit.com/mayognaise/aframe-gif-shader/master/dist/aframe-gif-shader.min.js"></script> to <head>

Change the box's material to add the GIF shader

... -<a-box position='100 0.5 -180' material="shader:gif;src:url(https://media.tenor.com/images/412b1aa9149d98d561df62db221e0789/tenor.gif);opacity:.5" .....> -

Bonus Idea: Integrate it with GitHub's new profile Readme Feature!

1) Host the code using GitHub Pages

2) Create a new repository ( the name should be your GitHub username )

3) Add QR Code to the page and tell the users to scan your profile picture

??) Profit 💸

Here is a screenshot of me scanning a rounded version of my profile picture ( It still works! Even though the image is cropped and I haven't changed any line of code )

]]>
https://navanchauhan.github.io/posts/2020-07-01-Install-rdkit-colabInstalling RDKit on Google ColabInstall RDKit on Google Colab with one code snippet.https://navanchauhan.github.io/posts/2020-07-01-Install-rdkit-colabWed, 1 Jul 2020 14:23:00 +0530Installing RDKit on Google Colab

RDKit is one of the most integral part of any Cheminfomatic specialist's toolkit but it is notoriously difficult to install unless you already have conda installed. I originally found this in a GitHub Gist but I have not been able to find that gist again :/

Just copy and paste this in a Colab cell and it will install it 👍

import sys -import os -import requests -import subprocess -import shutil -from logging import getLogger, StreamHandler, INFO - - -logger = getLogger(__name__) -logger.addHandler(StreamHandler()) -logger.setLevel(INFO) - - -def install( - chunk_size=4096, - file_name="Miniconda3-latest-Linux-x86_64.sh", - url_base="https://repo.continuum.io/miniconda/", - conda_path=os.path.expanduser(os.path.join("~", "miniconda")), - rdkit_version=None, - add_python_path=True, - force=False): - """install rdkit from miniconda - ``` - import rdkit_installer - rdkit_installer.install() - ``` - """ - - python_path = os.path.join( - conda_path, - "lib", - "python{0}.{1}".format(*sys.version_info), - "site-packages", - ) - - if add_python_path and python_path not in sys.path: - logger.info("add {} to PYTHONPATH".format(python_path)) - sys.path.append(python_path) - - if os.path.isdir(os.path.join(python_path, "rdkit")): - logger.info("rdkit is already installed") - if not force: - return - - logger.info("force re-install") - - url = url_base + file_name - python_version = "{0}.{1}.{2}".format(*sys.version_info) - - logger.info("python version: {}".format(python_version)) - - if os.path.isdir(conda_path): - logger.warning("remove current miniconda") - shutil.rmtree(conda_path) - elif os.path.isfile(conda_path): - logger.warning("remove {}".format(conda_path)) - os.remove(conda_path) - - logger.info('fetching installer from {}'.format(url)) - res = requests.get(url, stream=True) - res.raise_for_status() - with open(file_name, 'wb') as f: - for chunk in res.iter_content(chunk_size): - f.write(chunk) - logger.info('done') - - logger.info('installing miniconda to {}'.format(conda_path)) - subprocess.check_call(["bash", file_name, "-b", "-p", conda_path]) - logger.info('done') - - logger.info("installing rdkit") - subprocess.check_call([ - os.path.join(conda_path, "bin", "conda"), - "install", - "--yes", - "-c", "rdkit", - "python=={}".format(python_version), - "rdkit" if rdkit_version is None else "rdkit=={}".format(rdkit_version)]) - logger.info("done") - - import rdkit - logger.info("rdkit-{} installation finished!".format(rdkit.__version__)) - - -if __name__ == "__main__": - install() -
]]>
https://navanchauhan.github.io/posts/2020-06-02-Compiling-AutoDock-Vina-on-iOSCompiling AutoDock Vina on iOSCompiling AutoDock Vina on iOShttps://navanchauhan.github.io/posts/2020-06-02-Compiling-AutoDock-Vina-on-iOSTue, 2 Jun 2020 23:23:00 +0530Compiling AutoDock Vina on iOS

Why? Because I can.

Installing makedepend

makedepend is a Unix tool used to generate dependencies of C source files. Most modern programs do not use this anymore, but then again AutoDock Vina's source code hasn't been changed since 2011. The first hurdle came when I saw that there was no makedepend command, neither was there any package on any development repository for iOS. So, I tracked down the original source code for makedepend (https://github.com/DerellLicht/makedepend). According to the repository this is actually the source code for the makedepend utility that came with some XWindows distribution back around Y2K. I am pretty sure there is a problem with my current compiler configuration because I had to manually edit the Makefile to provide the path to the iOS SDKs using the -isysroot flag.

Editing the Makefile

Original Makefile ( I used the provided mac Makefile base )

BASE=/usr/local -BOOST_VERSION=1_41 -BOOST_INCLUDE = $(BASE)/include -C_PLATFORM=-arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4 -GPP=/usr/bin/g++ -C_OPTIONS= -O3 -DNDEBUG -BOOST_LIB_VERSION= - -include ../../makefile_common -

I installed Boost 1.68.0-1 from Sam Bingner's repository. ( Otherwise I would have had to compile boost too 😫 )

Edited Makefile

BASE=/usr -BOOST_VERSION=1_68 -BOOST_INCLUDE = $(BASE)/include -C_PLATFORM=-arch arm64 -isysroot /var/sdks/Latest.sdk -GPP=/usr/bin/g++ -C_OPTIONS= -O3 -DNDEBUG -BOOST_LIB_VERSION= - -include ../../makefile_common -

Updating the Source Code

Of course since Boost 1.41 many things have been added and deprecated, that is why I had to edit the source code to make it work with version 1.68

Error 1 - No Matching Constructor

../../../src/main/main.cpp:50:9: error: no matching constructor for initialization of 'path' (aka 'boost::filesystem::path') -return path(str, boost::filesystem::native); -

This was an easy fix, I just commented this and added a return statement to return the path

return path(str) -

Error 2 - No Member Named 'nativefilestring'

../../../src/main/main.cpp:665:57: error: no member named 'native_file_string' in 'boost::filesystem::path' - std::cerr << "\n\nError: could not open \"" << e.name.native_file_string() << "\" for " << (e.in ? "reading" : "writing") << ".\n"; - ~~~~~~ ^ -../../../src/main/main.cpp:677:80: error: no member named 'native_file_string' in 'boost::filesystem::path' - std::cerr << "\n\nParse error on line " << e.line << " in file \"" << e.file.native_file_string() << "\": " << e.reason << '\n'; - ~~~~~~ ^ -2 errors generated. -

Turns out native_file_string was deprecated in Boost 1.57 and replaced with just string

Error 3 - Library Not Found

This one still boggles me because there was no reason for it to not work, as a workaround I downloaded the DEB, extracted it and used that path for compiling.

Error 4 - No Member Named 'nativefilestring' Again.

But, this time in another file and I quickly fixed it

Moment of Truth

Obviously it was working on my iPad, but would it work on another device? I transferred the compiled binary and

The package is available on my repository and only depends on boost. ( Both, Vina and Vina-Split are part of the package)

]]>
https://navanchauhan.github.io/posts/2020-06-01-Speeding-Up-Molecular-Docking-Workflow-AutoDock-Vina-and-PyMOLWorkflow for Lightning Fast Molecular Docking Part OneThis is my workflow for lightning fast molecular docking.https://navanchauhan.github.io/posts/2020-06-01-Speeding-Up-Molecular-Docking-Workflow-AutoDock-Vina-and-PyMOLMon, 1 Jun 2020 13:10:00 +0530Workflow for Lightning Fast Molecular Docking Part One

My Setup

  • macOS Catalina ( RIP 32bit app)
  • PyMOL
  • AutoDock Vina
  • Open Babel

One Command Docking

obabel -:"$(pbpaste)" --gen3d -opdbqt -Otest.pdbqt && vina --receptor lu.pdbqt --center_x -9.7 --center_y 11.4 --center_z 68.9 --size_x 19.3 --size_y 29.9 --size_z 21.3 --ligand test.pdbqt -

To run this command you simple copy the SMILES structure of the ligand you want an it automatically takes it from your clipboard, generates the 3D structure in the AutoDock PDBQT format using Open Babel and then docks it with your receptor using AutoDock Vina, all with just one command.

Let me break down the commands

obabel -:"$(pbpaste)" --gen3d -opdbqt -Otest.pdbqt -

pbpaste and pbcopy are macOS commands for pasting and copying from and to the clipboard. Linux users may install the xclip and xsel packages from their respective package managers and then insert these aliases into their bash_profile, zshrc e.t.c

alias pbcopy='xclip -selection clipboard' -alias pbpaste='xclip -selection clipboard -o' -
$(pbpaste) -

This is used in bash to evaluate the results of a command. In this scenario we are using it to get the contents of the clipboard.

The rest of the command is a normal Open Babel command to generate a 3D structure in PDBQT format and then save it as test.pdbqt

&& -

This tells the terminal to only run the next part if the previous command runs successfully without any errors.

vina --receptor lu.pdbqt --center_x -9.7 --center_y 11.4 --center_z 68.9 --size_x 19.3 --size_y 29.9 --size_z 21.3 --ligand test.pdbqt -

This is just the docking command for AutoDock Vina. In the next part I will tell how to use PyMOL and a plugin to directly generate the coordinates in Vina format --center_x -9.7 --center_y 11.4 --center_z 68.9 --size_x 19.3 --size_y 29.9 --size_z 21.3 without needing to type them manually.

]]>
https://navanchauhan.github.io/posts/2020-05-31-compiling-open-babel-on-iosCompiling Open Babel on iOSCompiling Open Babel on iOShttps://navanchauhan.github.io/posts/2020-05-31-compiling-open-babel-on-iosSun, 31 May 2020 23:30:00 +0530Compiling Open Babel on iOS

Due to the fact that my summer vacations started today, I had the brilliant idea of trying to run open babel on my iPad. To give a little background, I had tried to compile AutoDock Vina using a cross-compiler but I had miserably failed.

I am running the Checkr1n jailbreak on my iPad and the Unc0ver jailbreak on my phone.

But Why?

Well, just because I can. This is literally the only reason I tried compiling it and also partially because in the long run I want to compile AutoDock Vina so I can do Molecular Docking on the go.

Let's Go!

How hard can it be to compile open babel right? It is just a simple software with clear and concise build instructions. I just need to use cmake to build and the make to install.

It is 11 AM in the morning. I install clang, cmake and make from the Sam Bingner's repository, fired up ssh, downloaded the source code and ran the build command.`clang

Fail No. 1

I couldn't even get cmake to run, I did a little digging around StackOverflow and founf that I needed the iOS SDK, sure no problem. I waited for Xcode to update and transferred the SDKs to my iPad

scp -r /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk root@192.168.1.8:/var/sdks/ -

Them I told cmake that this is the location for my SDK 😠. Successful! Now I just needed to use make.

Fail No. 2

It was giving the error that thread-local-storage was not supported on this device.

[ 0%] Building CXX object src/CMakeFiles/openbabel.dir/alias.cpp.o -[ 1%] Building CXX object src/CMakeFiles/openbabel.dir/atom.cpp.o -In file included from /var/root/obabel/ob-src/src/atom.cpp:28: -In file included from /var/root/obabel/ob-src/include/openbabel/ring.h:29: -/var/root/obabel/ob-src/include/openbabel/typer.h:70:1: error: thread-local storage is not supported for the current target -THREAD_LOCAL OB_EXTERN OBAtomTyper atomtyper; -^ -/var/root/obabel/ob-src/include/openbabel/mol.h:35:24: note: expanded from macro 'THREAD_LOCAL' -# define THREAD_LOCAL thread_local - ^ -In file included from /var/root/obabel/ob-src/src/atom.cpp:28: -In file included from /var/root/obabel/ob-src/include/openbabel/ring.h:29: -/var/root/obabel/ob-src/include/openbabel/typer.h:84:1: error: thread-local storage is not supported for the current target -THREAD_LOCAL OB_EXTERN OBAromaticTyper aromtyper; -^ -/var/root/obabel/ob-src/include/openbabel/mol.h:35:24: note: expanded from macro 'THREAD_LOCAL' -# define THREAD_LOCAL thread_local - ^ -/var/root/obabel/ob-src/src/atom.cpp:107:10: error: thread-local storage is not supported for the current target - extern THREAD_LOCAL OBAromaticTyper aromtyper; - ^ -/var/root/obabel/ob-src/include/openbabel/mol.h:35:24: note: expanded from macro 'THREAD_LOCAL' -# define THREAD_LOCAL thread_local - ^ -/var/root/obabel/ob-src/src/atom.cpp:108:10: error: thread-local storage is not supported for the current target - extern THREAD_LOCAL OBAtomTyper atomtyper; - ^ -/var/root/obabel/ob-src/include/openbabel/mol.h:35:24: note: expanded from macro 'THREAD_LOCAL' -# define THREAD_LOCAL thread_local - ^ -/var/root/obabel/ob-src/src/atom.cpp:109:10: error: thread-local storage is not supported for the current target - extern THREAD_LOCAL OBPhModel phmodel; - ^ -/var/root/obabel/ob-src/include/openbabel/mol.h:35:24: note: expanded from macro 'THREAD_LOCAL' -# define THREAD_LOCAL thread_local - ^ -5 errors generated. -make[2]: *** [src/CMakeFiles/openbabel.dir/build.make:76: src/CMakeFiles/openbabel.dir/atom.cpp.o] Error 1 -make[1]: *** [CMakeFiles/Makefile2:1085: src/CMakeFiles/openbabel.dir/all] Error 2 -make: *** [Makefile:129: all] Error 2 -

Strange but it is alright, there is nothing that hasn't been answered on the internet.

I did a little digging around and could not find a solution 😔

As a temporary fix, I disabled multithreading by going and commenting the lines in the source code.

Packaging as a deb

This was pretty straight forward, I tried installing it on my iPad and it was working pretty smoothly.

Moment of Truth

So I airdropped the .deb to my phone and tried installing it, the installation was successful but when I tried obabel it just aborted.

Turns out because I had created an install target of a separate folder while compiling, the binaries were referencing a non-existing dylib rather than those in the /usr/lib folder. As a quick workaround I transferred the deb folder to my laptop and used otool and install_name tool: install_name_tool -change /var/root/obabel/ob-build/lib/libopenbabel.7.dylib /usr/lib/libopenbabel.7.dylib for all the executables and then signed them using jtool

I then installed it and everything went smoothly, I even ran obabel and it executed perfectly, showing the version number 3.1.0 ✌️ Ahh, smooth victory.

Nope. When I tried converting from SMILES to pdbqt, it gave an error saying plugin not found. This was weird.

So I just copied the entire build folder from my iPad to my phone and tried running it. Oops, Apple Sandbox Error, Oh no!

I spent 2 hours around this problem, only to see the documentation and realise I hadn't setup the environment variable 🤦‍♂️

The Final Fix ( For Now )

export BABEL_DATADIR="/usr/share/openbabel/3.1.0" -export BABEL_LIBDIR="/usr/lib/openbabel/3.1.0" -

This was the tragedy of trying to compile something without knowing enough about compiling. It is 11:30 as of writing this. Something as trivial as this should not have taken me so long. Am I going to try to compile AutoDock Vina next? 🤔 Maybe.

Also, if you want to try Open Babel on you jailbroken iDevice, install the package from my repository ( You, need to run the above mentioned final fix :p ). This was tested on iOS 13.5, I cannot tell if it will work on others or not.

Hopefully, I add some more screenshots to this post.

Edit 1: Added Screenshots, had to replicate the errors.

]]>
https://navanchauhan.github.io/posts/2020-04-13-Fixing-X11-Error-AmberTools-macOSFixing X11 Error on macOS Catalina for AmberTools 18/19Fixing Could not find the X11 libraries; you may need to edit config.h, AmberTools macOS Catalinahttps://navanchauhan.github.io/posts/2020-04-13-Fixing-X11-Error-AmberTools-macOSMon, 13 Apr 2020 11:41:00 +0530Fixing X11 Error on macOS Catalina for AmberTools 18/19

I was trying to install AmberTools on my macOS Catalina Installation. Running ./configure -macAccelerate clang gave me an error that it could not find X11 libraries, even though locate libXt showed that my installation was correct.

Error:

Could not find the X11 libraries; you may need to edit config.h - to set the XHOME and XLIBS variables. -Error: The X11 libraries are not in the usual location ! - To search for them try the command: locate libXt - On new Fedora OS's install the libXt-devel libXext-devel - libX11-devel libICE-devel libSM-devel packages. - On old Fedora OS's install the xorg-x11-devel package. - On RedHat OS's install the XFree86-devel package. - On Ubuntu OS's install the xorg-dev and xserver-xorg packages. - - ...more info for various linuxes at ambermd.org/ubuntu.html - - To build Amber without XLEaP, re-run configure with '-noX11: - ./configure -noX11 --with-python /usr/local/bin/python3 -macAccelerate clang -Configure failed due to the errors above! -

I searched on Google for a solution. Sadly, there was not even a single thread which had a solution about this error.

The Fix

Simply reinstalling XQuartz using homebrew fixed the error brew cask reinstall xquartz

If you do not have XQuartz installed, you need to run brew cask install xquartz

]]>
https://navanchauhan.github.io/publications/2020-03-17-Possible-Drug-Candidates-COVID-19Possible Drug Candidates for COVID-19COVID-19, has been officially labeled as a pandemic by the World Health Organisation. This paper presents cloperastine and vigabatrin as two possible drug candidates for combatting the disease along with the process by which they were discovered.https://navanchauhan.github.io/publications/2020-03-17-Possible-Drug-Candidates-COVID-19Tue, 17 Mar 2020 17:40:00 +0530Possible Drug Candidates for COVID-19

This is still a pre-print.

Download paper here

]]>
https://navanchauhan.github.io/publications/2020-03-14-generating-vaporwaveIs it possible to programmatically generate Vaporwave?This paper is about programmaticaly generating Vaporwave.https://navanchauhan.github.io/publications/2020-03-14-generating-vaporwaveSat, 14 Mar 2020 22:23:00 +0530Is it possible to programmatically generate Vaporwave?

This is still a pre-print.

Download paper here

Recommended citation:

APA

Chauhan, N. (2020, March 15). Is it possible to programmatically generate Vaporwave?. https://doi.org/10.35543/osf.io/9um2r -

MLA

Chauhan, Navan. “Is It Possible to Programmatically Generate Vaporwave?.” IndiaRxiv, 15 Mar. 2020. Web. -

Chicago

Chauhan, Navan. 2020. “Is It Possible to Programmatically Generate Vaporwave?.” IndiaRxiv. March 15. doi:10.35543/osf.io/9um2r. -

Bibtex

@misc{chauhan_2020, - title={Is it possible to programmatically generate Vaporwave?}, - url={indiarxiv.org/9um2r}, - DOI={10.35543/osf.io/9um2r}, - publisher={IndiaRxiv}, - author={Chauhan, Navan}, - year={2020}, - month={Mar} -} -
]]>
https://navanchauhan.github.io/posts/2020-03-08-Making-Vaporwave-TrackMaking My First Vaporwave Track (Remix)I made my first vaporwave remixhttps://navanchauhan.github.io/posts/2020-03-08-Making-Vaporwave-TrackSun, 8 Mar 2020 23:17:00 +0530Making My First Vaporwave Track (Remix)

I finally completed my first quick and dirty vaporwave remix of "I Want It That Way" by the Backstreet Boys

V A P O R W A V E

Vaporwave is all about A E S T H E T I C S. Vaporwave is a type of music genre that emerged as a parody of Chillwave, shared more as a meme rather than a proper musical genre. Of course this changed as the genre become mature

How to Vaporwave

The first track which is considered to be actual Vaporwave is Ramona Xavier's Macintosh Plus, this set the the guidelines for making Vaporwave

  • Take a 1980s RnB song
  • Slow it down
  • Add Bass and Treble
  • Add again
  • Add Reverb ( make sure its wet )

There you have your very own Vaporwave track.

( Now, there are some tracks being produced which are not remixes and are original )

My Remix

Where is the Programming?

The fact that there are steps on producing Vaporwave, this gave me the idea that Vaporwave can actually be made using programming, stay tuned for when I publish the program which I am working on ( Generating A E S T H E T I C artwork and remixes)

]]>
https://navanchauhan.github.io/posts/2020-03-03-Playing-With-Android-TVTinkering with an Android TVTinkering with an Android TVhttps://navanchauhan.github.io/posts/2020-03-03-Playing-With-Android-TVTue, 3 Mar 2020 18:37:00 +0530Tinkering with an Android TV

So I have an Android TV, this posts covers everything I have tried on it

Contents

  1. Getting TV's IP Address
  2. Enable Developer Settings
  3. Enable ADB
  4. Connect ADB
  5. Manipulating Packages

IP-Address

These steps should be similar for all Android-TVs

  • Go To Settings
  • Go to Network
  • Advanced Settings
  • Network Status
  • Note Down IP-Address

The other option is to go to your router's server page and get connected devices

Developer-Settings

  • Go To Settings
  • About
  • Continously click on the "Build" option until it says "You are a Developer"

Enable-ADB

  • Go to Settings
  • Go to Developer Options
  • Scroll untill you find ADB Debugging and enable that option

Connect-ADB

  • Open Terminal (Make sure you have ADB installed)
  • Enter the following command adb connect <IP_ADDRESS>
  • To test the connection run adb logcat

Manipulating Apps / Packages

Listing Packages

  • adb shell
  • pm list packages

Installing Packages

  • adb install -r package.apk

Uninstalling Packages

  • adb uninstall com.company.yourpackagename
]]>
https://navanchauhan.github.io/posts/2020-01-19-Connect-To-Bluetooth-Devices-Linux-TerminalHow to setup Bluetooth on a Raspberry PiConnecting to Bluetooth Devices using terminal, tested on Raspberry Pi Zero Whttps://navanchauhan.github.io/posts/2020-01-19-Connect-To-Bluetooth-Devices-Linux-TerminalSun, 19 Jan 2020 15:27:00 +0530How to setup Bluetooth on a Raspberry Pi

This was tested on a Raspberry Pi Zero W

Enter in the Bluetooth Mode

pi@raspberrypi:~ $ bluetoothctl

[bluetooth]# agent on

[bluetooth]# default-agent

[bluetooth]# scan on

To Pair

While being in bluetooth mode

[bluetooth]# pair XX:XX:XX:XX:XX:XX

To Exit out of bluetoothctl anytime, just type exit

]]>
https://navanchauhan.github.io/posts/2020-01-16-Image-Classifier-Using-TuricreateCreating a Custom Image Classifier using Turicreate to detect Smoke and FireTutorial on creating a custom Image Classifier using Turicreate and a dataset from Kagglehttps://navanchauhan.github.io/posts/2020-01-16-Image-Classifier-Using-TuricreateThu, 16 Jan 2020 10:36:00 +0530Creating a Custom Image Classifier using Turicreate to detect Smoke and Fire

For setting up Kaggle with Google Colab, please refer to my previous post

Dataset

Mounting Google Drive

import os -from google.colab import drive -drive.mount('/content/drive') -

Downloading Dataset from Kaggle

os.environ['KAGGLE_CONFIG_DIR'] = "/content/drive/My Drive/" -!kaggle datasets download ashutosh69/fire-and-smoke-dataset -!unzip "fire-and-smoke-dataset.zip" -

Pre-Processing

!mkdir default smoke fire -


!ls data/data/img_data/train/default/*.jpg -


img_1002.jpg img_20.jpg img_519.jpg img_604.jpg img_80.jpg -img_1003.jpg img_21.jpg img_51.jpg img_60.jpg img_8.jpg -img_1007.jpg img_22.jpg img_520.jpg img_61.jpg img_900.jpg -img_100.jpg img_23.jpg img_521.jpg 'img_62 (2).jpg' img_920.jpg -img_1014.jpg img_24.jpg 'img_52 (2).jpg' img_62.jpg img_921.jpg -img_1018.jpg img_29.jpg img_522.jpg 'img_63 (2).jpg' img_922.jpg -img_101.jpg img_3000.jpg img_523.jpg img_63.jpg img_923.jpg -img_1027.jpg img_335.jpg img_524.jpg img_66.jpg img_924.jpg -img_102.jpg img_336.jpg img_52.jpg img_67.jpg img_925.jpg -img_1042.jpg img_337.jpg img_530.jpg img_68.jpg img_926.jpg -img_1043.jpg img_338.jpg img_531.jpg img_700.jpg img_927.jpg -img_1046.jpg img_339.jpg 'img_53 (2).jpg' img_701.jpg img_928.jpg -img_1052.jpg img_340.jpg img_532.jpg img_702.jpg img_929.jpg -img_107.jpg img_341.jpg img_533.jpg img_703.jpg img_930.jpg -img_108.jpg img_3.jpg img_537.jpg img_704.jpg img_931.jpg -img_109.jpg img_400.jpg img_538.jpg img_705.jpg img_932.jpg -img_10.jpg img_471.jpg img_539.jpg img_706.jpg img_933.jpg -img_118.jpg img_472.jpg img_53.jpg img_707.jpg img_934.jpg -img_12.jpg img_473.jpg img_540.jpg img_708.jpg img_935.jpg -img_14.jpg img_488.jpg img_541.jpg img_709.jpg img_938.jpg -img_15.jpg img_489.jpg 'img_54 (2).jpg' img_70.jpg img_958.jpg -img_16.jpg img_490.jpg img_542.jpg img_710.jpg img_971.jpg -img_17.jpg img_491.jpg img_543.jpg 'img_71 (2).jpg' img_972.jpg -img_18.jpg img_492.jpg img_54.jpg img_71.jpg img_973.jpg -img_19.jpg img_493.jpg 'img_55 (2).jpg' img_72.jpg img_974.jpg -img_1.jpg img_494.jpg img_55.jpg img_73.jpg img_975.jpg -img_200.jpg img_495.jpg img_56.jpg img_74.jpg img_980.jpg -img_201.jpg img_496.jpg img_57.jpg img_75.jpg img_988.jpg -img_202.jpg img_497.jpg img_58.jpg img_76.jpg img_9.jpg -img_203.jpg img_4.jpg img_59.jpg img_77.jpg -img_204.jpg img_501.jpg img_601.jpg img_78.jpg -img_205.jpg img_502.jpg img_602.jpg img_79.jpg -img_206.jpg img_50.jpg img_603.jpg img_7.jpg -

The image files are not actually JPEG, thus we first need to save them in the correct format for Turicreate

from PIL import Image -import glob - - -folders = ["default","smoke","fire"] -for folder in folders: - n = 1 - for file in glob.glob("./data/data/img_data/train/" + folder + "/*.jpg"): - im = Image.open(file) - rgb_im = im.convert('RGB') - rgb_im.save((folder + "/" + str(n) + ".jpg"), quality=100) - n +=1 - for file in glob.glob("./data/data/img_data/train/" + folder + "/*.jpg"): - im = Image.open(file) - rgb_im = im.convert('RGB') - rgb_im.save((folder + "/" + str(n) + ".jpg"), quality=100) - n +=1 -


!mkdir train -!mv default ./train -!mv smoke ./train -!mv fire ./train -

Making the Image Classifier

Making an SFrame

!pip install turicreate -


import turicreate as tc -import os - -data = tc.image_analysis.load_images("./train", with_path=True) - -data["label"] = data["path"].apply(lambda path: os.path.basename(os.path.dirname(path))) - -print(data) - -data.save('fire-smoke.sframe') -


+-------------------------+------------------------+ -| path | image | -+-------------------------+------------------------+ -| ./train/default/1.jpg | Height: 224 Width: 224 | -| ./train/default/10.jpg | Height: 224 Width: 224 | -| ./train/default/100.jpg | Height: 224 Width: 224 | -| ./train/default/101.jpg | Height: 224 Width: 224 | -| ./train/default/102.jpg | Height: 224 Width: 224 | -| ./train/default/103.jpg | Height: 224 Width: 224 | -| ./train/default/104.jpg | Height: 224 Width: 224 | -| ./train/default/105.jpg | Height: 224 Width: 224 | -| ./train/default/106.jpg | Height: 224 Width: 224 | -| ./train/default/107.jpg | Height: 224 Width: 224 | -+-------------------------+------------------------+ -[2028 rows x 2 columns] -Note: Only the head of the SFrame is printed. -You can use print_rows(num_rows=m, num_columns=n) to print more rows and columns. -+-------------------------+------------------------+---------+ -| path | image | label | -+-------------------------+------------------------+---------+ -| ./train/default/1.jpg | Height: 224 Width: 224 | default | -| ./train/default/10.jpg | Height: 224 Width: 224 | default | -| ./train/default/100.jpg | Height: 224 Width: 224 | default | -| ./train/default/101.jpg | Height: 224 Width: 224 | default | -| ./train/default/102.jpg | Height: 224 Width: 224 | default | -| ./train/default/103.jpg | Height: 224 Width: 224 | default | -| ./train/default/104.jpg | Height: 224 Width: 224 | default | -| ./train/default/105.jpg | Height: 224 Width: 224 | default | -| ./train/default/106.jpg | Height: 224 Width: 224 | default | -| ./train/default/107.jpg | Height: 224 Width: 224 | default | -+-------------------------+------------------------+---------+ -[2028 rows x 3 columns] -Note: Only the head of the SFrame is printed. -You can use print_rows(num_rows=m, num_columns=n) to print more rows and columns. -

Making the Model

import turicreate as tc - -# Load the data -data = tc.SFrame('fire-smoke.sframe') - -# Make a train-test split -train_data, test_data = data.random_split(0.8) - -# Create the model -model = tc.image_classifier.create(train_data, target='label') - -# Save predictions to an SArray -predictions = model.predict(test_data) - -# Evaluate the model and print the results -metrics = model.evaluate(test_data) -print(metrics['accuracy']) - -# Save the model for later use in Turi Create -model.save('fire-smoke.model') - -# Export for use in Core ML -model.export_coreml('fire-smoke.mlmodel') -


Performing feature extraction on resized images... -Completed 64/1633 -Completed 128/1633 -Completed 192/1633 -Completed 256/1633 -Completed 320/1633 -Completed 384/1633 -Completed 448/1633 -Completed 512/1633 -Completed 576/1633 -Completed 640/1633 -Completed 704/1633 -Completed 768/1633 -Completed 832/1633 -Completed 896/1633 -Completed 960/1633 -Completed 1024/1633 -Completed 1088/1633 -Completed 1152/1633 -Completed 1216/1633 -Completed 1280/1633 -Completed 1344/1633 -Completed 1408/1633 -Completed 1472/1633 -Completed 1536/1633 -Completed 1600/1633 -Completed 1633/1633 -PROGRESS: Creating a validation set from 5 percent of training data. This may take a while. - You can set ``validation_set=None`` to disable validation tracking. - -Logistic regression: --------------------------------------------------------- -Number of examples : 1551 -Number of classes : 3 -Number of feature columns : 1 -Number of unpacked features : 2048 -Number of coefficients : 4098 -Starting L-BFGS --------------------------------------------------------- -+-----------+----------+-----------+--------------+-------------------+---------------------+ -| Iteration | Passes | Step size | Elapsed Time | Training Accuracy | Validation Accuracy | -+-----------+----------+-----------+--------------+-------------------+---------------------+ -| 0 | 6 | 0.018611 | 0.891830 | 0.553836 | 0.560976 | -| 1 | 10 | 0.390832 | 1.622383 | 0.744681 | 0.792683 | -| 2 | 11 | 0.488541 | 1.943987 | 0.733075 | 0.804878 | -| 3 | 14 | 2.442703 | 2.512545 | 0.727917 | 0.841463 | -| 4 | 15 | 2.442703 | 2.826964 | 0.861380 | 0.853659 | -| 9 | 28 | 2.340435 | 5.492035 | 0.941328 | 0.975610 | -+-----------+----------+-----------+--------------+-------------------+---------------------+ -Performing feature extraction on resized images... -Completed 64/395 -Completed 128/395 -Completed 192/395 -Completed 256/395 -Completed 320/395 -Completed 384/395 -Completed 395/395 -0.9316455696202531 -

We just got an accuracy of 94% on Training Data and 97% on Validation Data!

]]>
https://navanchauhan.github.io/posts/2020-01-15-Setting-up-Kaggle-to-use-with-ColabSetting up Kaggle to use with Google ColabTutorial on setting up kaggle, to use with Google Colabhttps://navanchauhan.github.io/posts/2020-01-15-Setting-up-Kaggle-to-use-with-ColabWed, 15 Jan 2020 23:36:00 +0530Setting up Kaggle to use with Google Colab

In order to be able to access Kaggle Datasets, you will need to have an account on Kaggle (which is Free)

Grabbing Our Tokens

Go to Kaggle

Click on your User Profile and Click on My Account

Scroll Down until you see Create New API Token

This will download your token as a JSON file

Copy the File to the root folder of your Google Drive

Setting up Colab

Mounting Google Drive

import os -from google.colab import drive -drive.mount('/content/drive') -

After this click on the URL in the output section, login and then paste the Auth Code

Configuring Kaggle

os.environ['KAGGLE_CONFIG_DIR'] = "/content/drive/My Drive/" -

Voila! You can now download Kaggle datasets

]]>
https://navanchauhan.github.io/posts/2020-01-14-Converting-between-PIL-NumPyConverting between image and NumPy arrayShort code snippet for converting between PIL image and NumPy arrays.https://navanchauhan.github.io/posts/2020-01-14-Converting-between-PIL-NumPyTue, 14 Jan 2020 00:10:00 +0530Converting between image and NumPy array
import numpy -import PIL - -# Convert PIL Image to NumPy array -img = PIL.Image.open("foo.jpg") -arr = numpy.array(img) - -# Convert array to Image -img = PIL.Image.fromarray(arr) -

Saving an Image

try: - img.save(destination, "JPEG", quality=80, optimize=True, progressive=True) -except IOError: - PIL.ImageFile.MAXBLOCK = img.size[0] * img.size[1] - img.save(destination, "JPEG", quality=80, optimize=True, progressive=True) -
]]>
https://navanchauhan.github.io/posts/2019-12-22-Fake-News-DetectorBuilding a Fake News Detector with TuricreateIn this tutorial we will build a fake news detecting app from scratch, using Turicreate for the machine learning model and SwiftUI for building the apphttps://navanchauhan.github.io/posts/2019-12-22-Fake-News-DetectorSun, 22 Dec 2019 11:10:00 +0530Building a Fake News Detector with Turicreate

In this tutorial we will build a fake news detecting app from scratch, using Turicreate for the machine learning model and SwiftUI for building the app

Note: These commands are written as if you are running a jupyter notebook.

Building the Machine Learning Model

Data Gathering

To build a classifier, you need a lot of data. George McIntire (GH: @joolsa) has created a wonderful dataset containing the headline, body and whether it is fake or real. Whenever you are looking for a dataset, always try searching on Kaggle and GitHub before you start building your own

Dependencies

I used a Google Colab instance for training my model. If you also plan on using Google Colab then I recommend choosing a GPU Instance (It is Free) This allows you to train the model on the GPU. Turicreate is built on top of Apache's MXNet Framework, for us to use GPU we need to install a CUDA compatible MXNet package.

!pip install turicreate -!pip uninstall -y mxnet -!pip install mxnet-cu100==1.4.0.post0 -

If you do not wish to train on GPU or are running it on your computer, you can ignore the last two lines

Downloading the Dataset

!wget -q "https://github.com/joolsa/fake_real_news_dataset/raw/master/fake_or_real_news.csv.zip" -!unzip fake_or_real_news.csv.zip -

Model Creation

import turicreate as tc -tc.config.set_num_gpus(-1) # If you do not wish to use GPUs, set it to 0 -
dataSFrame = tc.SFrame('fake_or_real_news.csv') -

The dataset contains a column named "X1", which is of no use to us. Therefore, we simply drop it

dataSFrame.remove_column('X1') -

Splitting Dataset

train, test = dataSFrame.random_split(.9) -

Training

model = tc.text_classifier.create( - dataset=train, - target='label', - features=['title','text'] -) -
+-----------+----------+-----------+--------------+-------------------+---------------------+ -| Iteration | Passes | Step size | Elapsed Time | Training Accuracy | Validation Accuracy | -+-----------+----------+-----------+--------------+-------------------+---------------------+ -| 0 | 2 | 1.000000 | 1.156349 | 0.889680 | 0.790036 | -| 1 | 4 | 1.000000 | 1.359196 | 0.985952 | 0.918149 | -| 2 | 6 | 0.820091 | 1.557205 | 0.990260 | 0.914591 | -| 3 | 7 | 1.000000 | 1.684872 | 0.998689 | 0.925267 | -| 4 | 8 | 1.000000 | 1.814194 | 0.999063 | 0.925267 | -| 9 | 14 | 1.000000 | 2.507072 | 1.000000 | 0.911032 | -+-----------+----------+-----------+--------------+-------------------+---------------------+ -

Testing the Model

est_predictions = model.predict(test) -accuracy = tc.evaluation.accuracy(test['label'], test_predictions) -print(f'Topic classifier model has a testing accuracy of {accuracy*100}% ', flush=True) -
Topic classifier model has a testing accuracy of 92.3076923076923% -

We have just created our own Fake News Detection Model which has an accuracy of 92%!

example_text = {"title": ["Middling ‘Rise Of Skywalker’ Review Leaves Fan On Fence About Whether To Threaten To Kill Critic"], "text": ["Expressing ambivalence toward the relatively balanced appraisal of the film, Star Wars fan Miles Ariely admitted Thursday that an online publication’s middling review of The Rise Of Skywalker had left him on the fence about whether he would still threaten to kill the critic who wrote it. “I’m really of two minds about this, because on the one hand, he said the new movie fails to live up to the original trilogy, which makes me at least want to throw a brick through his window with a note telling him to watch his back,” said Ariely, confirming he had already drafted an eight-page-long death threat to Stan Corimer of the website Screen-On Time, but had not yet decided whether to post it to the reviewer’s Facebook page. “On the other hand, though, he commended J.J. Abrams’ skillful pacing and faithfulness to George Lucas’ vision, which makes me wonder if I should just call the whole thing off. Now, I really don’t feel like camping outside his house for hours. Maybe I could go with a response that’s somewhere in between, like, threatening to kill his dog but not everyone in his whole family? I don’t know. This is a tough one.” At press time, sources reported that Ariely had resolved to wear his Ewok costume while he murdered the critic in his sleep."]} -example_prediction = model.classify(tc.SFrame(example_text)) -print(example_prediction, flush=True) -
+-------+--------------------+ -| class | probability | -+-------+--------------------+ -| FAKE | 0.9245648658345308 | -+-------+--------------------+ -[1 rows x 2 columns] -

Exporting the Model

model_name = 'FakeNews' -coreml_model_name = model_name + '.mlmodel' -exportedModel = model.export_coreml(coreml_model_name) -

Note: To download files from Google Colab, simply click on the files section in the sidebar, right click on filename and then click on download

Link to Colab Notebook

Building the App using SwiftUI

Initial Setup

First we create a single view app (make sure you check the use SwiftUI button)

Then we copy our .mlmodel file to our project (Just drag and drop the file in the XCode Files Sidebar)

Our ML Model does not take a string directly as an input, rather it takes bag of words as an input. DescriptionThe bag-of-words model is a simplifying representation used in NLP, in this text is represented as a bag of words, without any regard for grammar or order, but noting multiplicity

We define our bag of words function

func bow(text: String) -> [String: Double] { - var bagOfWords = [String: Double]() - - let tagger = NSLinguisticTagger(tagSchemes: [.tokenType], options: 0) - let range = NSRange(location: 0, length: text.utf16.count) - let options: NSLinguisticTagger.Options = [.omitPunctuation, .omitWhitespace] - tagger.string = text - - tagger.enumerateTags(in: range, unit: .word, scheme: .tokenType, options: options) { _, tokenRange, _ in - let word = (text as NSString).substring(with: tokenRange) - if bagOfWords[word] != nil { - bagOfWords[word]! += 1 - } else { - bagOfWords[word] = 1 - } - } - - return bagOfWords - } -

We also declare our variables

@State private var title: String = "" -@State private var headline: String = "" -@State private var alertTitle = "" -@State private var alertText = "" -@State private var showingAlert = false -

Finally, we implement a simple function which reads the two text fields, creates their bag of words representation and displays an alert with the appropriate result

Complete Code

import SwiftUI - -struct ContentView: View { - @State private var title: String = "" - @State private var headline: String = "" - - @State private var alertTitle = "" - @State private var alertText = "" - @State private var showingAlert = false - - var body: some View { - NavigationView { - VStack(alignment: .leading) { - Text("Headline").font(.headline) - TextField("Please Enter Headline", text: $title) - .lineLimit(nil) - Text("Body").font(.headline) - TextField("Please Enter the content", text: $headline) - .lineLimit(nil) - } - .navigationBarTitle("Fake News Checker") - .navigationBarItems(trailing: - Button(action: classifyFakeNews) { - Text("Check") - }) - .padding() - .alert(isPresented: $showingAlert){ - Alert(title: Text(alertTitle), message: Text(alertText), dismissButton: .default(Text("OK"))) - } - } - - } - - func classifyFakeNews(){ - let model = FakeNews() - let myTitle = bow(text: title) - let myText = bow(text: headline) - do { - let prediction = try model.prediction(title: myTitle, text: myText) - alertTitle = prediction.label - alertText = "It is likely that this piece of news is \(prediction.label.lowercased())." - print(alertText) - } catch { - alertTitle = "Error" - alertText = "Sorry, could not classify if the input news was fake or not." - } - - showingAlert = true - } - func bow(text: String) -> [String: Double] { - var bagOfWords = [String: Double]() - - let tagger = NSLinguisticTagger(tagSchemes: [.tokenType], options: 0) - let range = NSRange(location: 0, length: text.utf16.count) - let options: NSLinguisticTagger.Options = [.omitPunctuation, .omitWhitespace] - tagger.string = text - - tagger.enumerateTags(in: range, unit: .word, scheme: .tokenType, options: options) { _, tokenRange, _ in - let word = (text as NSString).substring(with: tokenRange) - if bagOfWords[word] != nil { - bagOfWords[word]! += 1 - } else { - bagOfWords[word] = 1 - } - } - - return bagOfWords - } -} - -struct ContentView_Previews: PreviewProvider { - static var previews: some View { - ContentView() - } -} -
]]>
https://navanchauhan.github.io/posts/2019-12-16-TensorFlow-Polynomial-RegressionPolynomial Regression Using TensorFlowPolynomial regression using TensorFlowhttps://navanchauhan.github.io/posts/2019-12-16-TensorFlow-Polynomial-RegressionMon, 16 Dec 2019 14:16:00 +0530Polynomial Regression Using TensorFlow

In this tutorial you will learn about polynomial regression and how you can implement it in Tensorflow.

In this, we will be performing polynomial regression using 5 types of equations -

  • Linear
  • Quadratic
  • Cubic
  • Quartic
  • Quintic

Regression

What is Regression?

Regression is a statistical measurement that is used to try to determine the relationship between a dependent variable (often denoted by Y), and series of varying variables (called independent variables, often denoted by X ).

What is Polynomial Regression

This is a form of Regression Analysis where the relationship between Y and X is denoted as the nth degree/power of X. Polynomial regression even fits a non-linear relationship (e.g when the points don't form a straight line).

Imports

import tensorflow.compat.v1 as tf -tf.disable_v2_behavior() -import matplotlib.pyplot as plt -import numpy as np -import pandas as pd -

Dataset

Creating Random Data

Even though in this tutorial we will use a Position Vs Salary dataset, it is important to know how to create synthetic data

To create 50 values spaced evenly between 0 and 50, we use NumPy's linspace function

linspace(lower_limit, upper_limit, no_of_observations)

x = np.linspace(0, 50, 50) -y = np.linspace(0, 50, 50) -

We use the following function to add noise to the data, so that our values

x += np.random.uniform(-4, 4, 50) -y += np.random.uniform(-4, 4, 50) -

Position vs Salary Dataset

We will be using https://drive.google.com/file/d/1tNL4jxZEfpaP4oflfSn6pIHJX7Pachm9/view (Salary vs Position Dataset)

!wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=1tNL4jxZEfpaP4oflfSn6pIHJX7Pachm9' -O data.csv -
df = pd.read_csv("data.csv") -
df # this gives us a preview of the dataset we are working with -
| Position | Level | Salary | -|-------------------|-------|---------| -| Business Analyst | 1 | 45000 | -| Junior Consultant | 2 | 50000 | -| Senior Consultant | 3 | 60000 | -| Manager | 4 | 80000 | -| Country Manager | 5 | 110000 | -| Region Manager | 6 | 150000 | -| Partner | 7 | 200000 | -| Senior Partner | 8 | 300000 | -| C-level | 9 | 500000 | -| CEO | 10 | 1000000 | -

We convert the salary column as the ordinate (y-coordinate) and level column as the abscissa

abscissa = df["Level"].to_list() # abscissa = [1,2,3,4,5,6,7,8,9,10] -ordinate = df["Salary"].to_list() # ordinate = [45000,50000,60000,80000,110000,150000,200000,300000,500000,1000000] -
n = len(abscissa) # no of observations -plt.scatter(abscissa, ordinate) -plt.ylabel('Salary') -plt.xlabel('Position') -plt.title("Salary vs Position") -plt.show() -

Defining Stuff

X = tf.placeholder("float") -Y = tf.placeholder("float") -

Defining Variables

We first define all the coefficients and constant as tensorflow variables having a random initial value

a = tf.Variable(np.random.randn(), name = "a") -b = tf.Variable(np.random.randn(), name = "b") -c = tf.Variable(np.random.randn(), name = "c") -d = tf.Variable(np.random.randn(), name = "d") -e = tf.Variable(np.random.randn(), name = "e") -f = tf.Variable(np.random.randn(), name = "f") -

Model Configuration

learning_rate = 0.2 -no_of_epochs = 25000 -

Equations

deg1 = a*X + b -deg2 = a*tf.pow(X,2) + b*X + c -deg3 = a*tf.pow(X,3) + b*tf.pow(X,2) + c*X + d -deg4 = a*tf.pow(X,4) + b*tf.pow(X,3) + c*tf.pow(X,2) + d*X + e -deg5 = a*tf.pow(X,5) + b*tf.pow(X,4) + c*tf.pow(X,3) + d*tf.pow(X,2) + e*X + f -

Cost Function

We use the Mean Squared Error Function

mse1 = tf.reduce_sum(tf.pow(deg1-Y,2))/(2*n) -mse2 = tf.reduce_sum(tf.pow(deg2-Y,2))/(2*n) -mse3 = tf.reduce_sum(tf.pow(deg3-Y,2))/(2*n) -mse4 = tf.reduce_sum(tf.pow(deg4-Y,2))/(2*n) -mse5 = tf.reduce_sum(tf.pow(deg5-Y,2))/(2*n) -

Optimizer

We use the AdamOptimizer for the polynomial functions and GradientDescentOptimizer for the linear function

optimizer1 = tf.train.GradientDescentOptimizer(learning_rate).minimize(mse1) -optimizer2 = tf.train.AdamOptimizer(learning_rate).minimize(mse2) -optimizer3 = tf.train.AdamOptimizer(learning_rate).minimize(mse3) -optimizer4 = tf.train.AdamOptimizer(learning_rate).minimize(mse4) -optimizer5 = tf.train.AdamOptimizer(learning_rate).minimize(mse5) -
init=tf.global_variables_initializer() -

Model Predictions

For each type of equation first we make the model predict the values of the coefficient(s) and constant, once we get these values we use it to predict the Y values using the X values. We then plot it to compare the actual data and predicted line.

Linear Equation

with tf.Session() as sess: - sess.run(init) - for epoch in range(no_of_epochs): - for (x,y) in zip(abscissa, ordinate): - sess.run(optimizer1, feed_dict={X:x, Y:y}) - if (epoch+1)%1000==0: - cost = sess.run(mse1,feed_dict={X:abscissa,Y:ordinate}) - print("Epoch",(epoch+1), ": Training Cost:", cost," a,b:",sess.run(a),sess.run(b)) - - training_cost = sess.run(mse1,feed_dict={X:abscissa,Y:ordinate}) - coefficient1 = sess.run(a) - constant = sess.run(b) - -print(training_cost, coefficient1, constant) -
Epoch 1000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 2000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 3000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 4000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 5000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 6000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 7000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 8000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 9000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 10000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 11000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 12000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 13000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 14000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 15000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 16000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 17000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 18000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 19000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 20000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 21000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 22000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 23000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 24000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -Epoch 25000 : Training Cost: 88999125000.0 a,b: 180396.42 -478869.12 -88999125000.0 180396.42 -478869.12 -
predictions = [] -for x in abscissa: - predictions.append((coefficient1*x + constant)) -plt.plot(abscissa , ordinate, 'ro', label ='Original data') -plt.plot(abscissa, predictions, label ='Fitted line') -plt.title('Linear Regression Result') -plt.legend() -plt.show() -

Quadratic Equation

with tf.Session() as sess: - sess.run(init) - for epoch in range(no_of_epochs): - for (x,y) in zip(abscissa, ordinate): - sess.run(optimizer2, feed_dict={X:x, Y:y}) - if (epoch+1)%1000==0: - cost = sess.run(mse2,feed_dict={X:abscissa,Y:ordinate}) - print("Epoch",(epoch+1), ": Training Cost:", cost," a,b,c:",sess.run(a),sess.run(b),sess.run(c)) - - training_cost = sess.run(mse2,feed_dict={X:abscissa,Y:ordinate}) - coefficient1 = sess.run(a) - coefficient2 = sess.run(b) - constant = sess.run(c) - -print(training_cost, coefficient1, coefficient2, constant) -
Epoch 1000 : Training Cost: 52571360000.0 a,b,c: 1002.4456 1097.0197 1276.6921 -Epoch 2000 : Training Cost: 37798890000.0 a,b,c: 1952.4263 2130.2825 2469.7756 -Epoch 3000 : Training Cost: 26751185000.0 a,b,c: 2839.5825 3081.6118 3554.351 -Epoch 4000 : Training Cost: 19020106000.0 a,b,c: 3644.56 3922.9563 4486.3135 -Epoch 5000 : Training Cost: 14060446000.0 a,b,c: 4345.042 4621.4233 5212.693 -Epoch 6000 : Training Cost: 11201084000.0 a,b,c: 4921.1855 5148.1504 5689.0713 -Epoch 7000 : Training Cost: 9732740000.0 a,b,c: 5364.764 5493.0156 5906.754 -Epoch 8000 : Training Cost: 9050918000.0 a,b,c: 5685.4067 5673.182 5902.0728 -Epoch 9000 : Training Cost: 8750394000.0 a,b,c: 5906.9814 5724.8906 5734.746 -Epoch 10000 : Training Cost: 8613128000.0 a,b,c: 6057.3677 5687.3364 5461.167 -Epoch 11000 : Training Cost: 8540034600.0 a,b,c: 6160.547 5592.3022 5122.8633 -Epoch 12000 : Training Cost: 8490983000.0 a,b,c: 6233.9175 5462.025 4747.111 -Epoch 13000 : Training Cost: 8450816500.0 a,b,c: 6289.048 5310.7583 4350.6997 -Epoch 14000 : Training Cost: 8414082000.0 a,b,c: 6333.199 5147.394 3943.9294 -Epoch 15000 : Training Cost: 8378841600.0 a,b,c: 6370.7944 4977.1704 3532.476 -Epoch 16000 : Training Cost: 8344471000.0 a,b,c: 6404.468 4803.542 3120.2087 -Epoch 17000 : Training Cost: 8310785500.0 a,b,c: 6435.365 4628.1523 2709.1445 -Epoch 18000 : Training Cost: 8277482000.0 a,b,c: 6465.5493 4451.833 2300.2783 -Epoch 19000 : Training Cost: 8244650000.0 a,b,c: 6494.609 4274.826 1894.3738 -Epoch 20000 : Training Cost: 8212349000.0 a,b,c: 6522.8247 4098.1733 1491.9915 -Epoch 21000 : Training Cost: 8180598300.0 a,b,c: 6550.6567 3922.7405 1093.3868 -Epoch 22000 : Training Cost: 8149257700.0 a,b,c: 6578.489 3747.8362 698.53357 -Epoch 23000 : Training Cost: 8118325000.0 a,b,c: 6606.1973 3573.2742 307.3541 -Epoch 24000 : Training Cost: 8088001000.0 a,b,c: 6632.96 3399.878 -79.89219 -Epoch 25000 : Training Cost: 8058094600.0 a,b,c: 6659.793 3227.2517 -463.03156 -8058094600.0 6659.793 3227.2517 -463.03156 -
predictions = [] -for x in abscissa: - predictions.append((coefficient1*pow(x,2) + coefficient2*x + constant)) -plt.plot(abscissa , ordinate, 'ro', label ='Original data') -plt.plot(abscissa, predictions, label ='Fitted line') -plt.title('Quadratic Regression Result') -plt.legend() -plt.show() -

Cubic

with tf.Session() as sess: - sess.run(init) - for epoch in range(no_of_epochs): - for (x,y) in zip(abscissa, ordinate): - sess.run(optimizer3, feed_dict={X:x, Y:y}) - if (epoch+1)%1000==0: - cost = sess.run(mse3,feed_dict={X:abscissa,Y:ordinate}) - print("Epoch",(epoch+1), ": Training Cost:", cost," a,b,c,d:",sess.run(a),sess.run(b),sess.run(c),sess.run(d)) - - training_cost = sess.run(mse3,feed_dict={X:abscissa,Y:ordinate}) - coefficient1 = sess.run(a) - coefficient2 = sess.run(b) - coefficient3 = sess.run(c) - constant = sess.run(d) - -print(training_cost, coefficient1, coefficient2, coefficient3, constant) -
Epoch 1000 : Training Cost: 4279814000.0 a,b,c,d: 670.1527 694.4212 751.4653 903.9527 -Epoch 2000 : Training Cost: 3770950400.0 a,b,c,d: 742.6414 666.3489 636.94525 859.2088 -Epoch 3000 : Training Cost: 3717708300.0 a,b,c,d: 756.2582 569.3339 448.105 748.23956 -Epoch 4000 : Training Cost: 3667464000.0 a,b,c,d: 769.4476 474.0318 265.5761 654.75525 -Epoch 5000 : Training Cost: 3620040700.0 a,b,c,d: 782.32324 380.54272 89.39888 578.5136 -Epoch 6000 : Training Cost: 3575265800.0 a,b,c,d: 794.8898 288.83356 -80.5215 519.13654 -Epoch 7000 : Training Cost: 3532972000.0 a,b,c,d: 807.1608 198.87044 -244.31102 476.2061 -Epoch 8000 : Training Cost: 3493009200.0 a,b,c,d: 819.13513 110.64169 -402.0677 449.3291 -Epoch 9000 : Training Cost: 3455228400.0 a,b,c,d: 830.80255 24.0964 -553.92804 438.0652 -Epoch 10000 : Training Cost: 3419475500.0 a,b,c,d: 842.21594 -60.797424 -700.0123 441.983 -Epoch 11000 : Training Cost: 3385625300.0 a,b,c,d: 853.3363 -144.08699 -840.467 460.6356 -Epoch 12000 : Training Cost: 3353544700.0 a,b,c,d: 864.19135 -225.8125 -975.4196 493.57703 -Epoch 13000 : Training Cost: 3323125000.0 a,b,c,d: 874.778 -305.98932 -1104.9867 540.39465 -Epoch 14000 : Training Cost: 3294257000.0 a,b,c,d: 885.1007 -384.63474 -1229.277 600.65607 -Epoch 15000 : Training Cost: 3266820000.0 a,b,c,d: 895.18823 -461.819 -1348.4417 673.9051 -Epoch 16000 : Training Cost: 3240736000.0 a,b,c,d: 905.0128 -537.541 -1462.6171 759.7118 -Epoch 17000 : Training Cost: 3215895000.0 a,b,c,d: 914.60065 -611.8676 -1571.9058 857.6638 -Epoch 18000 : Training Cost: 3192216800.0 a,b,c,d: 923.9603 -684.8093 -1676.4642 967.30475 -Epoch 19000 : Training Cost: 3169632300.0 a,b,c,d: 933.08594 -756.3582 -1776.4275 1088.2198 -Epoch 20000 : Training Cost: 3148046300.0 a,b,c,d: 941.9928 -826.6257 -1871.9355 1219.9702 -Epoch 21000 : Training Cost: 3127394800.0 a,b,c,d: 950.67896 -895.6205 -1963.0989 1362.1665 -Epoch 22000 : Training Cost: 3107608600.0 a,b,c,d: 959.1487 -963.38116 -2050.0586 1514.4026 -Epoch 23000 : Training Cost: 3088618200.0 a,b,c,d: 967.4355 -1029.9625 -2132.961 1676.2717 -Epoch 24000 : Training Cost: 3070361300.0 a,b,c,d: 975.52875 -1095.4292 -2211.854 1847.4485 -Epoch 25000 : Training Cost: 3052791300.0 a,b,c,d: 983.4346 -1159.7922 -2286.9412 2027.4857 -3052791300.0 983.4346 -1159.7922 -2286.9412 2027.4857 -
predictions = [] -for x in abscissa: - predictions.append((coefficient1*pow(x,3) + coefficient2*pow(x,2) + coefficient3*x + constant)) -plt.plot(abscissa , ordinate, 'ro', label ='Original data') -plt.plot(abscissa, predictions, label ='Fitted line') -plt.title('Cubic Regression Result') -plt.legend() -plt.show() -

Quartic

with tf.Session() as sess: - sess.run(init) - for epoch in range(no_of_epochs): - for (x,y) in zip(abscissa, ordinate): - sess.run(optimizer4, feed_dict={X:x, Y:y}) - if (epoch+1)%1000==0: - cost = sess.run(mse4,feed_dict={X:abscissa,Y:ordinate}) - print("Epoch",(epoch+1), ": Training Cost:", cost," a,b,c,d:",sess.run(a),sess.run(b),sess.run(c),sess.run(d),sess.run(e)) - - training_cost = sess.run(mse4,feed_dict={X:abscissa,Y:ordinate}) - coefficient1 = sess.run(a) - coefficient2 = sess.run(b) - coefficient3 = sess.run(c) - coefficient4 = sess.run(d) - constant = sess.run(e) - -print(training_cost, coefficient1, coefficient2, coefficient3, coefficient4, constant) -
Epoch 1000 : Training Cost: 1902632600.0 a,b,c,d: 84.48304 52.210594 54.791424 142.51952 512.0343 -Epoch 2000 : Training Cost: 1854316200.0 a,b,c,d: 88.998955 13.073557 14.276088 223.55667 1056.4655 -Epoch 3000 : Training Cost: 1812812400.0 a,b,c,d: 92.9462 -22.331177 -15.262934 327.41858 1634.9054 -Epoch 4000 : Training Cost: 1775716000.0 a,b,c,d: 96.42522 -54.64535 -35.829437 449.5028 2239.1392 -Epoch 5000 : Training Cost: 1741494100.0 a,b,c,d: 99.524734 -84.43976 -49.181057 585.85876 2862.4915 -Epoch 6000 : Training Cost: 1709199600.0 a,b,c,d: 102.31984 -112.19895 -56.808075 733.1876 3499.6199 -Epoch 7000 : Training Cost: 1678261800.0 a,b,c,d: 104.87324 -138.32709 -59.9442 888.79626 4146.2944 -Epoch 8000 : Training Cost: 1648340600.0 a,b,c,d: 107.23536 -163.15173 -59.58964 1050.524 4798.979 -Epoch 9000 : Training Cost: 1619243400.0 a,b,c,d: 109.44742 -186.9409 -56.53944 1216.6432 5454.9463 -Epoch 10000 : Training Cost: 1590821900.0 a,b,c,d: 111.54233 -209.91287 -51.423084 1385.8513 6113.5137 -Epoch 11000 : Training Cost: 1563042200.0 a,b,c,d: 113.54405 -232.21953 -44.73371 1557.1084 6771.7046 -Epoch 12000 : Training Cost: 1535855600.0 a,b,c,d: 115.471565 -253.9838 -36.851135 1729.535 7429.069 -Epoch 13000 : Training Cost: 1509255300.0 a,b,c,d: 117.33939 -275.29697 -28.0714 1902.5308 8083.9634 -Epoch 14000 : Training Cost: 1483227000.0 a,b,c,d: 119.1605 -296.2472 -18.618649 2075.6094 8735.381 -Epoch 15000 : Training Cost: 1457726700.0 a,b,c,d: 120.94584 -316.915 -8.650095 2248.3247 9384.197 -Epoch 16000 : Training Cost: 1432777300.0 a,b,c,d: 122.69806 -337.30704 1.7027153 2420.5771 10028.871 -Epoch 17000 : Training Cost: 1408365000.0 a,b,c,d: 124.42179 -357.45245 12.33499 2592.2983 10669.157 -Epoch 18000 : Training Cost: 1384480000.0 a,b,c,d: 126.12332 -377.39734 23.168756 2763.0933 11305.027 -Epoch 19000 : Training Cost: 1361116800.0 a,b,c,d: 127.80568 -397.16415 34.160156 2933.0452 11935.669 -Epoch 20000 : Training Cost: 1338288100.0 a,b,c,d: 129.4674 -416.72803 45.259155 3101.7727 12561.179 -Epoch 21000 : Training Cost: 1315959700.0 a,b,c,d: 131.11403 -436.14285 56.4436 3269.3142 13182.058 -Epoch 22000 : Training Cost: 1294164700.0 a,b,c,d: 132.74377 -455.3779 67.6757 3435.3833 13796.807 -Epoch 23000 : Training Cost: 1272863600.0 a,b,c,d: 134.35779 -474.45316 78.96117 3600.264 14406.58 -Epoch 24000 : Training Cost: 1252052600.0 a,b,c,d: 135.9583 -493.38254 90.268616 3764.0078 15010.481 -Epoch 25000 : Training Cost: 1231713700.0 a,b,c,d: 137.54753 -512.1876 101.59372 3926.4897 15609.368 -1231713700.0 137.54753 -512.1876 101.59372 3926.4897 15609.368 -
predictions = [] -for x in abscissa: - predictions.append((coefficient1*pow(x,4) + coefficient2*pow(x,3) + coefficient3*pow(x,2) + coefficient4*x + constant)) -plt.plot(abscissa , ordinate, 'ro', label ='Original data') -plt.plot(abscissa, predictions, label ='Fitted line') -plt.title('Quartic Regression Result') -plt.legend() -plt.show() -

Quintic

with tf.Session() as sess: - sess.run(init) - for epoch in range(no_of_epochs): - for (x,y) in zip(abscissa, ordinate): - sess.run(optimizer5, feed_dict={X:x, Y:y}) - if (epoch+1)%1000==0: - cost = sess.run(mse5,feed_dict={X:abscissa,Y:ordinate}) - print("Epoch",(epoch+1), ": Training Cost:", cost," a,b,c,d,e,f:",sess.run(a),sess.run(b),sess.run(c),sess.run(d),sess.run(e),sess.run(f)) - - training_cost = sess.run(mse5,feed_dict={X:abscissa,Y:ordinate}) - coefficient1 = sess.run(a) - coefficient2 = sess.run(b) - coefficient3 = sess.run(c) - coefficient4 = sess.run(d) - coefficient5 = sess.run(e) - constant = sess.run(f) -
Epoch 1000 : Training Cost: 1409200100.0 a,b,c,d,e,f: 7.949472 7.46219 55.626034 184.29028 484.00223 1024.0083 -Epoch 2000 : Training Cost: 1306882400.0 a,b,c,d,e,f: 8.732181 -4.0085897 73.25298 315.90103 904.08887 2004.9749 -Epoch 3000 : Training Cost: 1212606000.0 a,b,c,d,e,f: 9.732249 -16.90125 86.28379 437.06552 1305.055 2966.2188 -Epoch 4000 : Training Cost: 1123640400.0 a,b,c,d,e,f: 10.74851 -29.82692 98.59997 555.331 1698.4631 3917.9155 -Epoch 5000 : Training Cost: 1039694300.0 a,b,c,d,e,f: 11.75426 -42.598194 110.698326 671.64355 2085.5513 4860.8535 -Epoch 6000 : Training Cost: 960663550.0 a,b,c,d,e,f: 12.745439 -55.18337 122.644936 786.00214 2466.1638 5794.3735 -Epoch 7000 : Training Cost: 886438340.0 a,b,c,d,e,f: 13.721028 -67.57168 134.43822 898.3691 2839.9958 6717.659 -Epoch 8000 : Training Cost: 816913100.0 a,b,c,d,e,f: 14.679965 -79.75113 146.07385 1008.66895 3206.6692 7629.812 -Epoch 9000 : Training Cost: 751971500.0 a,b,c,d,e,f: 15.62181 -91.71608 157.55713 1116.7715 3565.8323 8529.976 -Epoch 10000 : Training Cost: 691508740.0 a,b,c,d,e,f: 16.545347 -103.4531 168.88321 1222.6348 3916.9785 9416.236 -Epoch 11000 : Training Cost: 635382000.0 a,b,c,d,e,f: 17.450052 -114.954254 180.03932 1326.1565 4259.842 10287.99 -Epoch 12000 : Training Cost: 583477250.0 a,b,c,d,e,f: 18.334944 -126.20821 191.02948 1427.2095 4593.8 11143.449 -Epoch 13000 : Training Cost: 535640400.0 a,b,c,d,e,f: 19.198917 -137.20206 201.84718 1525.6926 4918.5327 11981.633 -Epoch 14000 : Training Cost: 491722240.0 a,b,c,d,e,f: 20.041153 -147.92719 212.49709 1621.5496 5233.627 12800.468 -Epoch 15000 : Training Cost: 451559520.0 a,b,c,d,e,f: 20.860966 -158.37456 222.97133 1714.7141 5538.676 13598.337 -Epoch 16000 : Training Cost: 414988960.0 a,b,c,d,e,f: 21.657421 -168.53406 233.27422 1805.0874 5833.1978 14373.658 -Epoch 17000 : Training Cost: 381837920.0 a,b,c,d,e,f: 22.429693 -178.39536 243.39914 1892.5883 6116.847 15124.394 -Epoch 18000 : Training Cost: 351931300.0 a,b,c,d,e,f: 23.176882 -187.94789 253.3445 1977.137 6389.117 15848.417 -Epoch 19000 : Training Cost: 325074400.0 a,b,c,d,e,f: 23.898485 -197.18741 263.12512 2058.6716 6649.8037 16543.95 -Epoch 20000 : Training Cost: 301073570.0 a,b,c,d,e,f: 24.593851 -206.10497 272.72385 2137.1797 6898.544 17209.367 -Epoch 21000 : Training Cost: 279727000.0 a,b,c,d,e,f: 25.262104 -214.69217 282.14642 2212.6372 7135.217 17842.854 -Epoch 22000 : Training Cost: 260845550.0 a,b,c,d,e,f: 25.903376 -222.94969 291.4003 2284.9844 7359.4644 18442.408 -Epoch 23000 : Training Cost: 244218030.0 a,b,c,d,e,f: 26.517094 -230.8697 300.45532 2354.3003 7571.261 19007.49 -Epoch 24000 : Training Cost: 229660080.0 a,b,c,d,e,f: 27.102589 -238.44817 309.35342 2420.4185 7770.5728 19536.19 -Epoch 25000 : Training Cost: 216972400.0 a,b,c,d,e,f: 27.660324 -245.69016 318.10062 2483.3608 7957.354 20027.707 -216972400.0 27.660324 -245.69016 318.10062 2483.3608 7957.354 20027.707 -
predictions = [] -for x in abscissa: - predictions.append((coefficient1*pow(x,5) + coefficient2*pow(x,4) + coefficient3*pow(x,3) + coefficient4*pow(x,2) + coefficient5*x + constant)) -plt.plot(abscissa , ordinate, 'ro', label ='Original data') -plt.plot(abscissa, predictions, label ='Fitted line') -plt.title('Quintic Regression Result') -plt.legend() -plt.show() -

Results and Conclusion

You just learnt Polynomial Regression using TensorFlow!

Notes

Overfitting

> Overfitting refers to a model that models the training data too well.Overfitting happens when a model learns the detail and noise in the training data to the extent that it negatively impacts the performance of the model on new data. This means that the noise or random fluctuations in the training data is picked up and learned as concepts by the model. The problem is that these concepts do not apply to new data and negatively impact the models ability to generalise.

Source: Machine Learning Mastery

Basically if you train your machine learning model on a small dataset for a really large number of epochs, the model will learn all the deformities/noise in the data and will actually think that it is a normal part. Therefore when it will see some new data, it will discard that new data as noise and will impact the accuracy of the model in a negative manner

]]>
https://navanchauhan.github.io/posts/2019-12-10-TensorFlow-Model-PredictionMaking Predictions using Image Classifier (TensorFlow)Making predictions for image classification models built using TensorFlowhttps://navanchauhan.github.io/posts/2019-12-10-TensorFlow-Model-PredictionTue, 10 Dec 2019 11:10:00 +0530Making Predictions using Image Classifier (TensorFlow)

This was tested on TF 2.x and works as of 2019-12-10

If you want to understand how to make your own custom image classifier, please refer to my previous post.

If you followed my last post, then you created a model which took an image of dimensions 50x50 as an input.

First we import the following if we have not imported these before

import cv2 -import os -

Then we read the file using OpenCV.

image=cv2.imread(imagePath) -

The cv2. imread() function returns a NumPy array representing the image. Therefore, we need to convert it before we can use it.

image_from_array = Image.fromarray(image, 'RGB') -

Then we resize the image

size_image = image_from_array.resize((50,50)) -

After this we create a batch consisting of only one image

p = np.expand_dims(size_image, 0) -

We then convert this uint8 datatype to a float32 datatype

img = tf.cast(p, tf.float32) -

Finally we make the prediction

print(['Infected','Uninfected'][np.argmax(model.predict(img))]) -

Infected

]]>
https://navanchauhan.github.io/posts/2019-12-08-Image-Classifier-TensorflowCreating a Custom Image Classifier using Tensorflow 2.x and Keras for Detecting MalariaTutorial on creating an image classifier model using TensorFlow which detects malariahttps://navanchauhan.github.io/posts/2019-12-08-Image-Classifier-TensorflowSun, 8 Dec 2019 14:16:00 +0530Creating a Custom Image Classifier using Tensorflow 2.x and Keras for Detecting Malaria

Done during Google Code-In. Org: Tensorflow.

Imports

%tensorflow_version 2.x #This is for telling Colab that you want to use TF 2.0, ignore if running on local machine - -from PIL import Image # We use the PIL Library to resize images -import numpy as np -import os -import cv2 -import tensorflow as tf -from tensorflow.keras import datasets, layers, models -import pandas as pd -import matplotlib.pyplot as plt -from keras.models import Sequential -from keras.layers import Conv2D,MaxPooling2D,Dense,Flatten,Dropout -

Dataset

Fetching the Data

!wget ftp://lhcftp.nlm.nih.gov/Open-Access-Datasets/Malaria/cell_images.zip -!unzip cell_images.zip -

Processing the Data

We resize all the images as 50x50 and add the numpy array of that image as well as their label names (Infected or Not) to common arrays.

data = [] -labels = [] - -Parasitized = os.listdir("./cell_images/Parasitized/") -for parasite in Parasitized: - try: - image=cv2.imread("./cell_images/Parasitized/"+parasite) - image_from_array = Image.fromarray(image, 'RGB') - size_image = image_from_array.resize((50, 50)) - data.append(np.array(size_image)) - labels.append(0) - except AttributeError: - print("") - -Uninfected = os.listdir("./cell_images/Uninfected/") -for uninfect in Uninfected: - try: - image=cv2.imread("./cell_images/Uninfected/"+uninfect) - image_from_array = Image.fromarray(image, 'RGB') - size_image = image_from_array.resize((50, 50)) - data.append(np.array(size_image)) - labels.append(1) - except AttributeError: - print("") -

Splitting Data

df = np.array(data) -labels = np.array(labels) -(X_train, X_test) = df[(int)(0.1*len(df)):],df[:(int)(0.1*len(df))] -(y_train, y_test) = labels[(int)(0.1*len(labels)):],labels[:(int)(0.1*len(labels))] -
s=np.arange(X_train.shape[0]) -np.random.shuffle(s) -X_train=X_train[s] -y_train=y_train[s] -X_train = X_train/255.0 -

Model

Creating Model

By creating a sequential model, we create a linear stack of layers.

Note: The input shape for the first layer is 50,50 which corresponds with the sizes of the resized images

model = models.Sequential() -model.add(layers.Conv2D(filters=16, kernel_size=2, padding='same', activation='relu', input_shape=(50,50,3))) -model.add(layers.MaxPooling2D(pool_size=2)) -model.add(layers.Conv2D(filters=32,kernel_size=2,padding='same',activation='relu')) -model.add(layers.MaxPooling2D(pool_size=2)) -model.add(layers.Conv2D(filters=64,kernel_size=2,padding="same",activation="relu")) -model.add(layers.MaxPooling2D(pool_size=2)) -model.add(layers.Dropout(0.2)) -model.add(layers.Flatten()) -model.add(layers.Dense(500,activation="relu")) -model.add(layers.Dropout(0.2)) -model.add(layers.Dense(2,activation="softmax"))#2 represent output layer neurons -model.summary() -

Compiling Model

We use the Adam optimiser as it is an adaptive learning rate optimisation algorithm that's been designed specifically for training deep neural networks, which means it changes its learning rate automatically to get the best results

model.compile(optimizer="adam", - loss="sparse_categorical_crossentropy", - metrics=["accuracy"]) -

Training Model

We train the model for 10 epochs on the training data and then validate it using the testing data

history = model.fit(X_train,y_train, epochs=10, validation_data=(X_test,y_test)) -
Train on 24803 samples, validate on 2755 samples -Epoch 1/10 -24803/24803 [==============================] - 57s 2ms/sample - loss: 0.0786 - accuracy: 0.9729 - val_loss: 0.0000e+00 - val_accuracy: 1.0000 -Epoch 2/10 -24803/24803 [==============================] - 58s 2ms/sample - loss: 0.0746 - accuracy: 0.9731 - val_loss: 0.0290 - val_accuracy: 0.9996 -Epoch 3/10 -24803/24803 [==============================] - 58s 2ms/sample - loss: 0.0672 - accuracy: 0.9764 - val_loss: 0.0000e+00 - val_accuracy: 1.0000 -Epoch 4/10 -24803/24803 [==============================] - 58s 2ms/sample - loss: 0.0601 - accuracy: 0.9789 - val_loss: 0.0000e+00 - val_accuracy: 1.0000 -Epoch 5/10 -24803/24803 [==============================] - 58s 2ms/sample - loss: 0.0558 - accuracy: 0.9804 - val_loss: 0.0000e+00 - val_accuracy: 1.0000 -Epoch 6/10 -24803/24803 [==============================] - 57s 2ms/sample - loss: 0.0513 - accuracy: 0.9819 - val_loss: 0.0000e+00 - val_accuracy: 1.0000 -Epoch 7/10 -24803/24803 [==============================] - 58s 2ms/sample - loss: 0.0452 - accuracy: 0.9849 - val_loss: 0.3190 - val_accuracy: 0.9985 -Epoch 8/10 -24803/24803 [==============================] - 58s 2ms/sample - loss: 0.0404 - accuracy: 0.9858 - val_loss: 0.0000e+00 - val_accuracy: 1.0000 -Epoch 9/10 -24803/24803 [==============================] - 58s 2ms/sample - loss: 0.0352 - accuracy: 0.9878 - val_loss: 0.0000e+00 - val_accuracy: 1.0000 -Epoch 10/10 -24803/24803 [==============================] - 58s 2ms/sample - loss: 0.0373 - accuracy: 0.9865 - val_loss: 0.0000e+00 - val_accuracy: 1.0000 -

Results

accuracy = history.history['accuracy'][-1]*100 -loss = history.history['loss'][-1]*100 -val_accuracy = history.history['val_accuracy'][-1]*100 -val_loss = history.history['val_loss'][-1]*100 - -print( - 'Accuracy:', accuracy, - '\nLoss:', loss, - '\nValidation Accuracy:', val_accuracy, - '\nValidation Loss:', val_loss -) -
Accuracy: 98.64532351493835 -Loss: 3.732407123270176 -Validation Accuracy: 100.0 -Validation Loss: 0.0 -

We have achieved 98% Accuracy!

Link to Colab Notebook

]]>
https://navanchauhan.github.io/posts/2019-12-08-Splitting-ZipsSplitting ZIPs into Multiple PartsShort code snippet for splitting zips.https://navanchauhan.github.io/posts/2019-12-08-Splitting-ZipsSun, 8 Dec 2019 13:27:00 +0530Splitting ZIPs into Multiple Parts

Tested on macOS

Creating the archive:

zip -r -s 5 oodlesofnoodles.zip website/ -

5 stands for each split files' size (in mb, kb and gb can also be specified)

For encrypting the zip:

zip -er -s 5 oodlesofnoodles.zip website -

Extracting Files

First we need to collect all parts, then

zip -F oodlesofnoodles.zip --out merged.zip -
]]>
https://navanchauhan.github.io/posts/2019-12-04-Google-Teachable-MachinesImage Classifier With Teachable MachinesTutorial on creating a custom image classifier quickly with Google Teachable Machineshttps://navanchauhan.github.io/posts/2019-12-04-Google-Teachable-MachinesWed, 4 Dec 2019 18:23:00 +0530Image Classifier With Teachable Machines

Made for Google Code-In

Task Description

Using Glitch and the Teachable Machines, build a Book Detector with Tensorflow.js. When a book is recognized, the code would randomly suggest a book/tell a famous quote from a book. Here is an example Project to get you started: https://glitch.com/~voltaic-acorn

Details

  1. Collecting Data

Teachable Machine allows you to create your dataset just by using your webcam! I created a database consisting of three classes ( Three Books ) and approximately grabbed 100 pictures for each book/class

  1. Training

Training on teachable machines is as simple as clicking the train button. I did not even have to modify any configurations.

  1. Finding Labels

Because I originally entered the entire name of the book and it's author's name as the label, the class name got truncated (Note to self, use shorter class names :p ). I then modified the code to print the modified label names in an alert box.

  1. Adding a suggestions function

I first added a text field on the main page and then modified the JavaScript file to suggest a similar book whenever the model predicted with an accuracy >= 98%

  1. Running!

Here it is running!

Remix this project:-

https://luminous-opinion.glitch.me

]]>
https://navanchauhan.github.io/publications/2019-05-14-Detecting-Driver-Fatigue-Over-Speeding-and-Speeding-up-Post-Accident-ResponseDetecting Driver Fatigue, Over-Speeding, and Speeding up Post-Accident ResponseThis paper is about Detecting Driver Fatigue, Over-Speeding, and Speeding up Post-Accident Response.https://navanchauhan.github.io/publications/2019-05-14-Detecting-Driver-Fatigue-Over-Speeding-and-Speeding-up-Post-Accident-ResponseTue, 14 May 2019 02:42:00 +0530Detecting Driver Fatigue, Over-Speeding, and Speeding up Post-Accident Response

Based on the project showcased at Toyota Hackathon, IITD - 17/18th December 2018

Edit: It seems like I haven't mentioned Adrian Rosebrock of PyImageSearch anywhere. I apologize for this mistake.

Download paper here

Recommended citation:

ATP

Chauhan, N. (2019). &quot;Detecting Driver Fatigue, Over-Speeding, and Speeding up Post-Accident Response.&quot; <i>International Research Journal of Engineering and Technology (IRJET), 6(5)</i>. -

BibTeX

@article{chauhan_2019, title={Detecting Driver Fatigue, Over-Speeding, and Speeding up Post-Accident Response}, volume={6}, url={https://www.irjet.net/archives/V6/i5/IRJET-V6I5318.pdf}, number={5}, journal={International Research Journal of Engineering and Technology (IRJET)}, author={Chauhan, Navan}, year={2019}} -
]]>
https://navanchauhan.github.io/posts/2019-05-05-Custom-Snowboard-Anemone-ThemeCreating your own custom theme for Snowboard or AnemoneTutorial on creating your own custom theme for Snowboard or Anemonehttps://navanchauhan.github.io/posts/2019-05-05-Custom-Snowboard-Anemone-ThemeSun, 5 May 2019 12:34:00 +0530Creating your own custom theme for Snowboard or Anemone

Contents

  • Getting Started
  • Theme Configuration
  • Creating Icons
  • Exporting Icons
  • Icon Masks
  • Packaging
  • Building the DEB

Getting Started

Note: Without the proper folder structure, your theme may not show up!

  • Create a new folder called themeName.theme (Replace themeName with your desired theme name)
  • Within themeName.theme folder, create another folder called IconBundles (You cannot change this name)

Theme Configuration

  • Now, inside the themeName.theme folder, create a file called Info.plist and paste the following
<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> - <plist version="1.0"> - <dict> - <key>PackageName</key> - <string>ThemeName</string> - <key>ThemeType</key> - <string>Icons</string> - </dict> -</plist> -
  • Replace PackageName with the name of the Package and replace ThemeName with the Theme Name

Now, you might ask what is the difference between PackageName and ThemeName?

Well, if for example you want to publish two variants of your icons, one dark and one white but you do not want the user to seperately install them. Then, you would name the package MyTheme and include two themes Blackie and White thus creating two entries. More about this in the end

Creating Icons

  • Open up the Image Editor of your choice and create a new file having a resolution of 512x512

Note: Due to IconBundles, we just need to create the icons in one size and they get resized automatically :ghost:

Want to create rounded icons? Create them squared only, we will learn how to apply masks!

Exporting Icons

Note: All icons must be saved as *.png (Tip: This means you can even create partially transparent icons!)

  • All Icons must be saved in themeName.theme>IconBundles as bundleID-large.png
Finding BundleIDs

Stock Application BundleIDs

NameBundleID
App Storecom.apple.AppStore
Apple Watchcom.apple.Bridge
Calculatorcom.apple.calculator
Calendarcom.apple.mobilecal
Cameracom.apple.camera
Classroomcom.apple.classroom
Clockcom.apple.mobiletimer
Compasscom.apple.compass
FaceTimecom.apple.facetime
Filescom.apple.DocumentsApp
Game Centercom.apple.gamecenter
Healthcom.apple.Health
Homecom.apple.Home
iBookscom.apple.iBooks
iTunes Storecom.apple.MobileStore
Mailcom.apple.mobilemail
Mapscom.apple.Maps
Measurecom.apple.measure
Messagescom.apple.MobileSMS
Musiccom.apple.Music
Newscom.apple.news
Notescom.apple.mobilenotes
Phonecom.apple.mobilephone
Photo Boothcom.apple.Photo-Booth
Photoscom.apple.mobileslideshow
Playgroundscome.apple.Playgrounds
Podcastscom.apple.podcasts
Reminderscom.apple.reminders
Safaricom.apple.mobilesafari
Settingscom.apple.Preferences
Stockscom.apple.stocks
Tipscom.apple.tips
TVcom.apple.tv
Videoscom.apple.videos
Voice Memoscom.apple.VoiceMemos
Walletcom.apple.Passbook
Weathercom.apple.weather

3rd Party Applications BundleID Click here

Icon Masks

  • Getting the Classic Rounded Rectangle Masks

In your Info.plist file add the following value between <dict> and - -``` -IB-MaskIcons - -``` - -* Custom Icon Masks - -**NOTE: This is an optional step, if you do not want Icon Masks, skip this step** - -* Inside your `themeName.theme` folder, create another folder called 'Bundles' - * Inside `Bundles` create another folder called `com.apple.mobileicons.framework` - -#### Designing Masks - -**Masking does not support IconBundles, therefore you need to save the masks for each of the following** - -| File | Resolution | -|------|------------| -| AppIconMask@2x~ipad.png | 152x512 | -| AppIconMask@2x~iphone.png | 120x120 | -| AppIconMask@3x~ipad.png | 180x180 | -| AppIconMask@3x~iphone.png | 180x180 | -| AppIconMask~ipad.png | 76x76 | -| DocumentBadgeMask-20@2x.png | 40x40 | -| DocumentBadgeMask-145@2x.png | 145x145 | -| GameAppIconMask@2x.png | 84x84 | -| NotificationAppIconMask@2x.png | 40x40 | -| NotificationAppIconMask@3x.png | 60x60 | -| SpotlightAppIconMask@2x.png | 80x80 | -| SpotlightAppIconMask@3x.png | 120x120 | -| TableIconMask@2x.png | 58x58 | -| TableIconOutline@2x.png | 58x58 | - -* While creating the mask, make sure that the background is not a solid colour and is transparent -* Whichever area you want to make visible, it should be coloured in black - -Example (Credits: Pinpal): - -![Credit: Pinpal](https://pinpal.github.io/assets/theme-guide/mask-demo.png) - -would result in - -![Credit: Pinpal](https://pinpal.github.io/assets/theme-guide/mask-result.png) - -### Packaging - -* Create a new folder outside `themeName.theme` with the name you want to be shown on Cydia, e.g `themeNameForCydia` -* Create another folder called `DEBIAN` in `themeNameForCydia` (It needs to be uppercase) -* In `DEBIAN` create an extension-less file called `control` and edit it using your favourite text editor - -Paste the following in it, replacing `yourname`, `themename`, `Theme Name`, `A theme with beautiful icons!` and `Your Name` with your details: - -``` -Package: com.yourname.themename -Name: Theme Name -Version: 1.0 -Architecture: iphoneos-arm -Description: A theme with beautiful icons! -Author: Your Name -Maintainer: Your Name -Section: Themes -``` - -* Important Notes: - * The package field **MUST** be lower case! - * The version field **MUST** be changed every-time you update your theme! - * The control file **MUST** have an extra blank line at the bottom! - -* Now, Create another folder called `Library` in `themeNameForCydia` -* In `Library` create another folder called `Themes` -* Finally, copy `themeName.theme` to the `Themes` folder (**Copy the entire folder, not just the contents**) - -### Building the DEB - -**For building the deb you need a `*nix` system, otherwise you can build it using your iPhones** - -##### Pre-Requisite for MacOS users -1) Install Homenbrew `/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"` (Run this in the terminal) -2) Install dpkg, by running `brew install dpkg` - -**There is a terrible thing called .DS_Store which if not removed, will cause a problem during either build or installation** - -* To remove this we first need to open the folder in the terminal - -* Launch the Terminal and then drag-and-drop the 'themeNameForCydia' folder on the Terminal icon in the dock -* Now, run `find . -name "*.DS_Store" -type f -delete` - -##### Pre-Requisite for Windows Users -* SSH into your iPhone and drag and drop the `themeNameForCyia` folder on the terminal - -##### Common Instructions - -* You should be at the root of the folder in the terminal, i.e Inside `themeNameForCydia` -* running `ls` should show the following output - -``` -DEBIAN Library -``` - -* Now, in the terminal enter the following `cd .. && dpkg -b themeNameForCydia ` - -**Now you will have the `themeNameForCydia.deb` in the same directory** - -You can share this with your friends :+1: -

]]>
https://navanchauhan.github.io/posts/hello-worldHello WorldMy first post.https://navanchauhan.github.io/posts/hello-worldTue, 16 Apr 2019 17:39:00 +0530Hello World

Why a Hello World post?

Just re-did the entire website using Publish (Publish by John Sundell). So, a new hello world post :)

]]>
https://navanchauhan.github.io/posts/2010-01-24-experimentsExperimentsJust a markdown file for all experiments related to the websitehttps://navanchauhan.github.io/posts/2010-01-24-experimentsSun, 24 Jan 2010 23:43:00 +0530Experiments

https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/img-original.jpg

]]>
\ No newline at end of file -- cgit v1.2.3