THE AI HIERARCHY: CRAFTING A SUCCESSFUL AI STRATEGY FROM THE GROUND UP

Part VII: Machine Learning

Illustration of a baseball player amongst a flock of birdsIllustration of a baseball player amongst a flock of birds
Table of Contents

Itinerary

An Algorithmic Home Run

In 2002, algorithms changed baseball forever. This was the year that Oakland A’s general manager, Billy Beane, began to employ data-based decision making to construct his team.

Beane needed a way to overcome budget constraints and compete with teams like the Yankees who had budgets several times larger. This story is written about in Michael Lewis’ 2003 book and re-enacted in the popular 2011 film "Moneyball."

Historically, scouts would travel all across the country looking for particular skills. According to the MLB’s own scouting guide, these include things like speed, quickness, arm strength, hitting ability, and mental toughness.

Relying on the human ‘gut instinct’ to evaluate skill and future success was the status quo. This approach allowed many old men to watch baseball for a living.

The Shift to Data Science

A transition is occurring, and it seems like Beane was well ahead of the business community. He adopted data science approaches to save money while producing amazing results.

The first thing that Beane did was to flip the evaluation metrics on their head. He defined, in clear terms, what you actually want a high-quality player to produce: runs.

Calculating Success

Beane's goal was to win the World Series, and to win the World Series, you need to win games. To win games, you need to score more runs than your opponent.

Instead of thinking about the factors that affected scoring runs directly, the baseball community focused on weak correlates that were difficult to measure. So Beane ran some calculations with the help of his team of data analysts.

They found that to make the playoffs with a high probability, you needed at least 99 wins. To get 99 wins, you need a run differential (runs scored minus runs against) of 169.

Putting numbers to these seemingly obvious facts allowed the Oakland A’s staff to begin to uncover decision-making protocols that could replace the historical ‘eye-test.’

What is an Algorithm?

This brings us to the concept of the algorithm. It’s an equation that, given different inputs, produces a reliable output.

It’s taking in numbers and statistics - it’s taking in data. In this case, it’s meant to formalize the scouting process of evaluating players and predicting their future success.

Creating the OBP Algorithm

Following the chain of causation further, we need to score runs to make the playoffs. So we need players on the team who score runs.

In baseball, to score a run, you need to first get on base. You get on base by either getting a hit or getting a ‘walk.’ So Beane’s algorithm becomes:

On Base Percentage = (Hits + Walks) x Total Bases / Total At Bats

Implementing the Algorithm

By putting in actual data on players around the league, Beane could find players who had the highest ‘On-base Percentage’ or OBP. The algorithm could stack rank the players based on Beane's criteria.

This systematic and data-driven approach helped him put together a team that would get on base enough to get enough runs to win 99 games and make the playoffs. He created a way to find value in an area that had historically relied on the inconsistent evaluations of humans.

As we move through today's discussion, it can be easy to get lost in the vocabulary of Machine Learning and data science. There are many different algorithms that are more complex than Beane’s OBP calculation.

But complexity does not equal value. Beane took a simple algorithm and turned it into a playoff team with the smallest budget in the league.

He didn’t need complexity; he needed clear thinking and a clear target to help him formulate his strategy. It’s important not to pursue complexity for the sake of complexity.

Maintain focus on your vision, and the rest will fall into place.

What is Machine Learning Anyways?

Using our example of the OBP algorithm created by Billy Beane, we get only a piece of the picture. Beane took all of his own knowledge of baseball, added in some math, and manually created an equation.

Instead of Beane creating the equation, machine learning dynamically learns the equation from the data itself. Machine learning algorithms like decision trees, support vector machines, or logistic regression provide a framework for learning from data.

Machine Learning Framework

Given the input data set, these algorithms modify their structure to best fit the underlying data. They provide an equation that takes in new, previously unseen information, and gives an accurate prediction.

A quick break here to clear up some differences in what's called shallow machine learning vs. deep learning vs. AI. Shallow machine learning methods do not use layers of computation and the famous backpropagation algorithm to uncover their equations.

