mirror of
https://github.com/yakhyo/uniface.git
synced 2025-12-30 09:02:25 +00:00
docs: Create mkdocs
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.9", "3.10", "3.11", "3.12"]
|
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|||||||
3
docs/about/changelog.md
Normal file
3
docs/about/changelog.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to UniFace.
|
||||||
3
docs/about/conduct.md
Normal file
3
docs/about/conduct.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Code of Conduct
|
||||||
|
|
||||||
|
Guidelines for community behavior.
|
||||||
3
docs/about/license.md
Normal file
3
docs/about/license.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# License
|
||||||
|
|
||||||
|
MIT License or your custom license here.
|
||||||
2
docs/blog/index.md
Normal file
2
docs/blog/index.md
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Blog
|
||||||
|
|
||||||
3
docs/index.md
Normal file
3
docs/index.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# UniFace
|
||||||
|
|
||||||
|
Welcome to the UniFace documentation.
|
||||||
3
docs/installation.md
Normal file
3
docs/installation.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Installation
|
||||||
|
|
||||||
|
Instructions to install UniFace.
|
||||||
3
docs/models/age_gender.md
Normal file
3
docs/models/age_gender.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Age & Gender Estimation
|
||||||
|
|
||||||
|
Age and gender model usage.
|
||||||
3
docs/models/detection.md
Normal file
3
docs/models/detection.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Face Detection
|
||||||
|
|
||||||
|
Details on face detection models.
|
||||||
3
docs/models/gaze.md
Normal file
3
docs/models/gaze.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Gaze Estimation
|
||||||
|
|
||||||
|
Gaze detection implementation and usage.
|
||||||
3
docs/models/landmarks.md
Normal file
3
docs/models/landmarks.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Landmark Detection
|
||||||
|
|
||||||
|
Details on landmark prediction.
|
||||||
3
docs/models/recognition.md
Normal file
3
docs/models/recognition.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Face Recognition
|
||||||
|
|
||||||
|
Details on face recognition models.
|
||||||
3
docs/overview.md
Normal file
3
docs/overview.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Overview
|
||||||
|
|
||||||
|
High-level overview of UniFace features.
|
||||||
3
docs/reference/detection.md
Normal file
3
docs/reference/detection.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Detection API Reference
|
||||||
|
|
||||||
|
::: uniface.RetinaFace
|
||||||
3
docs/reference/recognition.md
Normal file
3
docs/reference/recognition.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Recognition API Reference
|
||||||
|
|
||||||
|
::: uniface.recognition.models.SphereFace
|
||||||
3
docs/reference/uniface.md
Normal file
3
docs/reference/uniface.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# API Reference
|
||||||
|
|
||||||
|
::: uniface.RetinaFace
|
||||||
3
docs/tutorials/integration.md
Normal file
3
docs/tutorials/integration.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Integration
|
||||||
|
|
||||||
|
How to integrate UniFace into your app.
|
||||||
3
docs/tutorials/performance.md
Normal file
3
docs/tutorials/performance.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Performance Tips
|
||||||
|
|
||||||
|
Speed and memory optimization.
|
||||||
3
docs/tutorials/quickstart.md
Normal file
3
docs/tutorials/quickstart.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Quickstart
|
||||||
|
|
||||||
|
Get started with UniFace quickly.
|
||||||
3
docs/usage.md
Normal file
3
docs/usage.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Usage
|
||||||
|
|
||||||
|
How to use UniFace with code examples.
|
||||||
84
mkdocs.yml
Normal file
84
mkdocs.yml
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
site_name: uniface
|
||||||
|
site_url: https://yakhyo.github.io/uniface/
|
||||||
|
site_author: Yakhyokhuja Valikhujaev
|
||||||
|
site_description: "UniFace: A Comprehensive Library for Face Detection, Recognition, Landmark Analysis, Age, and Gender Detection"
|
||||||
|
|
||||||
|
repo_url: https://github.com/yakhyo/uniface
|
||||||
|
repo_name: yakhyo/uniface
|
||||||
|
|
||||||
|
theme:
|
||||||
|
name: material
|
||||||
|
features:
|
||||||
|
- announce.dismiss
|
||||||
|
- content.action.edit
|
||||||
|
- content.action.view
|
||||||
|
- content.code.annotate
|
||||||
|
- content.code.copy
|
||||||
|
- content.tooltips
|
||||||
|
- navigation.footer
|
||||||
|
- navigation.indexes
|
||||||
|
- navigation.sections
|
||||||
|
- navigation.tabs
|
||||||
|
- navigation.top
|
||||||
|
- navigation.tracking
|
||||||
|
- search.highlight
|
||||||
|
- search.share
|
||||||
|
- search.suggest
|
||||||
|
- toc.follow
|
||||||
|
palette:
|
||||||
|
- media: "(prefers-color-scheme)"
|
||||||
|
toggle:
|
||||||
|
icon: material/lightbulb-outline
|
||||||
|
name: Switch to light mode
|
||||||
|
- media: "(prefers-color-scheme: light)"
|
||||||
|
scheme: default
|
||||||
|
primary: indigo
|
||||||
|
accent: indigo
|
||||||
|
toggle:
|
||||||
|
icon: material/lightbulb
|
||||||
|
name: Switch to dark mode
|
||||||
|
- media: "(prefers-color-scheme: dark)"
|
||||||
|
scheme: slate
|
||||||
|
primary: black
|
||||||
|
accent: indigo
|
||||||
|
toggle:
|
||||||
|
icon: material/lightbulb-off-outline
|
||||||
|
name: Switch to system preference
|
||||||
|
font:
|
||||||
|
text: Roboto
|
||||||
|
code: Roboto Mono
|
||||||
|
favicon: assets/favicon.png
|
||||||
|
icon:
|
||||||
|
logo: logo
|
||||||
|
|
||||||
|
nav:
|
||||||
|
- Home: index.md
|
||||||
|
- Overview: overview.md
|
||||||
|
- Installation: installation.md
|
||||||
|
- Usage: usage.md
|
||||||
|
- Models:
|
||||||
|
- Face Detection: models/detection.md
|
||||||
|
- Face Recognition: models/recognition.md
|
||||||
|
- Landmark Detection: models/landmarks.md
|
||||||
|
- Age & Gender Estimation: models/age_gender.md
|
||||||
|
- Gaze Estimation: models/gaze.md
|
||||||
|
- Tutorials:
|
||||||
|
- Quickstart: tutorials/quickstart.md
|
||||||
|
- App Integration: tutorials/integration.md
|
||||||
|
- Performance Tips: tutorials/performance.md
|
||||||
|
- API Reference:
|
||||||
|
- Detection: reference/detection.md
|
||||||
|
- Recognition: reference/recognition.md
|
||||||
|
- About:
|
||||||
|
- Changelog: about/changelog.md
|
||||||
|
- License: about/license.md
|
||||||
|
- Code of Conduct: about/conduct.md
|
||||||
|
|
||||||
|
plugins:
|
||||||
|
- blog
|
||||||
|
- search:
|
||||||
|
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
|
||||||
|
- minify:
|
||||||
|
minify_html: true
|
||||||
|
- mkdocstrings:
|
||||||
|
default_handler: python
|
||||||
1
requirements_mkdocs.txt
Normal file
1
requirements_mkdocs.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
mkdocstrings[python]
|
||||||
Reference in New Issue
Block a user