Skip to content

3015pavan/AI_FLASH

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

8 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸŽ“ AI Flashcard Tutor

Python 3.8+ Streamlit PyTorch

An intelligent flashcard generation system powered by T5 Transformer model. Automatically converts study materials into interactive flashcards and MCQ quizzes with comprehensive analytics tracking.


πŸ“‹ Table of Contents


✨ Features

πŸ€– AI-Powered Generation

  • Automatic Question Generation: T5 transformer converts context into meaningful questions
  • Smart Answer Extraction: Intelligent answer identification from text
  • Multi-format Support: PDF, TXT, direct text input
  • Text Summarization: Generate concise summaries of study material

🎯 Interactive Quiz System

  • MCQ Generation: Concept-based multiple-choice questions
  • Smart Distractors: Context-aware wrong answer generation
  • Real-time Scoring: Instant feedback and performance tracking
  • Retake Capability: Shuffle and retake quizzes anytime

πŸ“Š Analytics Dashboard

  • Progress Tracking: Historical performance visualization
  • Topic Analysis: Per-topic performance metrics
  • Learning Trends: 30-day score trends with Plotly charts
  • Comprehensive Stats: Global metrics, learning streaks, activity logs

πŸ’Ύ Data Management

  • SQLite Database: Persistent quiz attempt storage
  • Session Management: Streamlit session state for user data
  • Export Capabilities: JSON export for flashcards
  • Privacy-First: 100% local processing, no cloud APIs

πŸ”¬ ML Pipeline Overview

End-to-End Machine Learning Workflow

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                    ML PIPELINE ARCHITECTURE                     β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

1. DATA COLLECTION
   β”œβ”€β”€ SQuAD v1.1 Dataset (87,599 training examples)
   β”œβ”€β”€ Context-Question-Answer triplets
   └── Train/Val/Test split (80/10/10)

2. DATA PREPROCESSING
   β”œβ”€β”€ Text Tokenization (T5Tokenizer - SentencePiece)
   β”œβ”€β”€ Text-to-Text Format: "generate question: <context>"
   β”œβ”€β”€ Sequence Padding/Truncation (max_length=512)
   β”œβ”€β”€ Special Token Handling ([CLS], [SEP], [PAD])
   └── Token ID Conversion (vocabulary size: 32,128)

3. MODEL ARCHITECTURE (T5-base)
   β”œβ”€β”€ Encoder: 12 transformer layers
   β”‚   β”œβ”€β”€ Multi-Head Self-Attention (8 heads)
   β”‚   β”œβ”€β”€ Feed-Forward Networks
   β”‚   └── Layer Normalization + Residual Connections
   β”‚
   β”œβ”€β”€ Decoder: 12 transformer layers
   β”‚   β”œβ”€β”€ Masked Self-Attention
   β”‚   β”œβ”€β”€ Cross-Attention (to encoder)
   β”‚   └── Feed-Forward Networks
   β”‚
   β”œβ”€β”€ Hidden Dimensions: 512
   β”œβ”€β”€ Total Parameters: 220 million
   └── Pre-training: C4 dataset (750GB of text)

4. TRAINING (Supervised Fine-tuning)
   β”œβ”€β”€ Learning Type: Supervised Learning
   β”œβ”€β”€ Task: Sequence-to-Sequence Text Generation
   β”œβ”€β”€ Loss Function: Cross-Entropy (token-level classification)
   β”œβ”€β”€ Optimizer: AdamW (learning_rate=1e-4, weight_decay=0.01)
   β”œβ”€β”€ Scheduler: Linear warmup (500 steps) + decay
   β”œβ”€β”€ Batch Size: 16 (with gradient accumulation)
   β”œβ”€β”€ Epochs: 3-5
   β”œβ”€β”€ Regularization: Dropout (0.1), Gradient Clipping (1.0)
   └── Hardware: GPU (CUDA) recommended, CPU fallback

