This repository contains diluted LaTeX lab reports for AI/ML courses, designed as educational references. The reports use modified content, restructured algorithms, and alternative explanations to avoid plagiarism while maintaining technical accuracy.
Two Collections Available:
v2/: Organized, compilation-ready templates with customization guidesSharing_labwork/: Original diluted files with comprehensive implementations
- Lab 2: AI Search Algorithms (BFS Implementation)
- Lab 3: Genetic Algorithm Optimization
- Lab 4: Fuzzy Logic Temperature Control
- Lab 5: Multi-Layer Perceptron Neural Networks
- Lab 6: Recurrent Neural Networks
- Lab 7: Naive Bayes Classification
- Lab 8: Propositional & Predicate Logic
- Lab 9: NLP
git clone https://github.com/Anam-Neupane/Share_Lab.git
cd Share_Lab# Using v2 collection (recommended)
cd v2/Lab2_Search_Algorithms
pdflatex Lab2_AI_Search_Algorithms_Diluted.tex
# Or using original diluted files
cd Sharing_labwork/lab2/pdf_file
pdflatex Lab2_AI_Search_Algorithms_diluted.tex- LaTeX distribution (MiKTeX, TeX Live)
- Required packages: amsmath, graphicx, listings, tcolorbox
Option 1: MiKTeX (Recommended)
- Download MiKTeX from miktex.org
- Run the installer and choose "Install MiKTeX for all users"
- Select "Always install missing packages on-the-fly"
- Open Command Prompt and verify:
pdflatex --version
Option 2: TeX Live
- Download TeX Live from tug.org/texlive
- Run
install-tl-windows.exeas administrator - Follow the installation wizard (takes 1-2 hours for full install)
Option 1: MacTeX (Full)
# Download MacTeX from tug.org/mactex
# Or install via Homebrew
brew install --cask mactexOption 2: BasicTeX (Minimal)
brew install --cask basictex
sudo tlmgr update --self
sudo tlmgr install collection-fontsrecommendedFull Installation:
sudo apt update
sudo apt install texlive-fullMinimal Installation:
sudo apt install texlive-latex-base texlive-latex-extra
sudo apt install texlive-fonts-recommended texlive-fonts-extrasudo pacman -S texlive-most texlive-langAfter installation, test with:
pdflatex --version
which pdflatexFor Educational Reference Only: These templates demonstrate proper lab report structure and methodology. Students should:
- Use as formatting and structure reference
- Implement their own algorithms and solutions
- Generate original results and analysis
- Adapt content to their specific requirements
Share_Lab/
├── v2/ # Organized collection (recommended)
│ ├── Lab2_Search_Algorithms/ # Lab 2: AI Search Algorithms
│ ├── Lab3_Genetic_Algorithm/ # Lab 3: Genetic Algorithm
│ ├── Lab4_Fuzzy_Logic/ # Lab 4: Fuzzy Logic Control
│ ├── Lab5_MLP/ # Lab 5: Multi-Layer Perceptron
│ ├── Lab6_RNN/ # Lab 6: Recurrent Neural Networks
│ ├── Lab7_Naive_Bayes/ # Lab 7: Naive Bayes Classification
│ ├── Compile-AllLabs.bat # Windows compilation script
│ ├── Compile-AllLabs.ps1 # PowerShell script
│ ├── compile_all_labs.fish # Unix/Linux script
│ └── CUSTOMIZATION_GUIDE.md # Usage instructions
│
├── Sharing_labwork/ # Original diluted files
│ ├── lab2/ - lab8/ # Individual lab folders
│
│
└── README.md # Main documentation
Contributions welcome for additional diluted content, improved formatting, or bug fixes. Please maintain the educational reference approach.
MIT License - Free for educational use with attribution.