# Summarising scientific publications from a tech-transfer perspective This is a simplified example illustrating how `great-ai` is used in practice at [ScoutinScience](https://www.scoutinscience.com/){ target=_blank }. The subpages show `great-ai` in action by going over the life-cycle of finetuning and deploying a BERT-based software service. ??? note "Propriety data" The purpose of this example is to show you different ways in which `great-ai` can assist you. The exact NLP task being solved is not central. Stemming from this, and from the difficult nature of obtaining appropriate training data, the propriety dataset used for the experiments is not shared. ## Objectives 1. You will see how the [great_ai.utilities](/reference/utilities) can integrate into your Data Science workflow. 2. You will see how [great_ai.large_file](/reference/large-file) can be used to version and store your trained model. 3. You will see how [GreatAI][great_ai.GreatAI] should be used prepare your model for a robust and responsible deployment. 4. You will see multiple ways of customising your deployment. ## Overview One of the core features of the ScoutinScience platform is summarising research papers form a tech-transfer perspective. In short, extractive summarisation is preferred using a binary classifier trained on clients' judgement of sentence interestingness. Thus, documents are sentences and the expected output is a binary label showing whether a sentence is "worthy" of being in the tech-transfer summary. Providing an explanation for each decision is imperative since ScoutinScience embraces applying only explainable AI (XAI) methods wherever feasible. !!! success You are ready to start the tutorial. Feel free to come back to the [summary](#summary) section once you're finished.