5. INFERENCE (Autoregressive Generation)
   β”œβ”€β”€ Decoding Strategy: Beam Search (num_beams=6)
   β”œβ”€β”€ Generation Process:
   β”‚   β”œβ”€β”€ Encoder processes input context
   β”‚   β”œβ”€β”€ Decoder generates tokens one-by-one
   β”‚   β”œβ”€β”€ Each token = classification over 32k vocabulary
   β”‚   └── Continues until [EOS] or max_length
   β”‚
   β”œβ”€β”€ Hyperparameters:
   β”‚   β”œβ”€β”€ Temperature: 0.7 (creativity control)
   β”‚   β”œβ”€β”€ Top-p: 0.9 (nucleus sampling)
   β”‚   β”œβ”€β”€ Repetition Penalty: 1.2
   β”‚   └── Length Penalty: 1.0
   β”‚
   └── Output: Variable-length question text

6. EVALUATION
   β”œβ”€β”€ Generation Quality Metrics:
   β”‚   β”œβ”€β”€ BLEU Score (translation quality metric)
   β”‚   β”œβ”€β”€ ROUGE-1/2/L (summarization metrics)
   β”‚   └── Perplexity (language model confidence)
   β”‚
   β”œβ”€β”€ Task-Specific Metrics:
   β”‚   β”œβ”€β”€ Question Relevance (manual evaluation)
   β”‚   β”œβ”€β”€ Answer Accuracy
   β”‚   └── Fluency Assessment
   β”‚
   └── Performance Metrics:
       β”œβ”€β”€ Training Loss Curve
       β”œβ”€β”€ Validation Loss
       └── Inference Speed (tokens/second)

7. DEPLOYMENT
   β”œβ”€β”€ Web Application: Streamlit
   β”œβ”€β”€ Model Serving: HuggingFace Transformers
   β”œβ”€β”€ Database: SQLite3 (analytics & progress tracking)
   β”œβ”€β”€ Document Processing: PyPDF2
   └── Visualization: Plotly + Matplotlib

ML Task Classification

Aspect Classification
Learning Type Supervised Learning (Deep Learning)
Task Category Sequence-to-Sequence (Seq2Seq)
Architecture Transformer (Encoder-Decoder)
Domain Natural Language Processing (NLP)
Application Generative AI (Text Generation)
Output Type Variable-length text sequences
Training Method Transfer Learning + Fine-tuning
Loss Function Cross-Entropy (token classification Γ— sequence_length)

Key Insight: This project uses Classification internally (32,128-class classification per token), but chains multiple classifications together autoregressively to generate complete sequences. This makes it Sequence-to-Sequence Generation, not traditional classification or regression.


πŸ“ Project Structure

