Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
# Step 1: Install necessary libraries (Handled by Hugging Face via 'requirements.txt')
|
2 |
import streamlit as st
|
3 |
import spacy
|
4 |
-
from spacy.cli import download #
|
5 |
import numpy as np
|
6 |
from numpy.linalg import norm
|
7 |
|
@@ -13,27 +13,47 @@ except OSError:
|
|
13 |
download("en_core_web_md")
|
14 |
nlp = spacy.load("en_core_web_md")
|
15 |
|
16 |
-
# Step 3: Hardcode the FAQ data
|
17 |
faqs = {
|
18 |
'Admissions': [
|
19 |
-
{
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
{
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
|
|
27 |
],
|
28 |
'Curriculum and Faculty': [
|
29 |
-
{
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
{
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
]
|
38 |
}
|
39 |
|
|
|
1 |
# Step 1: Install necessary libraries (Handled by Hugging Face via 'requirements.txt')
|
2 |
import streamlit as st
|
3 |
import spacy
|
4 |
+
from spacy.cli import download # For downloading the spaCy model
|
5 |
import numpy as np
|
6 |
from numpy.linalg import norm
|
7 |
|
|
|
13 |
download("en_core_web_md")
|
14 |
nlp = spacy.load("en_core_web_md")
|
15 |
|
16 |
+
# Step 3: Hardcode the FAQ data
|
17 |
faqs = {
|
18 |
'Admissions': [
|
19 |
+
{'question': 'What is the process for admission into Saras AI Institute?',
|
20 |
+
'answer': 'The admission process at Saras AI Institute typically involves submitting the online application form along with necessary details, followed by a quick pre-enrollment assessment to evaluate your candidature based on your personal traits and basic communication skills in English.'},
|
21 |
+
{'question': 'Is there an application fee for applying to Saras AI Institute?',
|
22 |
+
'answer': 'There is no application fee for applying to any program at Saras.'},
|
23 |
+
{'question': 'What is pre-enrollment assessment test? How do I prepare for it?',
|
24 |
+
'answer': 'It is a fully online assessment which takes less than 15 minutes. It evaluates your personal traits and basic English communication skills. No specific preparation is required.'},
|
25 |
+
{'question': 'Are there any specific requirements or prerequisites for admission into the programs?',
|
26 |
+
'answer': 'You need basic mathematical proficiency and English communication skills to join the programs. Math scores from high school or beyond can demonstrate your readiness.'},
|
27 |
+
{'question': 'When is the deadline for submitting the application?',
|
28 |
+
'answer': 'The deadline for submitting applications is 5th August 2024.'}
|
29 |
],
|
30 |
'Curriculum and Faculty': [
|
31 |
+
{'question': 'What is the curriculum like at Saras AI Institute?',
|
32 |
+
'answer': 'The curriculum imparts both technical and human skills, preparing students for roles such as AI/ML Engineer, Data Scientist, and Gen AI Engineer.'},
|
33 |
+
{'question': 'What does the program structure look like, and how is the curriculum delivered?',
|
34 |
+
'answer': 'Each year is divided into 5 semesters of 8 weeks. The program includes a mix of recorded and live sessions.'},
|
35 |
+
{'question': 'Do you also conduct LIVE sessions?',
|
36 |
+
'answer': 'Yes, live sessions provide interactive learning and Q&A opportunities with instructors.'},
|
37 |
+
{'question': 'Can I transfer credits earned at other universities to Saras AI Institute?',
|
38 |
+
'answer': 'Yes, relevant credits can be transferred after evaluation.'}
|
39 |
+
],
|
40 |
+
'Accreditation & Recognition': [
|
41 |
+
{'question': 'Is Saras AI Institute accredited?',
|
42 |
+
'answer': 'Not yet. This is our first enrollment cycle, and accreditation takes time.'},
|
43 |
+
{'question': 'Are the degree programs recognized by the government?',
|
44 |
+
'answer': 'Yes, we are a state-approved degree-granting institute based in the U.S.'}
|
45 |
+
],
|
46 |
+
'Career Services': [
|
47 |
+
{'question': 'Does Saras AI Institute offer employment support?',
|
48 |
+
'answer': 'Yes, we provide comprehensive employment support, including job placement services and interview preparation.'},
|
49 |
+
{'question': ' Does the university offer internship placement assistance?',
|
50 |
+
'answer': 'Yes, we assist students in finding internships through employer connections.'}
|
51 |
+
],
|
52 |
+
'Tuition fee and Scholarships': [
|
53 |
+
{'question': 'Does Saras AI Institute offer any scholarships for students?',
|
54 |
+
'answer': 'Yes, scholarships are available based on academic merit and financial need.'},
|
55 |
+
{'question': 'What are the tuition fees for your courses?',
|
56 |
+
'answer': "You can find detailed information on the 'Programs' page on our website."}
|
57 |
]
|
58 |
}
|
59 |
|