1 billion parameter version of MultiPLCoder, a set of StarCoder-based models finetuned on the MultiPL-T dataset.
These models are state-of-the-art at low-resource languages, such as: Lua, Racket, and OCaml.
Language Revision Index
This is the revision index for the best-performing models for their respective langauge.
Langauge
Revision ID
Epoch
Lua
7e96d931547e342ad0661cdd91236fe4ccf52545
3
Racket
2cdc541bee1db4da80c0b43384b0d6a0cacca5b2
5
OCaml
e8a24f9e2149cbda8c3cca264a53c2b361b7a031
6
Usage
To utilize one of the models in this repository, you must first select a commit revision for that model from the table above.
For example, to use the Lua model:
-- Hello World!
-- :param name: The name of the person to say hello to
-- :return: A greeting
local function say_hello(name)
return "Hello ".. name
end