AI-FLASHCARD-TUTOR/
β”‚
β”œβ”€β”€ app.py                          # Main Streamlit application entry point
β”œβ”€β”€ requirements.txt                # Python dependencies (production)
β”œβ”€β”€ README.md                       # Comprehensive project documentation
β”œβ”€β”€ .gitignore                      # Git ignore rules
β”‚
β”œβ”€β”€ config/                         # πŸŽ›οΈ Configuration Management
β”‚   β”œβ”€β”€ __init__.py                 # Module initialization
β”‚   β”œβ”€β”€ config.yaml                 # Centralized configuration (YAML)
β”‚   └── model_config.py             # Config loader & parser class
β”‚
β”œβ”€β”€ src/                            # πŸ”§ Source Code Modules
β”‚   β”œβ”€β”€ __init__.py
β”‚   β”‚
β”‚   β”œβ”€β”€ models/                     # πŸ€– ML Model Components
β”‚   β”‚   β”œβ”€β”€ __init__.py
β”‚   β”‚   β”œβ”€β”€ generate_simple.py      # Lightweight flashcard generator
β”‚   β”‚   └── generate.py             # Full-featured generator (advanced)
β”‚   β”‚
β”‚   β”œβ”€β”€ inference/                  # 🎯 Inference & Prediction
β”‚   β”‚   β”œβ”€β”€ __init__.py
β”‚   β”‚   └── quiz.py                 # Quiz generation & MCQ logic
β”‚   β”‚
β”‚   β”œβ”€β”€ features/                   # πŸ“Š Application Features
β”‚   β”‚   β”œβ”€β”€ __init__.py
β”‚   β”‚   β”œβ”€β”€ dashboard.py            # Database operations & analytics
β”‚   β”‚   β”œβ”€β”€ pages_quiz.py           # Quiz UI page components
β”‚   β”‚   └── pages_dashboard.py      # Analytics UI page components
β”‚   β”‚
β”‚   β”œβ”€β”€ utils/                      # πŸ› οΈ Utility Functions
β”‚   β”‚   β”œβ”€β”€ __init__.py
β”‚   β”‚   └── utils.py                # Helper functions
β”‚   β”‚
β”‚   └── training/                   # πŸŽ“ Training Utilities (future)
β”‚       └── __init__.py
β”‚
β”œβ”€β”€ scripts/                        # πŸ“œ ML Pipeline Scripts
β”‚   β”œβ”€β”€ train.py                    # Training/fine-tuning script (SQuAD)
β”‚   └── evaluate.py                 # Evaluation script (BLEU, ROUGE)
β”‚
β”œβ”€β”€ models/                         # πŸ’Ύ Saved Models & Checkpoints
β”‚   └── flashcard_t5/               # Fine-tuned T5 model directory
β”‚       β”œβ”€β”€ config.json             # Model architecture configuration
β”‚       β”œβ”€β”€ metadata.json           # Training metadata & hyperparameters
β”‚       β”œβ”€β”€ README.md               # Model-specific documentation
β”‚       └── pytorch_model.bin       # Model weights (~440MB)
β”‚
β”œβ”€β”€ data/                           # πŸ“‚ Data Storage
β”‚   β”œβ”€β”€ progress.db                 # SQLite database (quiz attempts, metrics)
β”‚   β”œβ”€β”€ cache/                      # Cached data (tokenized inputs, etc.)
β”‚   β”œβ”€β”€ raw/                        # Raw datasets (SQuAD, custom)
β”‚   └── processed/                  # Processed/preprocessed data
β”‚
β”œβ”€β”€ notebooks/                      # πŸ““ Jupyter Notebooks
β”‚   └── (exploratory data analysis, model experiments)
β”‚
β”œβ”€β”€ docs/                           # πŸ“š Documentation
β”‚   β”œβ”€β”€ QUICK_START.md              # Quick installation & usage guide
β”‚   β”œβ”€β”€ PROJECT_STRUCTURE.md        # Detailed structure explanation
β”‚   └── COLAB_INTEGRATION.md        # Google Colab integration guide
β”‚
└── tests/                          # βœ… Unit Tests (future)
    └── __init__.py

Directory Purpose Table

Directory Purpose Key Responsibilities
config/ Configuration management Centralized settings, hyperparameters, paths
src/models/ ML model loading & inference T5 model, tokenizer, generation logic
src/inference/ Prediction & generation Quiz creation, question generation
src/features/ Application functionality UI components, database operations
src/utils/ Helper functions Text processing, file I/O, utilities
scripts/ ML pipeline execution Training, evaluation, data processing
models/ Model storage Checkpoints, fine-tuned weights
data/ Data management Database, datasets, cache
notebooks/ Experimentation EDA, prototyping, analysis
docs/ Documentation Guides, explanations, API docs
tests/ Quality assurance Unit tests, integration tests

πŸš€ Installation

Prerequisites

  • Python: 3.8 or higher
  • pip: Latest version
  • (Optional) CUDA-enabled GPU for training (CPU works for inference)

Step 1: Clone Repository

git clone https://github.com/puneeth-webdev218/AI-FLASHCARD-TUTOR.git
cd AI-FLASHCARD-TUTOR

Step 2: Install Dependencies

For Application Use (Inference Only):

pip install -r requirements.txt

For Training & Development:

# Install core dependencies
pip install -r requirements.txt

# Install training-specific packages
pip install datasets transformers[torch] nltk rouge-score pyyaml

# Download NLTK data
python -c "import nltk; nltk.download('punkt'); nltk.download('stopwords')"

Step 3: Verify Installation

