Shivanand Roy 👋 commited on
Commit
6e5eb22
·
1 Parent(s): 5a9665e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -7
README.md CHANGED
@@ -23,17 +23,20 @@ license: mit
23
  ---
24
 
25
  # T5 One Line Summary
26
- A T5 model trained on 370,000 research papers, to generate one line summary based on description/abstract of the papers
27
-
28
- Trained with [**simpleT5**](https://https://github.com/Shivanandroy/simpleT5)⚡️in just 3 lines of code
29
- - [**simpleT5**](https://https://github.com/Shivanandroy/simpleT5)⚡️ is a python package built on top of **pytorch lightning** and **transformers**🤗, to quickly train T5 models.
30
 
31
  ## Usage:[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1HrfT8IKLXvZzPFpl1EhZ3s_iiXG3O2VY?usp=sharing)
32
  ```python
33
- abstract = """We describe a system called Overton, whose main design goal is to support engineers in building, monitoring, and improving production machine learning systems. Key challenges engineers face are monitoring fine-grained quality, diagnosing errors in sophisticated applications, and handling contradictory or incomplete supervision data. Overton automates the life cycle of model construction, deployment, and monitoring by providing a set of novel high-level, declarative abstractions. Overton's vision is to shift developers to these higher-level tasks instead of lower-level machine learning tasks. In fact, using Overton, engineers can build deep-learning-based applications without writing any code in frameworks like TensorFlow. For over a year, Overton has been used in production to support multiple applications in both near-real-time applications and back-of-house processing. In that time, Overton-based applications have answered billions of queries in multiple languages and processed trillions of records reducing errors 1.7-2.9 times versus production systems.
 
 
 
 
 
 
34
  """
35
  ```
36
- Transformers🤗
37
  ```python
38
  model_name = "snrspeaks/t5-one-line-summary"
39
 
@@ -50,7 +53,7 @@ print(preds)
50
  "Overton: A System for Building, Monitoring, and Improving Production Machine Learning Systems",
51
  "Overton: Building, Monitoring, and Improving Production Machine Learning Systems"]
52
  ```
53
- simpleT5⚡️
54
  ```python
55
  # pip install --upgrade simplet5
56
  from simplet5 import SimpleT5
 
23
  ---
24
 
25
  # T5 One Line Summary
26
+ A T5 model trained on 370,000 research papers, to generate one line summary based on description/abstract of the papers using [**simpleT5**](https://https://github.com/Shivanandroy/simpleT5) (built on top of pytorch lightning⚡️ & transformers🤗 to train T5 models)
 
 
 
27
 
28
  ## Usage:[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1HrfT8IKLXvZzPFpl1EhZ3s_iiXG3O2VY?usp=sharing)
29
  ```python
30
+ abstract = """We describe a system called Overton, whose main design goal is to support engineers in building, monitoring, and improving production
31
+ machine learning systems. Key challenges engineers face are monitoring fine-grained quality, diagnosing errors in sophisticated applications, and
32
+ handling contradictory or incomplete supervision data. Overton automates the life cycle of model construction, deployment, and monitoring by providing a
33
+ set of novel high-level, declarative abstractions. Overton's vision is to shift developers to these higher-level tasks instead of lower-level machine learning tasks.
34
+ In fact, using Overton, engineers can build deep-learning-based applications without writing any code in frameworks like TensorFlow. For over a year,
35
+ Overton has been used in production to support multiple applications in both near-real-time applications and back-of-house processing. In that time,
36
+ Overton-based applications have answered billions of queries in multiple languages and processed trillions of records reducing errors 1.7-2.9 times versus production systems.
37
  """
38
  ```
39
+ ### Using Transformers🤗
40
  ```python
41
  model_name = "snrspeaks/t5-one-line-summary"
42
 
 
53
  "Overton: A System for Building, Monitoring, and Improving Production Machine Learning Systems",
54
  "Overton: Building, Monitoring, and Improving Production Machine Learning Systems"]
55
  ```
56
+ ### Using simpleT5⚡️
57
  ```python
58
  # pip install --upgrade simplet5
59
  from simplet5 import SimpleT5