Spaces:
Sleeping
Sleeping
creating app.py
Browse files
app.py
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import pandas as pd
|
2 |
+
import streamlit as st
|
3 |
+
import ollama
|
4 |
+
|
5 |
+
# Load your CSV file
|
6 |
+
df = pd.read_csv("your_file.csv")
|
7 |
+
|
8 |
+
# Function to generate responses using the Llama3 model
|
9 |
+
def generate_response(question):
|
10 |
+
response = ollama.chat(model='llama3', messages=[{'role': 'user', 'content': question}])
|
11 |
+
return response['message']['content']
|
12 |
+
|
13 |
+
# Define the functions for solving problems, giving hints, and creating similar problems
|
14 |
+
def show_problem(exam, year, problem):
|
15 |
+
problem_statement = df[(df["exam name"] == exam) & (df["year"] == year) & (df["problem number"] == problem)]["problem"].values[0]
|
16 |
+
return generate_response(f"Render the following problem in latex: '{problem_statement}'.")
|
17 |
+
|
18 |
+
def solve_problem(exam, year, problem):
|
19 |
+
solution_statement = df[(df["exam name"] == exam) & (df["year"] == year) & (df["problem number"] == problem)]["solution"].values[0]
|
20 |
+
return generate_response(f"Explain the solution: {solution_statement} step by step.")
|
21 |
+
|
22 |
+
def give_hints(exam, year, problem):
|
23 |
+
solution_statement = df[(df["exam name"] == exam) & (df["year"] == year) & (df["problem number"] == problem)]["solution"].values[0]
|
24 |
+
return generate_response(f"Give step by step hints for the following solution: {solution_statement}")
|
25 |
+
|
26 |
+
def create_similar_problem(exam, year, problem):
|
27 |
+
problem_statement = df[(df["exam name"] == exam) & (df["year"] == year) & (df["problem number"] == problem)]["problem"].values[0]
|
28 |
+
return generate_response(f" You are an AI assistant of a Statistics, Probability, and Mathematics University Professor. Your only job is to create mcq problem. Create a mcq problem similar to the following mcq problem: {problem_statement}")
|
29 |
+
|
30 |
+
# Streamlit interface
|
31 |
+
st.markdown("<h1 style='text-align: center;'>Cheenta Academy Experts x AI</h1>", unsafe_allow_html=True)
|
32 |
+
st.info("Cheenta Academy implements LLM trained on expert written solutions of past year IIT JAM MS problems. The students can get the full solution, step by step hints, and even create a similar problem exactly like the selected problem. The work is based on the research on Large Language Models along with innovative prompt engineering created by the reseachers and advanced students of Cheenta Academy. We want you to use the latest technology along with expert guidance so that you learn the foundations of problem solving in the best possible way. Try it out, and enjoy learning.")
|
33 |
+
|
34 |
+
exam_names = df["exam name"].unique().tolist()
|
35 |
+
year_options = df["year"].unique().tolist()
|
36 |
+
problem_numbers = df["problem number"].unique().tolist()
|
37 |
+
|
38 |
+
exam = st.selectbox("Select Exam Name", exam_names)
|
39 |
+
year = st.selectbox("Select Year", year_options)
|
40 |
+
problem_number = st.selectbox("Select Problem Number", problem_numbers)
|
41 |
+
|
42 |
+
if st.button("Show the Problem"):
|
43 |
+
problem_output = show_problem(exam, year, problem_number)
|
44 |
+
st.write(problem_output)
|
45 |
+
|
46 |
+
if st.button("Get Step by Step Solutions"):
|
47 |
+
solution_output = solve_problem(exam, year, problem_number)
|
48 |
+
st.write(solution_output)
|
49 |
+
|
50 |
+
if st.button("Get Step by Step Hints."):
|
51 |
+
hints_output = give_hints(exam, year, problem_number)
|
52 |
+
st.write(hints_output)
|
53 |
+
|
54 |
+
if st.button("Create Similar Problem."):
|
55 |
+
similar_problem_output = create_similar_problem(exam, year, problem_number)
|
56 |
+
st.write(similar_problem_output)
|