python -c "import streamlit, torch, transformers; print('βœ… All dependencies installed')"

πŸ’» Usage

Running the Application

# Start Streamlit app
streamlit run app.py

# Custom port
streamlit run app.py --server.port 8502

# Headless mode (server deployment)
streamlit run app.py --server.headless true

The app will open automatically at http://localhost:8501

Using the Interface

1️⃣ Generate Flashcards

  1. Navigate to "πŸ“ Flashcard Generator" tab
  2. Choose input method:
    • Paste Text: Copy-paste study material
    • Upload PDF: Click "Browse files" and select PDF
  3. Adjust settings in sidebar:
    • Number of flashcards (1-10)
    • Beam search quality (3-8)
  4. Click "✨ Generate Flashcards"
  5. Review generated flashcards:
    • Click card to flip (Question ↔ Answer)
    • Download as JSON (optional)

2️⃣ Take MCQ Quiz

  1. Generate β‰₯4 flashcards first (required)
  2. Navigate to "🎯 Take Quiz" tab
  3. Select number of questions (4-10)
  4. Click "Start Quiz"
  5. Answer multiple-choice questions
  6. Click "Submit Quiz" to view:
    • Score percentage
    • Correct/incorrect breakdown
    • Time taken
    • Detailed explanations
  7. Click "Retake Quiz" to shuffle and retry

3️⃣ View Analytics Dashboard

  1. Navigate to "πŸ“Š Progress Dashboard" tab
  2. Review key metrics:
    • KPI Cards: Total flashcards, quizzes taken, average score, learning streak
    • Score Trend: 30-day line chart (interactive Plotly)
    • Topic Performance: Bar chart by subject
    • Answer Distribution: Pie chart (correct vs incorrect)
    • Activity Log: Detailed quiz history table
  3. Use "Refresh Dashboard" button to update
  4. Clear Data (if needed) from settings

πŸŽ“ Training

Training Your Own Model

# Basic training (uses config.yaml defaults)
python scripts/train.py

# Custom hyperparameters
python scripts/train.py \
    --model_name t5-base \
    --epochs 5 \
    --batch_size 16 \
    --learning_rate 0.0001 \
    --save_dir models/my_flashcard_model

# Quick test run (limited samples)
python scripts/train.py --epochs 1 --max_samples 1000

# Advanced: Custom dataset
python scripts/train.py \
    --epochs 5 \
    --batch_size 8 \
    --learning_rate 5e-5 \
    --save_dir models/custom_t5 \
    --max_samples 10000

Training Parameters Explained

Parameter Default Range Description
--model_name t5-base t5-small, base, large Base T5 model to fine-tune
--epochs 3 1-10 Number of training passes
--batch_size 16 4-32 Samples per batch (adjust for GPU memory)
--learning_rate 1e-4 1e-5 to 1e-3 AdamW learning rate
--max_samples None Any int Limit training samples (for testing)
--save_dir models/flashcard_t5_finetuned Any path Checkpoint save directory

Configuration File (config.yaml)

Edit config/config.yaml to adjust:

training:
  batch_size: 16
  learning_rate: 0.0001
  num_epochs: 5
  warmup_steps: 500
  weight_decay: 0.01
  gradient_accumulation_steps: 2
  max_grad_norm: 1.0

model:
  generation:
    num_beams: 6
    temperature: 0.7
    top_p: 0.9
    repetition_penalty: 1.2

Training Output

Epoch 1/5
Training: 100%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 5475/5475 [1:23:45<00:00, loss=2.1234, lr=9.8e-05]
Validation Loss: 1.9876
Model saved to models/flashcard_t5_finetuned/checkpoint-epoch-1

Epoch 2/5
Training: 100%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 5475/5475 [1:22:18<00:00, loss=1.8765, lr=8.2e-05]
...
Training complete! Final model saved to models/flashcard_t5_finetuned

πŸ“Š Evaluation

Evaluate Model Performance

# Basic evaluation
python scripts/evaluate.py --model_path models/flashcard_t5_finetuned

# With sample generation examples
python scripts/evaluate.py \
    --model_path models/flashcard_t5_finetuned \
    --show_examples \
    --num_examples 10

