91热爆

Using Artificial Intelligence to Search the Archive

The technical details on how AI was used to create 91热爆 Four's Made by Machine programme.

Published: 4 October 2018
  • Tim Cowlishaw

    Tim Cowlishaw

    Senior Software Engineer

A couple of weeks back, my colleague Caroline Alton wrote about our work on 鈥Made by Machine: When AI Met The Archive鈥, our collaboration with 91热爆 Four to produce an hour of programming, picked from the 91热爆鈥檚 archive entirely automatically, using machine learning techniques. Creating a TV programme with a minimum of human intervention was an ambitious project, and one without precedent at the 91热爆 (or, to our knowledge, elsewhere), so I鈥檓 going to take some time to outline a bit more detail on the challenges we faced, and the techniques we used to bring this idea to fruition!

91热爆 R&D has been developing AI to help programme makers and schedulers search the 91热爆鈥檚 archive, which was being used to help 91热爆 Four curate an evening of archive programming. As part of this, Cassian Harrison, controller of 91热爆 Four, asked us to explore what would happen if artificial intelligence then tried to create a programme. This seems like a simple-enough enquiry, but we soon realised it contains interesting subtleties - beyond the practical question of whether it鈥檚 possible, there鈥檚 also the deeper question of what it might mean for an AI to 鈥榗reate鈥 a programme at all - what constraints would it operate under? What would inform its decisions? What would its objective in creating this programme be?

As the project took shape, some of these questions were answered as a result of the practical constraints of making the programme. We decided early on that the programme should assemble new programmes from archive footage, learning to make decisions from a corpus of the 鈥榖est鈥 or most representative 91热爆 Four programmes we鈥檝e produced. This would require us to identify a representative set of 91热爆 Four programmes, and to segment them into coherent 鈥榮cenes鈥, for later re-assembly by the 鈥楢I鈥.

As an experiment, we tried to do this with as little human intervention as possible, in order to see what was, and wasn鈥檛 possible and let people see the results of that. Therefore, we attempted to use machine learning to derive a measure of 鈥91热爆 Four-ness鈥 which we could use to select the most representative 91热爆 Four programmes for further processing. We did this by training a linear support vector classifier to predict whether or not a given programme was broadcast on 91热爆 Four, based on features derived from editorial metadata about that programme (genres, summaries and synopses). This performed very well, with an overall classification accuracy of 97%. We then used this model to generate a score for each programme in our archive (using the distance from the decision boundary as the score), and picked the top 150 programmes for further processing.

The candidate programmes were split into scenes using an algorithm developed by our colleague Craig Wright from 91热爆 R&D's AI in Production project, while he was on a graduate placement with our own data team, last year. This yielded several thousand individual scenes, which could be stitched back together into new programmes by our machine learning models.

The next question, then, was how to edit these clips back together. It was apparent that there were many approaches we could have taken, based on different algorithms and feature sets, and with very different results. However, this diversity of possible approaches seemed like an interesting opportunity to us - we could use the programme to explore and compare some of these different approaches - highlighting the ways they work (and the ways they fail) in a compelling way for an audience who might not be familiar this sort of technology. In this way, we could produce a programme that wasn鈥檛 just made by machine learning, but was about machine learning too - using the task of 鈥榗reating a programme鈥 to explore some of the wider questions about these technologies and how they make decisions.

Ultimately we chose to concentrate on three approaches to teaching the machine to examine and link footage from across the vast 91热爆 archive - object detection, subtitle analysis, and 鈥榲isual energy鈥 analysis, all three of which I鈥檒l explain now.

Our first attempt at analysing the programme segments focused on the visual. We chose to apply the work of Johnson, Karpathy and Li at Stanford University in their paper to analyse the video footage of our programmes and attempt to identify the subjects depicted on screen, via automatic image captioning.

We used these captions to build sequences - starting from a random 鈥榮eed clip鈥, we would then assemble a sequence by picking clips which depicted a similar scene to the previous one, as determined by our densecap model. This was the first sequence shown in the programme. This produced some interesting results - and also failed in ways which were interesting from a narrative point of view - the machine鈥檚 propensity to mis-gender short-haired women, for instance, was an obvious example of the kind of human bias which can be reproduced by machine learning systems. However, this approach really failed to capture much about the narrative subject of our scenes, and didn鈥檛 really produce a sequence with overall coherence, leading to our second approach.

