-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
executable file
·93 lines (82 loc) · 3.15 KB
/
_config.yml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#######################
# Theme Customization #
#######################
title: Jim Chen # used in <title> tag & site header
author: Jim Chen # used in a <meta> tag & /feed.xml
description: > # used in a <meta> tag & /feed.xml
Hello 911 emergency, there's a handsome guy in my house!
Oh wait a second, cancel that. It's only me.
slogan: Showtime! # used in site header, beside title
avatar: /i/avatar.png # used as portrait in site header
banner: /i/mountains.svg # used as background in site header
url: http://solana.ryanlue.com # used by plugins to generate feed.xml and sitemap.xml
baseurl: '' # prepended to all absolute filepaths
repo: https://github.com/jimchenhub/jimchenhub.github.io # used in footer
# Objects listed here will appear in the main nav menu.
# Exceeding four items may cause problems on the desktop (>900px wide) layout.
nav_menu:
- name: Posts
url: /
icon: /i/icons.svg#posts # icons should be 24x24 px.
- name: Projects
url: /projects
icon: /i/icons.svg#portfolio
- name: GitHub
url: https://github.com/jimchenhub/
icon: /i/icons.svg#github
outbound: true # this key sets a link to open in a new window.
# - name: Contact
# scheme: mailto # these keys enable email obfuscation.
# handle: jimchen@ # you know, to protect you from bots. (handle and domain
# domain: qq.com # are separated in case bots crawl GitHub repos, too.)
# icon: /i/icons.svg#email
# Objects listed here will appear on the /projects.html page.
projects:
- title: Transferable UAV
teaser: A new pipeline of training a monocular UAV to fly a collision-free trajectory along the dense forest trail
url: https://sites.google.com/view/forest-trail-dataset
role: Author
category: UAV, Transfer Learning, DAN
- title: Rich Details Monocular Depth Prediction
teaser: Monocular depth prediction with relative supervision to preserve better object details
url: https://sites.google.com/view/rich-detail-depth
role: Author
category: Depth Prediction, Relative Supervision
- title: VALID
teaser: Virtual AeriaL Image Dataset
url: https://sites.google.com/view/valid-dataset
role: Author
category: Aerial Image, Dataset
- title: Smart Car
teaser: Avoid obstacles automatically using image processing and machine learning
url: https://github.com/jimchenhub/Smart-Car
role: Creator
category: OpenCV, CNN, Raspberry PI
#################
# Site Settings #
#################
incremental: true
exclude:
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- TODO.md
permalink: /:collection/:path
collections:
category: { output: true }
tag: { output: true }
defaults:
- scope: { type: posts }
values: { layout: post }
- scope: { type: tag }
values: { layout: listing }
- scope: { type: category }
values: { layout: listing }
sass:
sass_dir: _assets/css
plugins:
- jekyll-paginate
- jekyll-feed
- jekyll-sitemap
paginate: 10