# Limited evaluation (faster)
python scripts/evaluate.py \
    --model_path models/flashcard_t5_finetuned \
    --max_samples 500

# Full evaluation on test set
python scripts/evaluate.py \
    --model_path models/flashcard_t5_finetuned \
    --split validation \
    --max_samples 2000

Evaluation Metrics Explained

Metric Range Interpretation Good Score
BLEU 0-1 Translation/generation quality (word overlap) >0.3
ROUGE-1 0-1 Unigram overlap with reference >0.4
ROUGE-2 0-1 Bigram overlap (fluency) >0.2
ROUGE-L 0-1 Longest common subsequence >0.35
Perplexity 1-∞ Model confidence (lower is better) <50

Sample Evaluation Output

============================================================
EVALUATION RESULTS
============================================================
Number of samples: 1000

BLEU Score:
  Mean:  0.3245 Β± 0.1234
  Range: [0.0823, 0.7654]

ROUGE Scores:
  ROUGE-1: 0.4123 Β± 0.0987
  ROUGE-2: 0.2345 Β± 0.0654
  ROUGE-L: 0.3876 Β± 0.0876
============================================================

Example 1:
Context: Photosynthesis is the process by which plants...
Reference: What is photosynthesis?
Generated: What process do plants use to convert light?
------------------------------------------------------------

πŸ›  Technology Stack

Machine Learning & NLP

Technology Version Purpose
PyTorch 2.0+ Deep learning framework (GPU acceleration)
Transformers 4.30+ HuggingFace model library (T5 implementation)
T5 Model Base (220M params) Text-to-Text Transfer Transformer
SQuAD Dataset v1.1 87,599 question-answer pairs for training
NLTK 3.8+ Natural language processing utilities
Datasets 2.0+ HuggingFace dataset loading

Web Application

Technology Version Purpose
Streamlit 1.22+ Interactive web UI framework
Plotly 5.0+ Interactive data visualizations
Matplotlib 3.7+ Static plotting

Data Processing

Technology Version Purpose
Pandas 2.0+ Data manipulation & analysis
NumPy 1.24+ Numerical computing
PyPDF2 3.0+ PDF text extraction
SQLite3 Built-in Embedded database (no server needed)

Development Tools

Technology Purpose
PyYAML Configuration file parsing
pathlib Cross-platform file path handling
logging Application logging
tqdm Progress bars for training

🀝 Contributing

Contributions are welcome! Here's how:

  1. Fork the repository
  2. Create feature branch: git checkout -b feature/AmazingFeature
  3. Commit changes: git commit -m 'Add AmazingFeature'
  4. Push to branch: git push origin feature/AmazingFeature
  5. Open Pull Request

Contribution Areas:

  • πŸ› Bug fixes
  • ✨ New features (e.g., spaced repetition)
  • πŸ“ Documentation improvements
  • πŸ§ͺ Unit tests
  • 🎨 UI enhancements
  • πŸš€ Performance optimizations

πŸ™ Acknowledgments

  • Google Research: T5 model architecture and pre-training
  • Stanford NLP Group: SQuAD dataset creation
  • HuggingFace: Transformers library and model hub
  • Streamlit Team: Excellent web framework for ML apps
  • PyTorch Community: Deep learning framework

πŸ”— Useful Links

Research Papers

Documentation

Model Hub


πŸ“ˆ Roadmap

Version 2.0 (Planned)

  • πŸ”„ Spaced repetition algorithm (Anki-style)
  • 🌍 Multi-language support (mT5 integration)
  • 🎯 Adaptive difficulty adjustment
  • πŸ“± Mobile-responsive UI
  • πŸ”— Export to Anki format
  • 🀝 Collaborative study sessions
  • πŸ“Š Advanced analytics (confusion matrices)
  • 🎨 Custom themes & branding

Version 1.5 (In Progress)

  • βœ… Structured ML project layout
  • βœ… Training & evaluation scripts
  • βœ… Comprehensive documentation
  • πŸ§ͺ Unit test coverage
  • 🐳 Docker containerization
  • πŸ“¦ PyPI package release