The images on screen don鈥檛 tell the whole story in a TV programme - what is on the soundtrack is equally as important to the medium鈥檚 ability to tell stories. This is especially true in documentary footage (which made up a large proportion of our corpus of programmes), due to the use of voice-over to drive the overall narrative. As a result, our machine learning models really needed to be able to understand what is said as well as what is shown within our programmes, so this is where we turned our attention for the second section of the programme. Thankfully, the vast majority of our broadcast programmes have already been transcribed (in the form of subtitles), which made this part of the process significantly easier. Using the programme subtitles, we applied various natural language processing techniques including and in order to build a model of semantic similarity between scenes based on their subtitles, and used this to build the second sequence in the programme.

This produced a number of interesting sequences, which to our eyes, appeared to have more thematic coherence than the object-detection approach. The sequence which was selected for the final programme, in particular, to me at least, has rather an interesting thread about British social history running through it - ranging from the Harold Wilson government鈥檚 building of the National Theatre, to the philosophical reflections of a Routemaster bus conductor. However, while this produced a promising sequence - we felt that our approaches so far had neglected to incorporate the aesthetic craft of TV storytelling - the way in which moving images and sound are combined to give the impression of specific feelings or sensations, as well as to show images and tell stories. As a result, for our third sequence, we attempted to build a sequence with particular affective properties, rather than a particular coherent story.

In order to do this, after some discussion with Cassian and the 91热爆 Four team, we decided to attempt to model the amount of 鈥榚nergy鈥 or 鈥榙ynamism鈥 in a given scene - the combination of pace of editing, and movement of camera and/or subject which can make a given scene feel relaxing or tense, melancholy or uplifting. We built a model which uses the results of the MPEG-2 video encoding process to rank scenes by their perceived dynamism, then used these 鈥榲isual energy scores鈥 to map scenes to a 鈥榥arrative curve鈥 - starting with low energy clips, building to a 鈥榩eak鈥 of more energetic scenes, before tapering off again. This did indeed produce an interesting analysis of filmic style, and the differences between the high-and-low energy clips seemed pretty apparent (with a couple of exceptions - very grainy, archive film footage, for instance, would consistently be perceived by the machine as 鈥榟igh energy鈥). On it鈥檚 own though, this approach doesn鈥檛 make for particularly interesting viewing, due to the total absence of any narrative structure to the programme it produces. The question then, is whether we could combine our three approaches into a fourth approach which was greater than the sum of its parts?

This is exactly what we attempted with the fourth and final sequence in the programme. Using Long short-term memory deep neural networks, and all the feature representations learned by our previous models, we attempted to learn a sequence model from our corpus of 91热爆 Four programmes - allowing the machine to use all the features we鈥檇 derived earlier to learn a sequencing of scenes from the actions of the (human) editors of our archive programmes. At this point the workings of the machine were both un-controllable by its human operators, but also un-interpretable - in complicated neural networks, it鈥檚 very difficult to inspect or interpret why certain decisions are made - we could simply sit back and watch, and attempt to interpret the machine鈥檚 work, in the same way as the audience of the programme.

So, did this work? in terms of producing compelling television, we鈥檒l let you be the judge of that - at the time of writing, the programme is available to watch on 91热爆 iPlayer. More generally though, the project was a resounding success in research terms - the techniques and technologies we use have wider application in developing products, services and tools that enable easier access to archive programmes, and the reuse of our archive in new and creative ways, a direction which we are going to continue to explore in the coming months. In addition, having the opportunity to make a TV programme has taught us loads about the TV production process, and given us plenty of ideas for future projects!

  • Internet Research and Future Services section

    The Internet Research and Future Services section is an interdisciplinary team of researchers, technologists, designers, and data scientists who carry out original research to solve problems for the 91热爆. Our work focuses on the intersection of audience needs and public service values, with digital media and machine learning. We develop research insights, prototypes and systems using experimental approaches and emerging technologies.

Rebuild Page

The page will automatically reload. You may need to reload again if the build takes longer than expected.

Useful links

Theme toggler

Select a theme and theme mode and click "Load theme" to load in your theme combination.

Theme:
Theme Mode: