Views
No views yet
.py composer, more details on which, along with others, can be found in the On Pretraining for Project-Level Code Completion paper (arxiv). Specifically, Section A.1 of the Appendix describes the context composition method, and Table 3 provides a comparison with other composers from the same collection.1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_name = "JetBrains-Research/OpenCoder-1.5B-Random-Py"
5tokenizer_name = "infly/OpenCoder-1.5B-Base"
6
7model = AutoModelForCausalLM.from_pretrained(model_name,
8 torch_dtype=torch.bfloat16,
9 device_map="auto",
10 trust_remote_code=True)
11tokenizer = AutoTokenizer.from_pretrained(tokenizer_name, trust_remote_code=True)
12
13inputs = tokenizer("# write a quick sort algorithm", return_tensors="pt")
14outputs = model.generate(**inputs.to(model.device), max_new_tokens=256)
15
16result = tokenizer.decode(outputs[0], skip_special_tokens=True)
17print(result)