Programs Archives - Austin G. Walters https://austingwalters.com/category/programs/ Join me in living, learning and optimizing life! Wed, 22 Jan 2020 03:11:50 +0000 en-US hourly 1 https://wordpress.org/?v=6.3.8 https://austingwalters.com/wp-content/uploads/2012/01/favicon-aw-1.1.ico Programs Archives - Austin G. Walters https://austingwalters.com/category/programs/ 32 32 Parsing USPTO Patents to Create a Massive Free Labeled Dataset https://austingwalters.com/parsing-uspto-patents-to-create-a-dataset/ https://austingwalters.com/parsing-uspto-patents-to-create-a-dataset/#respond Wed, 22 Jan 2020 03:07:27 +0000 https://austingwalters.com/?p=3264 Arguably one of my favorite (and best) labeled text datasets are patents at the United States Patent and Trademark Office (USPTO). Every patent is freely available with labeled images, abstract, claims, a long description, authors, dates, classification labels, etc. Data in the provided format can be used for a lot of natural language processing (NLP) […]

The post Parsing USPTO Patents to Create a Massive Free Labeled Dataset appeared first on Austin G. Walters.

]]>
https://austingwalters.com/parsing-uspto-patents-to-create-a-dataset/feed/ 0
Rails 6 on Elastic Beanstalk https://austingwalters.com/rails-6-on-elastic-beanstalk/ https://austingwalters.com/rails-6-on-elastic-beanstalk/#comments Sun, 03 Nov 2019 06:20:52 +0000 https://austingwalters.com/?p=3197 This article is designed to cover & fix some of the issues when attempting to run a Ruby on Rails 6 on AWS Elastic Beanstalk. The Quick Version (TLDR) Create directory .ebextensions in the top level of your application Create .config file which contains the commands to fix deployments (script here) Add commands for upgrading […]

The post Rails 6 on Elastic Beanstalk appeared first on Austin G. Walters.

]]>
https://austingwalters.com/rails-6-on-elastic-beanstalk/feed/ 3
How to create a product demo video for your landing page https://austingwalters.com/how-to-add-a-product-demo-to-your-landing-page/ https://austingwalters.com/how-to-add-a-product-demo-to-your-landing-page/#comments Thu, 19 Sep 2019 06:32:58 +0000 https://austingwalters.com/?p=3158 Making a product demo on your landing page can lead to significant conversions. Unfortunately, this can be challenging as the demo has to be quick to load (i.e. small) and robust to the various browsers. In this post I’ll cover some of what I did to create the landing page for InsiderOpinion.com (which, you guessed […]

The post How to create a product demo video for your landing page appeared first on Austin G. Walters.

]]>
https://austingwalters.com/how-to-add-a-product-demo-to-your-landing-page/feed/ 1
Active Record Subqueries using Rails and PostgreSQL https://austingwalters.com/active-record-subquries-postgresql-rails-and-active-record/ https://austingwalters.com/active-record-subquries-postgresql-rails-and-active-record/#respond Tue, 14 May 2019 04:30:56 +0000 https://austingwalters.com/?p=3114 This article, briefly covers the idea of using the Active Record in Ruby on Rails with to create a subqueries to improve searches of a PostgreSQL database. An example where a subquery in SQL could be useful is: We have a table called comments which has three columns: author, comment_text, and created_at. The goal is […]

The post Active Record Subqueries using Rails and PostgreSQL appeared first on Austin G. Walters.

]]>
https://austingwalters.com/active-record-subquries-postgresql-rails-and-active-record/feed/ 0
Synchronizing lists across projects, keeping the most up-to-date edits https://austingwalters.com/synchronizing-lists-across-projects-keeping-the-most-up-to-date-edits/ https://austingwalters.com/synchronizing-lists-across-projects-keeping-the-most-up-to-date-edits/#respond Wed, 27 Feb 2019 06:37:07 +0000 https://austingwalters.com/?p=3033 Anyone who has managed multiple code bases, such as websites, micro services, has had to deal with configuration files. One thing that is often irritating are shared configuration files, synchronized across projects. For me, this is a particularly difficult challenge, as in addition I work across four or five machines. Some of you may be […]

