-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
66 lines (61 loc) · 1.83 KB
/
mkdocs.yml
File metadata and controls
66 lines (61 loc) · 1.83 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
site_name: Gaby's Data Science Portfolio
site_url: https://gabya06.github.io/
site_author: Gaby Agrocostea
# Repository: necessary to display the repo on the top right corner
repo_name: gabya06/gabya06.github.io
repo_url: https://github.com/gabya06/gabya06.github.io
# Configuration
theme:
palette:
scheme: slate #dracula #slate
# primary: cyan
# accent: pink
font:
text: Calibri
name: material #lux #darkly #dracula #material
features:
- navigation.top
# - navigation.sections
favicon: images/selfie_2023.png
# Page tree: refer to mkdocs documentation
nav:
- Home: index.md
- Data Science Projects:
- "Text Summarization using Transfomer Models": bart_summarization/readme.md
- "Reddit API for NYC Apartment Posts": reddit_api/readme.md
- "RoBERTa Model for Reddit Posts Sentiment Analysis": roberta_analysis/readme.md
- "Sentiment Analysis on Glassdoor Reviews": glassdoor_reviews/readme.md
- "Predicting Movie Genres using Machine Learning": genre_predictions/readme.md
- "Ensemble Models for Price Forecasting": ensemble/readme.md
- "Mastering Interactive Data Visualizations with Streamlit": streamlit_app/readme.md
# - About: about.md
plugins:
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy # or numpy, etc.
show_source: true
- mkdocs-video:
is_video: True
video_muted: True
video_controls: True
css_style:
width: "75%"
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
# plugins
# plugins:
# - mkdocstrings:
# handlers:
# python:
# options:
# docstring_style: google
# show_source: true
# default_handler: python