Shallow vs. Deep Learning

Shallow machine learning uses more straightforward methods with fewer steps and less computation to get to a reliable answer. These types of algorithms are a good first step because they are (slightly) less complicated, use less compute, and have easier implementations using third-party packages or platforms.

Now back to our baseball analogy. So what would an OBP machine learning algorithm look like?

Preparing the Dataset

We’ve talked a lot about cleaning up the input dataset before we even get to this step. We’d have to clean up our baseball stats data and make a clear hypothesis.

Imagine we are the general manager attending the draft to find new high-quality players that will score lots of runs and help the team make the playoffs. We gather all of the stats from the player's high school or college career.

Then we collect or calculate the standard statistics mentioned above, like hits, walks, and batting averages. From here, we may want to do some feature engineering to create new columns or data points from the raw data.

Now we define a target, the thing we’re trying to predict. This is both an art and a science.

Defining the Target

What is the piece of information we want to know? In our situation, we want to know if the player is going to get on base enough to help the team score enough runs, get enough wins, and make the playoffs.

So we look at past years' data and see the stats of players who were previously drafted. We then use their OBP as the target.

This means our machine learning algorithm will come up with an equation that looks something like this:

Prediction of rookie season OBP = Player Stats + Engineered Features

Training: Teaching Your Model to Sit and Lie Down

So we’ve cleaned up our dataset, engineered our features, and defined our ‘label’ or what we want the model to predict. Now, after thousands of words in this blog series, we are finally training a machine learning model.

I’m sorry it has come to such an anti-climatic point in our story. This is by far the easiest part of the entire process.

Training the Model

The application and training of several different types of machine learning algorithms can be done with only a few lines of code. Packages like Sci-Kit Learn allow data scientists to quickly uncover which approach is getting them the best results and does not require much effort.

The work comes in the evaluation and experimentation with your training set. Taking an approach that passes the data through several models and then combining their outputs is called an ensemble and can often provide higher accuracy than deploying a single model in isolation.

Keep in mind, though, that in the early stages when building your first model, simplicity is key. Training is the easy part, actually deploying the model and ensuring it works as expected is the hard part.

Let’s talk a little bit about what is happening in training. You’re passing a dataset that includes what you believe to be the predictive factors that will help your model output the correct answer.

Understanding the Process

In our case, we think that providing statistics about a baseball player will help us to predict their future OBP percentage during their rookie season in the big leagues. So we are providing different statistics and relying on the algorithm to manipulate these numbers into an output number - On Base Percentage.

Different models do this in different ways, but they all have something called a “loss function.” Loss functions tell your model how much it sucks.

Minimizing the Loss

Minimizing the loss function across all of your training examples is what allows the model to converge on the equation that is going to best predict the correct output. By passing an example of player statistics through the algorithm with a certain set of parameters, we get our output prediction of OBP.

We then evaluate this against the ‘loss function’ and can modify the parameters such that they will get us closer to the right answer. Repeating this hundreds, thousands, or millions of times allows the model to see lots of examples and tune itself closer to the equation that will make the difference between the actual OBP and its prediction as small as possible.

Evaluating the Model

Once the training cycle is complete, it’s time to evaluate the model. We do this by showing it examples it’s never seen before - the validation set.

The validation set allows us to have a set of data that has been held back from the algorithm during training to see how it may work in the ‘real world.’ We pass the input statistics of our baseball players into our trained algorithm and it gives us an answer.

We repeat this for all examples in our training set and see how many it got right vs. wrong. This becomes our accuracy score.

When we say our model is 95% accurate, this is what it means. The model has evaluated a bunch of examples and got 95% of its predictions correct.

When the data scientist feels confident that the model is accurate enough to provide the business value set out in the AI Strategy Narrative, it’s time to move to deployment. Getting the model into the world and having real humans interact with it.

Deployment: Bring Your Model into the World

