EduAssist Hub is a comprehensive educational platform that leverages cutting-edge technologies like Natural Language Processing (NLP) and Computer Vision (CV) to streamline the learning experience for students. Designed for exam preparation and active learning, the platform simplifies interactions with study materials, quizzes, and videos.
Seamless PDF navigation with RAG (Retrieval-Augmented Generation) integration, allowing students to query their PDF content directly.
from langchain.chains import RetrievalQA # Example usage of RAG for PDFs rag_chain = RetrievalQA() response = rag_chain.run("What is the summary of this document?") print(response)
Automatically generates both objective and subjective questions from PDFs using NLP.
from langchain.chains import QAGenerationChain # Example usage of QnA generator qa_chain = QAGenerationChain() questions = qa_chain.generate_questions("Sample PDF text here") print(questions)
import cv2 # Example usage of head pose detection cap = cv2.VideoCapture(0) while True: ret, frame = cap.read() if not ret: break cv2.imshow('Head Pose Detection', frame) if cv2.waitKey(1) & 0xFF == ord('q'): break cap.release() cv2.destroyAllWindows()
from langchain.video import VideoQA # Example usage of RAG for videos video_qa = VideoQA("educational_video.mp4") response = video_qa.ask("Explain this topic in simple terms.") print(response)
We are continuously improving EduAssist Hub to provide an even more enhanced learning experience. Here's what we are currently working on:
π Upcoming Features:
RAG Agent Video Chat: Allowing real-time Q&A interaction directly with videos.
Real-time Text Extraction from Videos: Extract and display text content inside videos for instant feedback.
RAG Agent Video Chat: Expanding the RAG agent functionality to allow for dynamic question-answer interaction directly with videos. Students will be able to ask questions while watching the video, and the system will respond in real-time.
Real-time Text Extraction from Videos: developing a feature to extract and display text content inside videos in real-time. This will further assist students in getting immediate feedback from video learning materials.
Below is the architecture of EduAssist Hub, illustrating the data flow across various modules.
1οΈβ£ StudyEase: Navigate PDFs easily and query directly from the content.
2οΈβ£ PDF to QnA: Upload a PDF, and generate objective & subjective questions.
3οΈβ£ PDF to Quiz: Create AI-powered quizzes with headpose tracking.
4οΈβ£ RAG Agent: Interact with video content through smart Q&A.
EduAssist Hub is evolving into an AI-powered learning assistant! Stay tuned for more updates. ππ
#AI #AgenticAI #LLM #EdTech #NLP #RAG #AIInnovation #AIForEducation
There are no models linked
There are no models linked
There are no datasets linked
There are no datasets linked