The post Synchronizing lists across projects, keeping the most up-to-date edits appeared first on Austin G. Walters.

]]>
https://austingwalters.com/synchronizing-lists-across-projects-keeping-the-most-up-to-date-edits/feed/ 0
ProtonMail CSS Theme https://austingwalters.com/protonmail-css-theme/ https://austingwalters.com/protonmail-css-theme/#respond Sun, 20 Jan 2019 07:11:59 +0000 https://austingwalters.com/?p=2968 Recently, I switched to ProtonMail as my email provider (they enable encrypted emails) and one of the neat features of ProtonMail is that you access the CSS to setup your own theme. Obviously, I couldn’t help myself! So, I wrote a little CSS to improve my experience and provide this guide as an introduciton. I […]

The post ProtonMail CSS Theme appeared first on Austin G. Walters.

]]>
https://austingwalters.com/protonmail-css-theme/feed/ 0
Hyperparameter Tuning for Sentence Classification https://austingwalters.com/hyperparameter-tuning-for-sentence-classification/ https://austingwalters.com/hyperparameter-tuning-for-sentence-classification/#comments Thu, 03 Jan 2019 05:56:23 +0000 https://austingwalters.com/?p=2795 This is the eighth and final article in an eight part series on a practical guide to using neural networks applied to real world problems. Specifically, this is a problem we faced at Metacortex. We needed our bots to understand when a question, statement, or command sent to our bot(s). The goal being to query […]

The post Hyperparameter Tuning for Sentence Classification appeared first on Austin G. Walters.

]]>
https://austingwalters.com/hyperparameter-tuning-for-sentence-classification/feed/ 3
FastText for Sentence Classification https://austingwalters.com/fasttext-for-sentence-classification/ https://austingwalters.com/fasttext-for-sentence-classification/#comments Thu, 03 Jan 2019 05:50:58 +0000 https://austingwalters.com/?p=2780 This is the seventh article in an eight part series on a practical guide to using neural networks, applied to real world problems. Specifically, this is a problem we faced at Metacortex — where we needed our bots to understand when a question, statement, or command sent to our bot(s). The goal being to query […]

The post FastText for Sentence Classification appeared first on Austin G. Walters.

]]>
https://austingwalters.com/fasttext-for-sentence-classification/feed/ 3
Convolutional Neural Networks (CNN) to Classify Sentences https://austingwalters.com/convolutional-neural-networks-cnn-to-classify-sentences/ https://austingwalters.com/convolutional-neural-networks-cnn-to-classify-sentences/#comments Thu, 03 Jan 2019 05:40:39 +0000 https://austingwalters.com/?p=2762 This is the sixth article in an eight part series on a practical guide to using neural networks, applied to real world problems. Specifically, this is a problem we faced at Metacortex. We needed our bots to understand when a question, statement, or command sent to our bot(s). The goal being to query the institutional […]

The post Convolutional Neural Networks (CNN) to Classify Sentences appeared first on Austin G. Walters.

]]>
https://austingwalters.com/convolutional-neural-networks-cnn-to-classify-sentences/feed/ 1
Classify Sentences via a Recurrent Neural Network (LSTM) https://austingwalters.com/classify-sentences-via-a-recurrent-neural-network-lstm/ https://austingwalters.com/classify-sentences-via-a-recurrent-neural-network-lstm/#respond Thu, 03 Jan 2019 05:21:09 +0000 https://austingwalters.com/?p=2754 This is the fifth article in an eight part series on a practical guide to using neural networks to, applied to real world problems. Specifically, this is a problem we faced at Metacortex. We needed our bots to understand when a question, statement, or command sent to our bot(s). The goal being to query the […]

The post Classify Sentences via a Recurrent Neural Network (LSTM) appeared first on Austin G. Walters.

]]>
https://austingwalters.com/classify-sentences-via-a-recurrent-neural-network-lstm/feed/ 0