This is the true pinnacle of the machine learning layer of our AI Strategy Framework. We often assume the completion of training as being the summit because at that point we have a model that is predictive, and we’ve accomplished a lot.

In reality, creating a way to get data to that model, capturing its output, and surfacing the output in a useful way to achieve our vision is really the hardest part. It's difficult because the model requires data to be delivered to it in a certain format and with the cleaning transformations applied.

Challenges in Deployment

It's also challenging because the machine learning tech stack often uses different programming languages and a different tech stack than the rest of the software solution. This results in brand new infrastructure and development operations work.

It most often means hiring different engineers with different skills. They need the ability to work with machine learning languages and technologies as well as strong capabilities in integrating these seamlessly with more traditional software.

MLOps: Machine Learning Operations

Things like containerization, serialization, serverless architectures, and other complex topics begin to surface as part of the deployment plan. This is called MLOps or Machine Learning Operations, the process of continuous training and model deployment.

This is really where you can reap the fruits of your labor in the prior steps of the AI Strategy Framework. If you’ve maintained your discipline and kept the complexity low, you give your MLOps engineers a fighting chance of standing up your machine learning infrastructure.

Having everything work together is only part of the success metrics you’re looking for. You need to have created value for your end user and a way to measure the business impact of all the steps you’ve been through.

By ensuring you can quickly get the model out and measure its impact, you buy yourself a second chance to continue to experiment and improve the model and the customer experience. For those who introduce too much complexity too early, you may never even get to measure the impact.

Bringing the Example to Life

Let’s bring all of this to life using our baseball example. We have our model that predicts rookie season on base percentage.

We’ve kept it so simple that all we need to do is gather all of the stats of draft-eligible players, run them through the model, and get its output prediction. On draft day, we’ll have a list that shows the stack ranking of predicted OBP for each player.

Perhaps the second version would be built to predict players' OBP for the rest of the season after updating their stats for each game. This would require additional model training on different data sets.

The deployment of the second model would be much more complex. We would need to pass data to the correct model after each game, updating the OBP predictions.

Here we can see that depending on the use case and how many different moving parts we have, the deployment problem can grow exponentially. Monitoring and updating the model regularly becomes crucial.

Monitoring: Hiring a Babysitter

The only constant is change. Machine learning algorithms are based on data, and their training occurred on only a small slice of time.

As the world changes, the structure of the underlying data may change, resulting in the machine learning model needing to adjust its equation to continue to perform. This is where monitoring becomes important.

Importance of Ongoing Evaluation

As the model works within your product or application, you want to be able to see what predictions it is producing, and compare these to reality. By getting an ongoing evaluation of your model accuracy across time, you can monitor for what's called ‘model drift.’

This means that the model no longer represents reality and needs to be re-trained on more recent examples. Let's imagine our model has done an incredible job of predicting OBP for our draft picks in their rookie season.

But something dramatic happens, like the league introducing a pitch clock. Now instead of the pitcher being able to take their time, they are on the clock, and this changes the game dynamics.

By monitoring your model across time, you can see its drift, and you can make a plan to re-train exclusively using player stats with the pitch clock. This also leads us to understand further complexity in MLOps.

Continuous Monitoring and Retraining

Not only is there a responsibility for deploying the model, but there is also a responsibility to monitor it, collect recent data samples, and allow for automatic re-training of the model. All of these items take significant time and effort and customized development work.

Take it slow, and appreciate the gift of having a simple data pipeline, with simple transformations, and a simple ML model as your first start.

One More Thing: Supervised vs. Unsupervised Learning

As we've navigated the realms of data, algorithms, and machine learning, we've primarily focused on models and strategies that rely on clear targets or outcomes—what's known as supervised learning. Here, each piece of data comes with a label, like a guidebook for the algorithm to learn from, aiming to predict these labels for new, unseen data.

It's like teaching a child to identify animals by showing them pictures with names underneath; soon enough, they start recognizing lions and elephants in books they've never opened. But what about the pictures without names?

