Spaces:
Running
Running
Commit
·
662bf12
1
Parent(s):
16c16dd
added json to hugging face
Browse files
app.py
CHANGED
@@ -11,9 +11,8 @@ st.title("Microsoft Phi-2 LLM assessment")
|
|
11 |
st.write("""
|
12 |
Microsoft Phi-2 (https://huggingface.co/microsoft/phi-2) is a Transformer model with 2.7 billion parameters. Performance on benchmarks for common sense, language understanding, and logical reasoning is nearly state-of-the-art among models with less than 13 billion parameters. Unlike typical LLM models, Phi-2 has not been fine-tuned through reinforcement learning from human feedback.""")
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
data_dict = json.load(url)
|
17 |
|
18 |
st.header('Evaluation dataset')
|
19 |
st.write(other_info_dict['data_description'])
|
|
|
11 |
st.write("""
|
12 |
Microsoft Phi-2 (https://huggingface.co/microsoft/phi-2) is a Transformer model with 2.7 billion parameters. Performance on benchmarks for common sense, language understanding, and logical reasoning is nearly state-of-the-art among models with less than 13 billion parameters. Unlike typical LLM models, Phi-2 has not been fine-tuned through reinforcement learning from human feedback.""")
|
13 |
|
14 |
+
with open('llm_microsoft_phi_2_prompt_option_0_api_option_1_post_processed.json', 'r') as f:
|
15 |
+
data_dict = json.load(f)
|
|
|
16 |
|
17 |
st.header('Evaluation dataset')
|
18 |
st.write(other_info_dict['data_description'])
|
llm_microsoft_phi_2_prompt_option_0_api_option_1_post_processed.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|