🎯 Use Cases

Students

  • Convert lecture notes β†’ flashcards
  • Generate practice questions from textbooks
  • Track learning progress across subjects
  • Prepare for exams with MCQ quizzes

Educators

  • Create quizzes for students automatically
  • Generate study materials from lesson plans
  • Assess understanding with analytics
  • Save time on quiz creation

Professionals

  • Continuous learning & skill development
  • Certification exam preparation
  • Knowledge retention tracking
  • Onboarding material creation

Researchers

  • Literature review flashcards
  • Methodology Q&A cards
  • Conference presentation prep
  • Paper concept reinforcement

⚠️ Limitations & Known Issues

Current Limitations

  • Context Length: Max 512 tokens input (T5 limitation)
  • Language: English only (use mT5 for multilingual)
  • GPU Memory: Training requires ~8GB VRAM for T5-base
  • Generation Time: 2-5 seconds per flashcard (CPU mode)

Known Issues

  • Large PDFs (>50 pages) may cause extraction lag
  • Very technical/domain-specific text may generate generic questions
  • Database locked error if multiple sessions access simultaneously

Workarounds

  • Split large documents into chunks
  • Provide more context for better question quality
  • Use only one Streamlit session per database

πŸ” Privacy & Security

Data Privacy

βœ… 100% Local Processing - All ML inference runs on your machine
βœ… No Cloud APIs - No data sent to external services
βœ… No Telemetry - Zero usage tracking or analytics
βœ… Offline Capable - Works without internet (after initial setup)

Data Storage

πŸ“ SQLite Database (data/progress.db)

  • Quiz attempts with timestamps
  • Global learning metrics
  • No personally identifiable information
  • Easily deletable (just remove file)

πŸ“„ Temporary Files

  • PDF uploads stored in memory (not saved)
  • Cache cleared on session end

πŸš€ Performance Optimization

For Faster Inference

# In config/config.yaml
model:
  generation:
    num_beams: 3  # Reduce from 6 (faster, slightly lower quality)

For Better Quality

model:
  generation:
    num_beams: 8  # Increase from 6 (slower, better quality)
    temperature: 0.5  # Lower = more conservative/accurate

GPU Acceleration

# Install CUDA-enabled PyTorch
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

πŸ“ FAQ

Q: How long does training take?
A: On GPU (RTX 3080): ~2-3 hours for 5 epochs on full SQuAD. On CPU: 24+ hours.

Q: Can I use a different model?
A: Yes! Edit config.yaml to use t5-small (faster) or t5-large (better quality).

Q: How accurate are generated flashcards?
A: Depends on input quality. Structured, detailed text β†’ better results. BLEU scores typically 0.3-0.4.

Q: Can I export my progress?
A: Flashcards export as JSON. Progress data in data/progress.db (SQLite).

Q: Does it work offline?
A: Yes! After initial model download, fully offline.

Q: Can I add my own training data?
A: Yes! Modify scripts/train.py to load custom datasets.

Q: What if quiz questions are too hard?
A: Provide more detailed context in input. Adjust num_beams to 4-5 for balanced difficulty.


πŸ›  Troubleshooting

Problem Solution
ModuleNotFoundError: transformers Run pip install transformers torch
"Not enough flashcards for quiz" Generate β‰₯4 flashcards before taking quiz
Database locked error Close other Streamlit sessions
Out of memory during training Reduce batch_size to 8 or 4
Slow generation Use GPU or reduce num_beams
PDF extraction fails Try converting PDF to TXT first
Dashboard shows no data Take at least one quiz to populate data

πŸŽ“ Ready to transform your learning?

streamlit run app.py

Then visit: http://localhost:8501


Powered by Transformers, PyTorch, and Streamlit

About

AI Flashcard Tutor is a comprehensive educational tool that utilizes Sequence-to-Sequence (Seq2Seq) deep learning to transform static documents into dynamic study aids. By fine-tuning the T5-base Transformer, the system automates the labor-intensive process of creating flashcards and MCQ assessments.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages