DZone
Big Data Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Big Data Zone > Big Data, Machine Learning, and Deep Learning Command Line Tools

Big Data, Machine Learning, and Deep Learning Command Line Tools

Even if you are not only running your pipeline through the command line, you can call these tools can be incredibly helpful for processing.

Tim Spann user avatar by
Tim Spann
CORE ·
Feb. 12, 17 · Big Data Zone · Opinion
Like (11)
Save
Tweet
17.05K Views

Join the DZone community and get the full member experience.

Join For Free

Keep those hands on the keyboard! We can do a lot on OSX and Linux without touching a mouse or GUI. Awesome command line tools for *N*X derivatives have been around since day one, and have expanded to include Python, Go, NodeJS, and hybrid tools. Even if you are not only running your pipeline through the command line, you can call most of these tools from Apache NiFi for processing.

The book Data Science at the Command Line and GitHub offer an amazing set of quality tools to do a lot of pre- and post-processing and allow for a lot of transformations. I highly recommend looking at all of these amazing tools.   

CSVKit is amazing! It does everything you need with comma-separated values. You can grab columns via cvs cut, filter by column with cvsgrip, extract data from Postgresql to CSV via sql2csv, grab a subset of columns with cols , and convert MS Excel to CSV with in2cv.

Quick Tool List

  • Python Data Analysis (Agate).

  • ImageMagick (edit, create, convert, flip, and alter images from the command-line).

  • JSON 2 CSV.

  • XML2JSON via NodeJS.

  • HTML to image.

  • HTML to PDF.

  • Weather Underground CLI.

  • NIFI Shell.

  • Gatling for Testing with Scala/JVM.

  • Kafka Producer with JSON.

  • Kafka Consumer with JSON.

  • Create JSON.

  • Image MetaData Extraction.

  • OSQuery for Querying Infrastructure.

  • Tesseract for Command Line OCR.

  • Hadoop/HDFS Command Line Tools.

  • CURL.

  • WGET.

  • MQTT CLI (NPM.JS).

You can also write some very short Python scripts to process data from the command line.

from nltk.sentiment.vader
import SentimentIntensityAnalyzer
import sys
sid = SentimentIntensityAnalyzer()
ss = sid.polarity_scores(sys.argv[1])
print('Compound {0} Negative {1} Neutral {2} Positive {3} '.format(ss['compound'], ss['neg'], ss['neu'], ss['pos']))

Five line Python script for sentiment analysis.

You can even now debug TensorFlow via the command line (though this is really beta, so expect an occasional hiccup).

Data science Command (computing) Deep learning Machine

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Troubleshooting HTTP 502 Bad Gateway in AWS EBS
  • Deploying Java Applications to AWS Elastic Beanstalk
  • What Is Edge Compute? It’s Kind of Like Knitting Dog Hats
  • How Template Literal Types Work in TypeScript

Comments

Big Data Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo