TensorFlow to CoreML Conversion and Model Inspection
Author(s): Mirek Stanek Originally published on Towards AI. Converting TF models to CoreML, an iOS-friendly format This post was originally published at thinkmobile.dev β a blog about implementing intelligent solutions in mobile apps (link to article). While TensorFlow Lite seems to be …
How to Run an Android Application from the Command Line!
Author(s): Garima Nishad Originally published on Towards AI. Android, Programming Image Courtesy: Google Have you ever got tired of having low RAM on your PC while using IDE?or? Have you ever wanted to run a single script and run all of your …
Build TensorFlow Lite Model with Firebase AutoML Vision Edge
Author(s): Mirek Stanek Originally published on Towards AI. Train first image classification model with Firebase ML Kit This post was originally published at thinkmobile.dev β a blog about implementing intelligent solutions in mobile apps (link to article). For more than a year …
How to Install Anaconda in Linux Mint!
Author(s): Garima Nishad Originally published on Towards AI. Programming, Systems Too hectic? Not anymore! Go to this link where youβll be able to download the installer provided by βAnaconda Distributionβ https://www.anaconda.com/distribution/ I wanted a Python 3.7 version but you can choose either …
DateTime Manipulations with Python
Author(s): Bindhu Balu Originally published on Towards AI. In Python, date, time, and DateTime classes provide a number of functions to deal with dates, times, and time intervals. Date and DateTime are an object in Python, so when you manipulate them, you …
How You Should Save the Output of your Spark ETL Jobs (If you are not Writing to a Database)
Author(s): ___ Originally published on Towards AI. In this article, I will share my thoughts on the best way to save the output of Spark ETL jobs so that it is easier to do analytical work later. The code to reproduce the …
SQL β From Intermediate to Superhero
Author(s): Eyal Trabelsi Originally published on Towards AI. Programming Practical SQL For Advanced Analytics Source: https://www.maximizemarketresearch.com/advance-analytics/ SQL is a programming language used for querying and managing data in databases and has become the backbone of modern analytics. βSQL is the worst form …
Geolocation Data Analysis of Lagos.
Author(s): Lawrence Alaso Krukrubo Originally published on Towards AI. Using EDA and Machine Learning to find prime office locations in Lagos The problem weβre going to solve using Geolocation data analysis and Machine Learning, is helping a new Tech Start-Up find the …
Building a Spam Detector Using Pythonβs NTLK Package
Author(s): Bindhu Balu Originally published on Towards AI. NTLK β Natural Language ToolKit In this part, we will go through an end to end walkthrough of building a very simple text classifier in Python 3. Our goal is to build a predictive …
How Practical Is Python For Prototyping Data Science Projects At Scale?
Author(s): ___ Originally published on Towards AI. The Naive Solution In this article, I will share my thoughts on the practicality of using Python to work on compute-intensive data science projects. The primary audience for this article is data scientists working in …
How To Commit Your Cloud Credentials To Version Control Systems
Author(s): ___ Originally published on Towards AI. Commit your cloud credentials to version control systems securely In this article, I will share a way to securely commit sensitive information to version control systems (VCS). The focus will be on committing AWS credentials, …
Jupyter Notebook Keyboard Shortcuts for Beginners
Author(s): Magdalena Konkiewicz Originally published on Towards AI. Learn the most important shortcuts to improve your productivity while working with Jupyter notebook editor. Photo by cocoparisinenne on Pixabay When you start with Jupyter notebook most of the people use the menu bar …
Pythonβs List Comprehensions
Author(s): Vivek Chaudhary Originally published on Towards AI. Programming Lists are Python Data structures that are used to store multiple elements in a single variable. List comprehension is a more simple way to define and create a list in python, lists can …