File size: 842 Bytes
eb09c29 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# GitHub Pages Configuration
title: "AI Video Action Recognition"
description: "Revolutionary AI-powered video analysis using Facebook's TimeSformer model"
url: "https://U-justine.github.io"
baseurl: "/VideoActionRecognition-AI-VIDEO-RECOGNITIONS"
# Build settings
markdown: kramdown
highlighter: rouge
theme: minima
# SEO and social
author: "Video Action Recognition Team"
github_username: https://github.com/U-justine
# Collections
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
# Exclude files
exclude:
- Gemfile
- Gemfile.lock
- node_modules
- vendor/
- .bundle/
- .sass-cache/
- .jekyll-cache/
- gemfiles/
- README.md
- LICENSE
- "*.py"
- "*.sh"
- "*.mp4"
- requirements.txt
- .venv/
- __pycache__/
- "*.pyc"
- .git/
- .gitignore
# Include files
include:
- _pages
- assets
|