Views
No views yet
This is a quantized version of the original model, found at "msaad02/llama2_7b_brockportgpt"
Are SAT scores required?SAT scores are not required for admission, but test scores are used as part of Brockport's holistic review process to make admissions decisions.
Who can I contact for help with financial aid?You can contact the financial aid office at SUNY Brockport for assistance with financial aid. They are available to answer any questions and help you navigate the financial aid process.
Below is an inquiry related to SUNY Brockport - from academics, admissions, and faculty support to student life. Prioritize accuracy and brevity.### Instruction:
{question}### Response:
{response}
1from ctransformers import AutoModelForCausalLM
2import textwrap
3
4llm = AutoModelForCausalLM.from_pretrained(
5 model_path_or_repo_id="msaad02/llama2_7b_brockportgpt_gguf",
6 model_file="brockportgpt-7b-q4_1.gguf",
7 model_type="llama"
8)
9
10def qa(text: str, full = False):
11 # textwrap.dedent gets rid of indenting at the start of each newline
12 text = textwrap.dedent(f"""\
13 Below is an inquiry related to SUNY Brockport - from academics, admissions, and faculty support to student life. Prioritize accuracy and brevity.
14
15 ### Instruction:
16 {text}
17
18 ### Response:
19 """)
20
21 response = llm(text, max_new_tokens=256)
22 response = (text + response) if full else response
23
24 return response
25
26qa("How do I apply?")
27> You can apply for admission to the University by completing an application online or by mailing a paper copy of the application to SUNY Brockport (available only through PDF upload).
28
29print(qa("How do I apply?", full=True))
30> Below is an inquiry related to SUNY Brockport - from academics, admissions, and faculty support to student life. Prioritize accuracy and brevity.
31>
32> ### Instruction:
33> How do I apply?
34>
35> ### Response:
36> You can apply for admission to the English department at SUNY Brockport by following the application process outlined on their website.