Enter the world of unsupervised learning, a type of machine learning that deals with unlabeled data, finding patterns and structures on its own. Imagine walking into an artist's studio filled with canvases of different shades of blue.

No one needs to tell you they're variations of the same color; you group them together naturally. Unsupervised learning algorithms do something similar, categorizing data into clusters without pre-existing labels, uncovering hidden patterns we might not have noticed.

Key Methods in Unsupervised Learning

Here are two key ways unsupervised learning diverges from supervised:

  • ‍Clustering: Like organizing books on a shelf by genre without knowing the titles, clustering groups similar data points together. It’s used in market segmentation, social network analysis, and organizing vast libraries of content.‍
  • Dimensionality Reduction: When data is a sprawling city, dimensionality reduction is the subway system making it navigable. It simplifies data, retaining only the most informative features, making complex datasets more understandable and models more efficient.

The distinction between supervised and unsupervised learning reminds us that machine learning is not just about prediction; it's also about discovery. While supervised learning models thrive on labeled data, making precise predictions and classifications, unsupervised learning ventures into the unknown, identifying hidden structures and patterns that can lead to new insights and strategies.

Keep it simple

  1. Focus on Problem-Solving, Not Algorithms: Begin with a clear understanding of the problem you aim to solve with machine learning. Don't get caught up in the complexity or variety of algorithms available. The best algorithm is the one that effectively addresses your specific challenge, even if it's one of the simplest.
  2. Quality Data Over Complex Models: Machine learning models are only as good as the data they learn from. Prioritize acquiring and maintaining high-quality, relevant data. A simple model trained on well-curated, representative data can outperform a complex model trained on poor-quality data.
  3. Iterate and Learn: Machine learning is an iterative process. Start with a basic model to establish a benchmark. Use this initial model to learn about the behavior of your data and the performance of your algorithm. Gradually refine your model based on feedback and results, not by immediately adding complexity.

Wrapping up

This article was written to ensure your AI Strategy is not a swing and a miss. Machine learning is complex. Even the best companies have struggled to see results from large budgets and smart people spending years trying to implement ML solutions. You can do better, though. By understanding the components of ML that are simple, and the parts that can explode in complexity, you’re already off to a great start. Use the AI Strategy Framework. Keep things simple with each step up the pyramid, and by the time you reach the ML layer, you’ll be ready to see some value and make progress. If you trust the process, and stay committed, a World Series Championship is in your future. 

Need Help?

If you're seeking to unlock the full potential of AI within your organization but need help, we’re here for you. Our AI strategies are a no-nonsense way to derive value from AI technology. Reach out. Together we can turn your AI vision into reality.

‍

Chapters
No items found.


No items found.
Explore

Want to stay in the loop?

Subscribe below to get updates as they happen!
You have subscribed! Keep an eye on your emails for future updates.
Oops! Something went wrong while submitting the form.

Mitchell Johnstone

Director of Strategy



Mitch is a Strategic AI leader with 7+ years of transforming businesses through high-impact AI/ML projects. He combines deep technical acumen with business strategy, exemplified in roles spanning AI product management to entrepreneurial ventures. His portfolio includes proven success in driving product development, leading cross-functional teams, and navigating complex enterprise software landscapes.

Next post
There is no next post
Back to all posts
Previous post
There is no previous post
Back to all posts
Depiction of a person sitting working at a computer with birds in the background (illustration)
Leveraging RapidAPI for Startup Growth: A Strategic Perspective for Founders

Developing utilizing Rapid API (and similar tools) can be helpful, but it may not always be the most ideal scenario. There are always tradeoffs - are you looking for quick go-to-market and low development costs, or long-term growth potential?

Read More
Illustration of a baseball player amongst a flock of birds
Part VII: Machine Learning

Explore the journey of machine learning in baseball, from Billy Beane's OBP algorithm to modern MLOps, highlighting supervised and unsupervised learning, deployment, and monitoring.

Read More
Depiction of a person in the oval office with birds flying around - illustration only.
Part VI: Analytics and Insights

