<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=273238486464353&amp;ev=PageView&amp;noscript=1">
careers_banner_trimmed

About Us

The Rise of Artificial Intelligence. Chapter 7: Learning

    The Rise of Artificial Intelligence is available for purchase in hard copy from Amazon, Booktopia, Readings, Dymocks, and other booksellers, as well as in ebook form.

    Chapter 7: Learning

    This supplementary video to Chapter 7 of The Rise of Artificial Intelligence covers various aspects of learning, and provides two examples: (1) programming a robot, and (2) programming a racing car. The latter example is illustrated by a simple neural network that serves as the "brain" of the car. The general issue of "adaptability of models" is discussed and explained, and in particular, learning processes related to prediction and optimization models are presented in the context of the car distribution example.

    Some of material in this video is based on a complex business problem that's used as a running example. The following article provides a full explanation of this problem as well as its complexities:

    Michalewicz, Z., Schmidt, M., Michalewicz, M., and Chiriac, C., A Decision-Support System based on Computational Intelligence: A Case Study, IEEE Intelligent Systems, Vol.20 (4), July-August 2005, pp.44 – 49

    Click here to download Chapters 1 & 2 of The Rise of Artificial Intelligence: Real-world applications for revenue and margin growth, and please contact us to request a soft copy of any other chapter of the book.

    book-mockup4Transcript (reading time: 18:45 min)

    [00:00:05]

    Hi, this is Zbigniew Michalewicz, I am one of the co-authors of The Rise of Artificial Intelligence, and this is a supplementary video to Chapter 7 of the book. The topic for today's presentation is learning. When we talk about learning, we mean several things: When we build prediction and optimization models, they have to learn; further, as new data comes in, these models are getting feedback on their performance, measuring outcome, and it will be very, very useful to incorporate this information in this continuous learning process.

    [00:00:47]

    As was the case for Chapters 4, 5 and 6, Chapter 7 is also based on the complex business problem of distributing cars, and we will again continue using it as a running example. The recommended reading is one short article, which is also available from the same website as this video. And the outline of this presentation is straightforward: we'll start with two basic examples: programming a robot, and programming a racing car.

    [00:01:24]

    Then we'll explain the inner workings of a simple neural network as the brain for a racing car. After that, we will talk about models and adaptability, we would return to car distribution example, and using this example, we will illustrate the learning process, whether it's for a predictive model or for optimization.

    [00:01:52]

    Let's start with the following question: how to program a robot so it walks? Now it seems from a high level there are two basic approaches: One is hard and the other is easy. The hard way would be to study the mechanics, weights, movement, balance, and surfaces – as well as many, many other issues then develop a set of rules that the robot would follow and to walk. We can observe ourselves when we walk. We can try to reverse engineer our movement to arrive with a set of rules. But it will be very, very hard. The other approach would be just to train the robot to walk, teach the robot to walk so that the robot can learn.

    [00:02:47]

    The first approach would work as follows: after studying the mechanics and weights and movement and balances, we can arrive with the program which says: raise the left leg by 10 centimeters, move your torso slightly forward and to the right, and keep going. We analyze the weight of the torso and the power of the leg and the overall arrangement of the robot, and can we arrive at some set of rules that will result in some walk.

    [00:03:22]

    But the other way would be the AI way. So in this particular case, we can evolve a program which would control the robot. We can create 100 random programs, then track the performance of these programs, which would be as simple as how long this robot is capable of standing or moving on two legs before falling down. The longer time, the better the program. Then after checking all 100 programs, we select the best 5 programs.

    [00:04:02]

    Let's call them "parents." Then we modify these programs to generate, let's say, 95 new programs ("offsprings"). We replace the old 95 programs that were not selected as parents with offsprings, and we repeat this loop all over again. So let's have a look at what may happen: at generation zero, we have a robot with a random program. It's not impressive. Probably the robot survives a couple of seconds and that's it. But five generations later, we can see some traces of improvement.

    [00:04:44]

    The best program in the population was capable of controlling the robot, so it successfully completed a few steps. Generation 10 is even better. I mean, the best program in generation 10: the robot was wobbling a little bit, moving a few steps and falling down, but look at the best program at Generation 20. The robot learned how to walk, which simply means that the evolutionary process took over and the weaker programs were eliminated and the strongest program would be capable of controlling the robot  at least on a flat surface.

    [00:05:32]

    Nothing fancy, but the robot is walking very, very confident walk. So let's look at very much the same approach for developing a program for self-driving cars. Again, the hard approach would be to study the acceleration, movement, turning, many other issues, or we can pay more attention to the way we drive and translate our behavior into a set of rules, possibly fuzzy rules. As we indicated a couple of videos ago, if the speed is high and the coming turn is sharp, then slow down, something like that, or a game that we can teach the car how to drive so the car will learn.

    [00:06:22]

    And in this experiment, let's assume that we have seven inputs coming to the car in very frequent regular intervals. We have five sensors: one sensor pointing straight forward, two sensors going a little bit to the left, and two additional sensors to the right, and additional two inputs current speed and current direction. The brain of the car should process this information, all seven values: the distance to the end of the road in all five directions, as well as the current speed and current direction.

    [00:07:03]

    And the system should output a new speed and new direction. And later, these two output numbers are connected with the gas pedal or brake to get a new speed higher or lower and a new direction: the turn of wheel to go a little bit left, a little bit right, or straight forward. So if we stay with the program, then we can think how many rules can we really think of, how will these rules would interact with each other? And later, how can we analyze their performance.

    [00:07:39]

    Let's say we arrive at a set of some decent rules, but after a while and some particular courses the car would crash after 30 seconds or so. How do we know which rule was responsible? How do we know how to modify the rule? So even if we arrive at a set of rules, improving them, changing them might be not that straightforward.

    [00:08:08]

    In approach B, let's do the following: We would create 650 random programs, with the larger population the better. Then we'll check the performance of these programs and at this stage, we'll do it by visual inspection. We'll just look at their performance and select the cars that are "satisfying" from a performance point of view. It might be something very, very simple: It might be how long the car was able to drive before crashing into the wall. One way or the other, we should be able to evaluate the performance of all these cars.

    [00:08:51]

    Then we select the best five programs. We can call them "parents," in very much the same approach as for the robot. Then we modify these programs, their brains, to generate 645 new programs (we can call them "offspring"). Again, these offspring replace non-parents and resulting in a new population of 650 random programs. And we keep going: checking their performance, selecting the best few, modifying them, replacement, and again, and again and again generation by generation, the artificial evolutionary process has taken off.

    [00:09:37]

    So let's have a look at the brain for each car. Each car will take seven inputs: Input from camera 1, camera 2, 3, 4 and 5. The current speed and the direction. And this information will be processed by a neural network, with the thicker line meaning a higher weight (because all these inputs will be mixed together in the next few levels), and finally the final two, the highest two nodes, would result in two values: One value would give us the new direction, which is later translated into movement of the steering wheel to stay left, right, how much, and so on, while the other is the new speed, whether to speed up or slow down or maintain the current speed.

    [00:10:26]

    So we have this neural network. The car would be on the road. We have these five yellow beams that would measure the distance to the end of the road so this knowledge would be provided as input as well, as well as the direction and the current speed. And so what we do, we create 650 "brains" for 650 cars. Each car is controlled by a different neural network, and at this stage, we're ready to experiment.

    [00:11:12]

    Again, five inputs for five cameras, five beams: current speed, current direction, and that's all we're after. The system would result in adjustment: whether to turn left, right, speed up, slow down. So let's enjoy this experiment*. This is a single car. This is what we try to accomplish: We'd like to create a brain that would control the car so the sensors give us the distance to the road so the car would know where to go to avoid crashes.

    [00:11:54]

    So 650 cars, random programs, and we see that the first attempt was quite miserable. The cars didn't perform well, except this car we just highlighted. This car was successful by pure chance by making a left turn. So let's look at generation 2. There are some offspring of the smart parent of the car that was successful in taking that turn – this car is marked with yellow, it is here. Now, this is generation 2. And again, how to evaluate their performance, how to evaluate their fitness, is a little bit tricky: we can take something simple, we can take the number of seconds the car survived the race without crashing, we can look at some other characteristics, such as the car's ability to make turns, or its average speed. But if we look at generation number 3, the best cars are doing very well there was a significant distance covered by the best cars.

    [00:13:15]

    And actually, in three generations, we have pretty decent performance at this stage. So evolution takes care of the rest. We just keep creating new generations of cars, and the brains are smarter and smarter because we take only the best parents to reproduce, to modify. And at this stage, the main goal is to stay alive as long as possible. So as we can see, the speed is not that impressive because speed is not included in the evaluation function.

    [00:13:57]

    On the other hand, once we have all the brains developed so the cars would avoid crashing, we can start paying more and more attention to speed. And in many, many generations, the fastest cars are really impressive: in a few seconds, they are capable of covering the whole course without any crashes. And this is without discovering any explicit rule. It's just through training, selection of the best, elimination of the weakest, and the evolution is taking care of the rest.

    [00:14:37]

    Now, let's talk about some real situations. Once we get some initial training data, very often we build a model and train it. We are operating in a static environment, still, it is possible to get some feedback loops, we have elements of learning: we can take the first subset of available data, we can train the model, then we can check the performance of this model on another set of data. So there is some kind of feedback, there is some kind of adjustment, there is some type of learning. But everything happens in a static environment – whatever happens is based on an initial set of data, historical data. The moment comes when we have to deploy the models or model goes live and suddenly the model starts to perform. At this point, a few things are happening: apart from the initial set of data, we are getting a new set of data coming in regular intervals. For example, every quarter we are getting new sales results for the last number of weeks.

    [00:16:01]

    Also, if the system is making recommendations, very often we can get feedback on recommendations, feedback on performance, whether the recommendation had any merit, or the recommendation was accepted or rejected, and so on. So learning is coming from three directions: The initial learning is happening when we train a model, then one type of learning might be connected with new datasets arriving at regular intervals, and another type of learning may be connected with getting direct feedback. So there are many things we can do at this stage. We can rebuild the model if we notice that the performance of the model is not acceptable in the live environment. This may mean that we made some mistakes, some key variable was not included, or the amount of initial data wasn't sufficient. One way or the other, it's necessary to rebuild the model or in some other cases, it might be sufficient just to retrain the model. If the problem is handled well by the predictive model, let's say, but there is a significant number of outliers. It seems that the model is inaccurate on very unique special cases. Then some retraining might be desirable, and very often some small adjustment of the model would be sufficient. So all basic rules are right and we're just adjusting or updating the model to include the newest set of data. But whatever change we make, whatever modification is applied to, whether a predictive model or optimisation model, we call it adaptability. And this will be one of the requirements of most systems: to be adaptive. So the system should be able to learn and change with respect to changes in the environment. Let's return to our car distribution example. Again, a very quick summary: GMAC leasing company, part of General Motors, is getting back a significant number of cars after the termination of leases and rentals. This number is around 1.2 million cars, and this translates into between four and seven thousand off-lease cars being returned and consequently distributed every single business day.

    [00:19:08]

    And the team in Detroit of 23 analysts are making daily decisions on where to send these cars to maximize the resale value. And we talked already about the prediction issues, we already talked about optimization issues, but there are also learning issues because the problem is set in a dynamic environment. Petrol prices go up and most likely prices of sport utility vehicles would go the other way. Then suddenly these different colors are popular in different states and new makes and models enter the market.

    [00:19:52]

    Many, many things are happening, and the environment today usually is very different than it was three years ago, so ideally, we should create a system that can react to changes in the environment. We talked about this problem over the past few presentations, about distribution centers and the different auctions that are placed in different states. We have some changes in demographics around auction sites. We have different demands because of new makes and models, thus the popularity of different cars can change in a significant way.

    [00:20:40]

    We can look at this map as a representation of a dynamic environment. And we also talked about this interaction between the optimizer and predictive model. The optimizer is searching through a vast number of possible distributions, and the predictive model is evaluating all these distributions saying "Hey, this distribution would provide an average lift of $313 per car." And we underline this mechanics of the optimizer, as this loop of proposing a new distribution and evaluating this new distribution is repeated many, many times.

    [00:21:28]

    And this is really a daily activity: every single day the GMAC team is running the system, and in seven, eight minutes the system would return the recommended distribution, and the final outcome is an average lift per car of $245. Every day the system would get a fresh input between 4,000 and 7,000 cars to be distributed and this is their daily activity. However, also every Monday morning, the system is getting additional files. The system is getting direct feedback on performance. The system is getting a file of all cars that were sold during the last seven days from last Monday to today, and for each car we have the date of sale and the auction location. There is also the predicted price and the actual price, so actually the system has an opportunity to compare predicted values with actual values and to make adjustments if necessary. So this is the learning component: We look at what happened, we know what we predicted, we know what the actual values are, and then we can start reasoning. We can look at all these deltas. We can look at means and averages and deviation, wondering whether some discrepancies are justified it just happened or they signal a trend.

    [00:23:19]

    And so learning is also key. Without this feature, probably the system would be obsolete six months after it went live. So apart from prediction and optimization, the learning component was also of major significance. And we talk about predictive model in the context of the car distribution system, which was an ensemble stacking model: one model was making the base prediction, many other models were making adjustments, which we covered in Chapter 5.

    [00:24:03]

    So now when the time comes for updates based on direct feedback, we may update the base model. It may happen that Toyota Corollas are not that popular any longer and there is a very clear trend possibly because of a different model or model of a competitor – less and less people are interested in Toyota Corollas. So the base model should be updated accordingly, as there is a new trend in the environment. Then we have to update the model by making some adjustments based on mileage, based on color, based on season, based on a variety of things, because simply, again, it's a different environment.

    [00:24:53]

    It may be because of gas prices. Some adjustments would look different. And on top of everything, we have to update this meta-model – this neural network which synchronizes the base prediction and adjustment, which makes the final prediction. It may be necessary to tune the weights of this neural network a little bit further. And again, it is done in an automatic way. There is also learning connected with optimization. One of the early experiments indicated that different optimization methods such as ant systems and evolutionary strategy, evolutionary programming, genetic algorithm, simulated annealing, and so on – give different performance, and the reason is the that not every day is the same as the other day.

    [00:25:58]

    It might be that on day one majority, 80% of cars were returned around Washington and Boston area. It may be that some big government department was returning their cars, the lease is terminated on the same day and a significant number of cars is returned in this particular location. So, we are dealing with a situation when this distribution center around Washington, D.C. may be overloaded and other distribution centers may have a minimum number of cars.

    [00:26:36]

    How to distribute these cars? As distributing these cars might be a very different exercise than some other (average) day when every distribution center gets more or less the same number of cars, and there is a variety of different cars. Also, on day 5, maybe one agency returned 300 white Pontiacs at one single location. What should we do with cases like that? And different optimization techniques have different characteristics. They may deal better or worse with different instances of the problem.

    [00:27:18]

    So the problem is very much the same: just distribute the cars, but the starting instance may be very, very different from uniform distribution through cases where the concentration of most cars is in one location. Then we observe that different algorithms would give different performance: genetic algorithm was the best algorithm for day number one, but on the other hand, ant system was the best algorithm for day 3. What we can do in a situation like that? Actually, we can do a lot. We can learn, and learning is the following: we can analyze car distribution for each day, and we can pay attention: which algorithm was the best algorithm for a particular instance of the problem. And then we can train a neural network: we can look at the number of cars and the number to be distributed, and the number of auctions which are open within the next two weeks, and we have some distribution indices to give us information on how these cars are distributed across the nation.

    [00:28:38]

    Also, it is very important to mention constraints. We have some constraints index. We may have so many constraints and so many business rules, then we can hardly have any choice where to send the car. If we say, let's say maximum distance for transportation is 200 miles, basically we are directing cars to the closest auction site. So even very primitive optimization algorithms would do very well because the number of choices is quite limited. If we relax constraints and the feasible search space is much, much larger, then we would need some sophistication for optimization.

    [00:29:25]

    So with this knowledge of all constraints the size of feasible search space and its ratio with respect to the whole search space and information on distribution, and the number of cars and so on, we can train a neural network, which for a new case, a new instance, would recommend the best algorithm, which would take responsibility for optimizing this particular instance. So to conclude, learning is also a key component in the whole operation. Going back to our pyramid, when we started with the problem, data, information, knowledge, we talk about prediction, optimization, now we are making decisions, but these decisions are supported by learning components and decisions are made in a dynamic environment, and this is extremely important to keep it in mind. So to summarize, the predictive model is key, and this was the content of Chapter 5 and presentation connected with Chapter 5. Without a good predictive model, the optimizer would have an impossible task. Without accurate prediction, the system wouldn't provide much value. Optimization is also key – this is what we covered in the presentation related to Chapter 6 because without a clever way of searching through an enormous number of possible distributions, it would take simply too long to find an optimum solution.

    [00:31:08]

    And learning component is key, because problems are set in dynamic environments. And this concludes the presentation for Chapter 7. Thank you.

    *video credit:

    Contact

    To schedule a demo or learn more about our software productsplease contact us:

    Request a Demo

    "Larry will be our digital expert that will enable our sales team and add that technological advantage that our competitors don't have."

    Kerry Smith
    CEO, PFD Foods
    $1.6 billion in revenue
    PFD Food Services uses Complexica's Order Management System

    "Lion is one of Australasia’s largest food and beverage companies, supplying various alcohol products to wholesalers and retailers, and running multiple and frequent trade promotions throughout the year. The creation of promotional plans is a complicated task that requires considerable expertise and effort, and is an area where improved decision-making has the potential to positively impact the sales growth of various Lion products and product categories. Given Complexica’s world-class prediction and optimisation capabilities, award-winning software applications, and significant customer base in the food and alcohol industry, we have selected Complexica as our vendor of choice for trade promotion optimisation."

    Mark Powell
    National Sales Director, Lion
    Lion

    "At Liquor Barons we have an entrepreneurial mindset and are proud of being proactive rather than reactive in our approach to delivering the best possible customer service, which includes our premier liquor loyalty program and consumer-driven marketing. Given Complexica’s expertise in the Liquor industry, and significant customer base on both the retail and supplier side, we chose Complexica's Promotional Campaign Manager for digitalizing our spreadsheet-based approach for promotion planning, range management, and supplier portal access, which in turn will lift the sophistication of our key marketing processes."

    Richard Verney
    Marketing Manager
    Liquor Barons

    LB

    "Dulux is a leading marketer and manufacturer of some of Australia’s most recognised paint brands. The Dulux Retail sales team manage a diverse portfolio of products and the execution of our sales and marketing activity within both large, medium and small format home improvement retail stores. We consistently challenge ourselves to innovate and grow and to create greater value for our customers and the end consumer. Given the rise and application of Artificial Intelligence in recent times, we have partnered with Complexica to help us identify the right insight at the right time to improve our focus, decision making, execution, and value creation."

    Jay Bedford
    National Retail Sales Manager
    Dulux

    DuluxGroup-logo

    "Following a successful proof-of-concept earlier this year, we have selected Complexica as our vendor of choice for standardizing and optimising our promotional planning activities. Complexica’s Promotional Campaign Manager will provide us with a cloud-based platform for automating and optimising promotional planning for more than 2,700 stores, leading to improved decision-making, promotional effectiveness, and financial outcomes for our retail stores."

    Rod Pritchard
    Interim CEO, Metcash - Australian Liquor Marketers
    $3.4 billion in revenue
    Metcash_ALM_logo

    "After evaluating a number of software applications and vendors available on the market, we have decided to partner with Complexica for sales force optimisation and automation. We have found Complexica’s applications to be best suited for our extensive SKU range and large set of customers, being capable of generating recommendations and insights without burdening our sales staff with endless data analysis and interpretation. 

    Aemel Nordin
    Managing Director, Polyaire
    Polyaire chooses Complexica for sales force optimisation and automation

    "DuluxGroup is pleased to expand its relationship with Complexica, a valued strategic partner and supplier to our business. Complexica’s software will enable DuluxGroup to reduce the amount of time required to generate usable insights, increase our campaign automation capability, personalise our communications based on core metrics, and close the loop on sales results to optimise ongoing digital marketing activity."

    James Jones
    Group Head of CRM, DuluxGroup
    DuluxGroup-logo

    "Instead of hiring hundreds of data scientists to churn through endless sets of data to provide PFD with customer-specific insights and personalised recommendations, Larry, the Digital Analyst® will serve up the answers we need, when we need them, on a fully automated basis without the time and manual processes typically associated with complex analytical tasks.”

    Richard Cohen
    CIO, PFD Foods
    $1.6 billion in revenue
    PFD_Food_Services

    "As a global innovator in the wine industry, Pernod Ricard Winemakers is always seeking ways to gain efficiencies and best practices across our operational sites. Given the rise of Artificial Intelligence and big data analytics in recent times, we have engaged Complexica to explore how we can achieve a best-in-class wine supply chain using their cloud-based software applications. The engagement is focused on Australia & New Zealand, with a view to expand globally."

    Brett McKinnon
    Global Operations Director, Pernod Ricard Winemakers
    Pernod_Ricard_Logo

    "70% - 80% of what we do is about promotional activity, promotional pricing -- essentially what we take to the marketplace. This is one of the most comprehensive, most complex, one of the most difficult aspect of our business to get right. With Complexica, we will be best in class - there will not be anybody in the market that can perform this task more effectively or more efficiently than we can."

    Doug Misener
    CEO, Liquor Marketing Group
    1,400+ retail stores
    Liquor Marketing Group LMG uses Complexica's Promotional Campaign Manager

    "The key thing that makes such a difference in working with Complexica is their focus on delivering the business benefits and outcomes of the project."

    Doug Misener
    CEO, Liquor Marketing Group
    1,400+ retail stores
    Liquor Marketing Group LMG uses Complexica's Promotional Campaign Manager

    "Australia needs smart technology and people, and it has been a great experience for me to observe Complexica co-founders Zbigniew and Matt Michalewicz assemble great teams of people using their mathematical, logic, programming, and business skills to create world-beating products. They are leaders in taking our bright graduates and forging them into the businesses of the future."

    Lewis Owens
    Chairman of the Board, SA Water
    SA-Water.png

    "Having known the team behind Complexica for some years ago now, I am struck by their ability to make the complex simple - to use data and all its possibilities for useful purpose. They bring real intelligence to AI and have an commercial approach to its application."

    Andrew McEvoy
    Managing Director, Fairfax Media - Digital
    fairfax.png

    "I have worked with the team at Complexica for a number of years and have found them professional, innovative and have appreciated their partnership approach to delivering solutions to complex problems."

    Kelvin McGrath
    CIO, Asciano
    Asciano.png

    “Working with Complexica to deliver Project Automate has been a true partnership from the initial stages of analysis of LMG’s existing processes and data handling, through scoping and development phase and onto delivery and process change adoption. The Complexica team have delivered considerable value at each stage and will continue to be a valued partner to LMG."

    Gavin Saunders
    CFO, Liquor Marketing Group
    Liquor Marketing Group LMG uses Complexica's Promotional Campaign Manager

    “Complexica’s Order Management System and Larry, the Digital Analyst will provide more than 300 Bunzl account managers with real-time analytics and insights, to empower decision making and enhanced support. This will create more time for our teams to enable them to see more customers each day and provide the Bunzl personalised experience.”

    Kim Hetherington
    CEO, Bunzl Australasia
    Bunzl Australia uses Complexica's Order Management System

    "The team behind Complexica develops software products that are at the cutting edge of science and technology, always focused on the opportunities to deliver a decisive competitive edge to business. It has always been a great experience collaborating with Matthew, Zbigniew and Co."

    Mike Lomman
    GM Demand Chain, Roy Hill Iron Ore
    roy-hill.png

    "The innovations that the Complexica team are capable of continue to amaze me. They look at problems from the client side and use a unique approach to collaborating with and deeply understanding their customers challenges. This uniquely differentiates what they bring to market and how they deliver value to customers."

    John Ansley
    CIO, Toll Group
    toll_logo

    "Rather than building out an internal analytics team to investigate and analyse countless data sets, we have partnered with Complexica to provide our sales reps with the answers they need, when they need them, on a fully automated basis. We are excited about the benefits that Larry, the Digital Analyst will deliver to our business.”

    Peter Caughey
    CEO, Coventry Group
    Coventry_Group_v2

    “Complexica’s Order Management System and Larry, the Digital Analyst will provide more than 300 Bunzl account managers with real-time analytics and insights, to empower decision making and enhanced support. This will create more time for our teams to enable them to see more customers each day and provide the Bunzl personalised experience.”

    Kim Hetherington
    CEO, Bunzl Australasia
    Bunzl Australia uses Complexica's Order Management System

    "After an evaluation process and successful proof-of-concept in 2016, we have chosen to partner with Complexica to upgrade the technological capability of our in-field sales force. The next-generation Customer Opportunity Profiler provided by Complexica will serve as a key tool for sales staff to optimise their daily activities, personalise conversations and interactions with customers, and analyse data to generate actionable insights."

    Stephen Mooney
    Group Sales Capability Manager, DuluxGroup
    $1.7 billion in revenue
    Dulux Group uses Complexica's Customer Opportunity Profiler

     "After evaluating a number of software systems available in the marketplace, we have ultimately selected Complexica as our vendor of choice for sales force automation and CRM. Given the large SKU range we carry and very long tail of customers we serve, Complexica’s applications are best suited to deal with this inherent complexity without burdening our staff with endless data entry."

    Nick Carr
    CEO, Haircaire Australia
    Australia's largest distributor of haircare products
    Haircare Australia to use Complexica's Customer Opportunity Profiler, CRM and Order Management System

    “Asahi Beverages is Australia’s largest brewer, supplying a leading portfolio to wholesalers and retailers, including some of Australia’s most iconic brands. Last year Asahi Beverages acquired Carlton & United Breweries, which is its Australian alcohol business division. To harness the strength of our expanded portfolio, we partner with our customers to run multiple and frequent trade promotions throughout the year, delivering long-term growth for both our business and theirs. Given the inherent complexity in optimising promotional plans and our continued focus on revenue and growth management, we have selected Complexica as our vendor of choice after a successful Proof-of-Concept of its world-class optimisation capabilities.”

    Kellie Barnes
    Group Chief Information Officer
    Asahi Beverages
    Asahi

    "Dulux is a leading marketer and manufacturer of some of Australia’s most recognised paint brands. The Dulux Retail sales team manage a diverse portfolio of products and the execution of our sales and marketing activity within both large, medium and small format home improvement retail stores. We consistently challenge ourselves to innovate and grow and to create greater value for our customers and the end consumer. Given the rise and application of Artificial Intelligence in recent times, we have partnered with Complexica to help us identify the right insight at the right time to improve our focus, decision making, execution, and value creation."

    Jay Bedford
    National Retail Sales Manager, DuluxGroup
    Dulux Group uses Complexica's Customer Opportunity Profiler

    "At Liquor Barons we have an entrepreneurial mindset and are proud of being proactive rather than reactive in our approach to delivering the best possible customer service, which includes our premier liquor loyalty program and consumer-driven marketing. Given Complexica’s expertise in the Liquor industry, and significant customer base on both the retail and supplier side, we chose Complexica's Promotional Campaign Manager for digitalizing our spreadsheet-based approach for promotion planning, range management, and supplier portal access, which in turn will lift the sophistication of our key marketing processes."

    Richard Verney
    Marketing Manager, Liquor Barons
    Barons-Logo-2

    Some of our Customers