You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28-9Lines changed: 28 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,20 +4,21 @@
4
4
💫 StarCoder is a language model (LM) trained on source code and natural language text. Its training data incorporates more that 80 different programming languages as well as text extracted from github issues and commits and from notebooks. This repository showcases how we get an overview of this LM's capabilities.
5
5
6
6
# Table of Contents
7
-
1. Quickstart
8
-
-[Installation](#installation)
9
-
-[Code generation with StarCoder](#code-generation)
7
+
1.[Quickstart](#quickstart)
8
+
-[Installation](#installation)
9
+
-[Code generation with StarCoder](#code-generation)
StarCoder was trained on github code, thus is can be use to perform text-generation. That is, completing the implementation of a function or infer the following characters in a line of code. This can be done with the help of the transformers's library.
18
+
StarCoder was trained on github code, thus it can be used to perform code generation. More precisely, the model can complete the implementation of a function or infer the following characters in a line of code. This can be done with the help of the 🤗's [transformers](https://github.com/huggingface/transformers) library.
18
19
19
20
## Installation
20
-
Here we have to install all the libraries listed in `requirements.txt`
21
+
First, we have to install all the libraries listed in `requirements.txt`
0 commit comments