Netflix’s data strategy, using structured data and SQL, led to "House of Cards." Effective dashboards and feature engineering drive actionable insights for AI success.

Read More
Image with glasses and computer screen.
AI, Ethics, and the Importance of Diversity in Machine Learning

Discover the ethical implications of AI and the critical role of diversity in building unbiased algorithms. Learn from real-world examples where AI systems failed due to lack of representation and understand why diversity isn't just an option, but a requirement in AI.

Read More
Illustration of birds in flight around the Kepler Satellite
Part V: Data Exploration & Transformation

NASA's Kepler mission used innovative data strategies and AI frameworks to collect, process, and analyze vast amounts of astronomical data, leading to significant discoveries about planets and the universe.

Read More
Illustration of birds flying around Earth
Part IV: Ensuring Reliable and Accessible Storage

Discover how Amazon Web Services (AWS) transformed from a strategic insight at Jeff Bezos' home into a pivotal cloud solution for businesses, enabling innovative digital infrastructure management and strategic growth.

Read More
Ai for management
AI implementation requires a new type of manager

Explore the evolving role of management in the AI era. Discover why traditional management strategies falter with AI implementation and the rise of the AI translator - a new kind of manager bridging the gap between tech and business

Read More
Illustration of birds flying over a graph
Part III: Data Collection - The Essence of AI

Google's founders used camera tech and a van in 2007 to validate image stitching, evolving to Street View and enhancing Maps with AI-driven data insights, setting a foundation for data-centric AI strategies.

Read More
Illustration of birds working on a whiteboard to plan out data strategy
Part II: Crafting a Compelling AI Product Vision and Narrative

Part II discusses crafting a compelling AI product vision, leveraging historical insights and modern management techniques for effective AI projects.

Read More
AI Investments
AI in Decision Making: Lessons from the Investment World

Explore how leading investment firms like Georgian Partners and Bridgewater Associates leverage AI and radical transparency to enhance decision-making. Discover the importance of combining AI insights with human expertise for optimal outcomes.

Read More
An illustration of birds sitting on a tree, a server is in the background.
Streamlining Website Management with Headless WordPress

Tired of endless CMS changes disrupting your marketing flow? Headless WordPress offers consistency, power, and ease of use.

Read More
Ai in PropTech
AI in PropTech: Transforming Real Estate with Intelligent Solutions

Explore how AI is revolutionizing the real estate industry with applications like property value estimation, AI-driven matchmaking, and conversational AI for customer profiling. Dive into the potential of PropTech and how managers can harness AI to boost profitability and enhance customer experiences.

Read More
Illustrated depiction of birds trying to put together a machine
Part I: Introducing the AI Strategy Framework

Get a proven AI Strategy Framework to take your project from idea to value-driven AI implementation. Actionable steps included.

Read More
AI Transformations: The Value of Steady Progress Over Rapid Innovation

Discover the importance of pacing in AI transformations. Drawing from real-world examples, this article highlights the pitfalls of rushing into AI projects and the benefits of steady, incremental advancements in AI applications.

Read More
Can Someone Please Tell Me What AI Actually Is?

Dive deep into what AI truly means, beyond common misconceptions. Explore the fundamental differences between human cognition and machine problem-solving, and why certain tasks remain a challenge for AI

Read More
Illustration of birds sitting on a stack of automation gear.
Cutting Costs with Automation: A Small Business Guide

Discover effective strategies for leveraging automation to cut operational costs and boost profitability in small businesses. This guide provides insights into selecting and implementing the right automation tools to streamline processes, reduce manual labor, and enhance efficiency.

Read More
Crafting Data-Driven Strategies: The Power of Understanding Machine Learning

Discover how a deep understanding of machine learning can empower managers to craft effective strategies. Learn the difference between supervised and unsupervised machine learning and their real-world applications in business decision-making.

Read More
Data-Driven Decision Making: The Foundation of AI Innovation

