forked from aiea-lab/aiea-lab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
143 lines (119 loc) · 3.68 KB
/
config.toml
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
publishdir = "docs/"
static = "static"
builddrafts = false
# Replace this with your website URL
baseurl = "https://aiea-lab.github.io"
canonifyurls = true
theme = "our-theme"
title = "AIEA Lab"
math = true
copyright = "© AIEA Lab, 2023 "
[taxonomies]
category = "categories"
tag = "tags"
[params]
description = "Website of the UCSC AIEA Lab"
author = "Leilani H. Gilpin"
# email = "[email protected]"
address = "UCSC - Santa Cruz, CA"
slogan = "AIEA Lab at UCSC"
slogan_text = "Artificial Intelligence Explainability Accountability (AIEA) Lab"
[[params.slogan_columns]]
title = "About"
text = "Aloha world! We are an interdisciplinary group of students and researchers focused at UC Santa Cruz. "
link = "/about"
link_text = "Meet the team"
weight = 1
[[params.slogan_columns]]
title = "Mission"
text = "Our mission is to conduct cutting-edge interpretable and explainable AI research that inspires curiosity, while actively explaining systemic injustices within and outside computer science through *expanded empowerment*, alongside *fun and stimulating* collaborators."
link = "/mission"
link_text = "Read more"
weight = 2
[[params.slogan_columns]]
title = "Approach"
text = "The AIEA lab takes an interdisciplinary approach to understand complex AI systems. We use existing explainable models, we develop models, and we test models. Our group puts a strong focus on interpretability as a science, and we employ it in everything we do, including transparent meetings, feedback, and open-source code."
link = "/approach"
link_text = "Read more"
weight = 3
# Selected Publications section.
[params.publications_selected]
detailed_list = true
title = "Selected Publications"
subtitle = ""
# Publications section.
# Section will only be displayed if there are publications in `content/publication/`.
[params.publications]
count = 5
detailed_list = false
title = "Publications"
subtitle = ""
str_all = "More Publications"
# Posts section.
# Section will only be displayed if there are posts in `content/post/`.
[params.posts]
count = 2
title = "Blog"
subtitle = ""
str_all = "More Posts"
str_read_more = "Read more"
# Projects section.
# Section will only be displayed if there are projects in `content/project/`.
[params.projects]
title = "Projects"
subtitle = ""
count = 3
str_all = "More Projects"
# Vacancies section
# Section will only be displayed if there are valid vacancies in `content/vacancy`
[params.vacancies]
title = "Vacancies"
subtitle = ""
count = 3
str_all = "More Vacancies"
# Contact section.
[params.contact]
enable = true
title = "Contact"
subtitle = ""
autolink = false # Automatically link email and phone?
# Join us section.
[params.join]
enable = true
title = "Join us!"
subtitle = ""
autolink = true # Automatically link email and phone?
# Navigation Links
# The weight parameter defines the order that the links will appear in.
[[menu.main]]
name = "Home"
url = "/#top"
weight = 1
[[menu.main]]
name = "Research"
url = "/research"
weight = 2
[[menu.main]]
name = "Publications"
url = "/#publications"
weight = 3
[[menu.main]]
name = "Projects"
url = "/#projects"
weight = 4
[[menu.main]]
name = "Members"
url = "/#members"
weight = 5
[[menu.main]]
name = "Blog"
url = "/#posts"
weight = 6
[[menu.main]]
name = "Join Us!"
url = "/join"
weight = 7
[[menu.main]]
name = "Contact"
url = "/#contact"
weight = 8