Explore the significance of data in the AI era. Understand the challenges faced by legacy systems and the importance of strategic data collection. Learn from past mistakes and the wisdom of industry leaders to harness the power of data for future success.

Read More
Data Processing in AI: A Manager's Guide to Ensuring Quality and Effective Training

Delve into the crucial steps of data processing and model training in AI. Learn how managers can ensure data quality, handle outliers, and understand the significance of training and test sets for successful AI project outcomes.

Read More
Illustration of birds on a servers
AI in Business: Revolutionizing the Corporate Landscape

How AI is reshaping various aspects of business operations, from decision-making processes to customer experiences.

Read More
Deep Learning Demystified: From Jigsaw Puzzles to AI Breakthroughs

Dive into the world of Deep Learning and its transformative impact on AI applications. Understand the layers of neural networks, the history of Deep Learning, and its real-world applications from voice assistants to medical diagnostics.

Read More
Illlustration of a bird on a desk
Harnessing AI for Efficient Inspiration Curation

We streamlined our inspiration curation by using GPT-4.0 to transform a disorganized Slack thread into a well-structured, easily navigable database, saving hours and enhancing our creative workflow efficiency.

Read More
Demystifying AI in the Workplace: 6 Key Disciplines and Their Real-World Applications

Uncover the six major disciplines of AI and their practical examples. Learn how understanding these areas can help align employees with AI initiatives, dispel myths, and foster a positive outlook on AI-driven transformation.

Read More
Demystifying Robotic Process Automation: Impact on Workforce and Business Efficiency

Explore the transformative power of Robotic Process Automation (RPA) in businesses. Understand its role in automating mundane tasks, its impact on jobs, and the surprising benefits it brings to employee engagement and operational efficiency

Read More
Open source code
Embracing Open-Source in Digital Transformation: Unlocking Collective Innovation

Discover the power of an open-source approach in digital transformations. Learn from Kaggle's success and historical examples to harness the collective intelligence of your organization and drive innovative AI solutions.

Read More
weighing benefits and ethics of AI
Ethical Considerations in AI: The Singularity and Its Implications

Delving into the concept of the 'Singularity' by Ray Kurzweil, this article highlights the ethical challenges posed by AI technologies. Using Amazon's Echo Dot for kids as a case study, it underscores the importance of evaluating not just the feasibility but also the ethical implications of AI implementations.

Read More
Football and AI: Tackling the Challenges of Bad Algorithms

Using football as an analogy, delve into the pitfalls of bad algorithms in AI. Understand the concepts of overfitting, underfitting, and the importance of regularization in crafting effective machine learning models.

Read More
toilet paper hoarding teaches us about AI
From Toilet Paper to AI: Lessons from the Pandemic on Rational Decision Making

Drawing insights from the Covid-19 toilet paper frenzy, this article delves into human decision-making processes and how AI can be harnessed to elevate our cognitive abilities. By understanding our inherent biases and needs, we can design AI systems that empower humans to make more rational choices and focus on higher-order aspirations.

Read More
Connection between money, data, and AI
Guarding Digital Gold: The Imperative of Data Security in the AI Era

Drawing parallels between money and data, this article emphasizes the urgency for companies to prioritize data security. As data becomes increasingly valuable, businesses must adopt stringent measures akin to banks, ensuring the safety and privacy of their users' information in the rapidly evolving digital landscape.

Read More
Futuristic boardroom showcasing AI-driven strategies with Canadian city skyline in the background.
Harnessing AI for Post-Series B Growth: A Guide for Canadian Enterprises

Unlock exponential growth for post-Series B Canadian enterprises with tailored AI strategies. Dive into a roadmap that bridges vision with implementation, ensuring your company harnesses the transformative power of AI effectively.

Read More
Implementing AI in Business: A 4-Step Guide for Managers

Discover a structured approach for managers to harness the power of AI in business. From challenging assumptions to choosing the right algorithm, ensure your AI projects align with customer needs and business goals.

Read More
Interpreting Machine Learning for Business Strategy: The Role of Managers

Discover the importance of managers in interpreting ML results for actionable business strategies. Dive into a real-world scenario to understand how industry expertise can transform raw data into actionable insights, driving business success with ML.

Read More
Marshmallows, Kindergartners, and Reinforcement Learning: A Tale of Strategy and AI

Discover the link between the Marshmallow Experiment and reinforcement machine learning. Learn how feedback-driven approaches, similar to kindergartners' strategies, can lead to optimal solutions in AI and business scenarios.

Read More
Measuring Success in Machine Learning: Beyond Accuracy

Explore the nuances of measuring success in ML models. Understand why accuracy isn't the only metric and how different scenarios demand varied evaluation criteria. Dive into real-world examples to grasp the importance of tailored metrics in ML projects

Read More
ModelOps: The Key to Accelerating AI Transformation and Maximizing ROI

Explore the challenges companies face in AI adoption and how ModelOps can streamline the process from data collection to deployment. Learn the importance of data structuring, empowering data science teams, and leveraging expert firms to establish a robust ModelOps framework.

Read More
navy seal strategy
Strategic AI Implementation: Navy SEAL Principles in Business

Discover how Navy SEAL strategies can guide businesses in their AI transformation journey. Embrace a measured approach, from planning to scaling, to ensure successful AI integration and stay ahead of competitors.

Read More
Strategic AI Integration: A Step-by-Step Guide to Successful Innovation

Discover a structured approach to AI integration in businesses. From leveraging internal expertise to identifying key opportunities and setting up innovation labs, learn how to strategically wade into the world of AI without diving headfirst.

Read More
Understanding Data Biases in Machine Learning: Lessons from Politics

Explore the pitfalls of 'bad data' in ML strategies, drawing parallels from political missteps. Learn the importance of critical thinking in data collection and the role of managers in identifying and mitigating biases in ML models.

Read More
Black Swan concept in AI
Understanding the Black Swan in AI: Managing Risks in Big Data

Drawing from Nassem Taleb's concept of the Black Swan, this article emphasizes the importance of recognizing the limitations of big data in AI. By distinguishing between different types of datasets, managers can make informed decisions and mitigate unforeseen risks in their AI strategies.

Read More
unmasking AI ethics
Unmasking Bias with AI: The Ethical Dilemma of Algorithmic Transparency

Exploring the ethical challenges of AI, this article delves into how algorithms can inadvertently expose inherent biases in decision-making. By examining Amazon's hiring algorithm case, we learn that confronting these biases head-on, rather than reverting to old practices, can pave the way for a more equitable future.

Read More
Venture Capital and AI: Navigating Investments in a Complex Landscape

Explore the surge in AI-related startup investments and the potential risks of a speculative bubble. Understand the importance of domain expertise in AI for making informed investment decisions and discover resources to gain insights into the technology.

Read More
Why AI and Machine Learning Aren’t the Same Thing

Dive into the differences between AI and machine learning. Discover how machine learning, a subset of AI, uses data patterns for predictions and the significance of quality data in driving real-time business insights.

Read More
Image of hands on a keyboard in oil painting style
Ecommerce and how it has changed the retail market

The retail industry has changed dramatically over the past decade. From the rise of online shopping and increased competition, to evolving consumer priorities and automation in retail – ecommerce is reshaping how we shop. In this post we'll explore some of these changes, along with their impact on consumers and retailers alike.

Read More
Oil painting of cows in a sunset
Project Launch: Ventec Website

Leading the charge in agricultural tech, Ventec needed a new site to better represent their industry. Today, we're proud to announce the launch of Ventec's new online platform!

Read More
Chess pieces painted in oil
Start With Strategy: The Key To A Successful Project

Without a defining strategy, projects can fall apart at any point in the process. It's important to start on strong footing to ensure success as a result.

Read More
Image of results of SEO, stylized into an oil painting
How long does it take for SEO to start working?

The time factor of SEO is often longer than many companies expect. Here's what to expect when it comes to launching an SEO strategy.

Read More
Painting of an automated arm moving
How to use automation to save you time and money

The key to success for many businesses today is automating tasks to ensure that costs are low, consistency is high, and less time is wasted overall.

Read More
Painting of a man climbing
Top Growth Tools To Expand Your Business

With the world of software evolving at a breakneck pace, here are a few tools that we use to help our clients' businesses grow.

Read More
oil painting of brain above a table representing AI
How Is AI Going To Change Graphic Design?

Artificial intelligence is changing the way every business operates, even in the creative fields that may once have been deemed safe from machine intelligence.

Read More
Sketch of a crane flying
Cranes, Trains, & Automobiles: Evolving Work Culture In The Digital World

With the COVID-forced digital shift, we have created a new benefit initiative to help improve quality of life for team members .

Read More
Watercolor of Paris
Company Trip Report: France 2022

A summary of our first official Cranes, Trains & Automobiles work away, and what's coming down the pipeline!

Read More
Watercolor background with the word "Branding" in the bottom left corner
A guide to creating a brand that works for your audience

It's time to step back and think about your brand in terms of what makes sense for your audience.

Read More
Orange painting with the word "Hybrid" in it
Hybrid Work: The Future Of The Office

The days of the office-bound worker are numbered. Organizations that have been slow to adapt will struggle to compete with those that embrace hybrid work, as employees seek more flexibility in their careers.

Read More
Logo of TIlt Five in a wheat field painting
Tilt Five Announcement

Congratulations to Tilt Five on partnering up with Asmodee to launch Catan in AR!

Read More
Watercolor image with a link icon in the middle of it.
Backlinks and Search Engine Optimization

When it comes to SEO, backlinks hold a lot of power. In fact, they’ve been shown to have a huge effect on how well your site performs in the search engines.

Read More
painting with the word, "Story" in the background
How do you build a brand story?

If you're looking to build your company into something more than just another commodity offering among many others on the market, here are some steps to get started:

Read More
Computer icon on a watercolor backsplash
How Owning A Great Website Impacts Your Business

Metrics on good websites vs. poor ones can be difficult to assess. With that being said, there are some important reasons to ensure your website is helping your company grow.

Read More
Plane moving around world icon, on a purple and green water color background
How Travel Breeds Creativity And Happiness For Our Team

We've found that traveling with our team has made them happier and more creative in the process.

Read More
Watercolor image background with "On-Page SEO" as wording in the middle
On-Page SEO: Questions To Ask Your 'Expert'

SEO is a convoluted field that can be difficult to understand as a non-expert. We have some tips on things to ask your developer or SEO expert as they change your site.

Read More
Our Paper Crane logo against a black and white watercolor splash
Legitimizing Your Brand

Brand legitimacy is a powerful tool for businesses, but many small businesses don't think that way. In this article, we'll discuss the concept of brand legitimacy and how it can help your business grow.

Read More
WordPress logo on a pink watercolor splashed background
How to speed up your Wordpress site

With recent search engine algorithm updates, page speed is more important than ever. Learn about how you can speed up a WordPress website!

Read More
Water color blue background with a Webflow logo
Webflow: When To Use It

Webflow can be a powerful tool in the right hands and perfect situations. In others, it is used to lesser effect when better tools may fit the bill better.

Read More
Oil painting of mountains
Vault 44.01 Lands $150M in Capital Commitment

With a significant fiscal investment, Grey Rock Investments showed their trust in Vault 44.01

Read More
Virtual Gurus logo over a colorful painted backdrop
Virtual Gurus Closes 8.4 Million

The Virtual Gurus were successful in closing 8.4 million dollars in funding after showing incredible year-over-year revenue growth on a consistent basis.

Read More
Board room painting
Kudos Lands $10M In Funding

With employee engagement trending internationally, Kudos leads the way with their unique software.

Read More
Next.js and Headless CMS: Revolutionizing Enterprise Web Development

Read More