Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Frick authored and Evan Frick committed Aug 31, 2024
1 parent 156ca9e commit 78f0bf0
Show file tree
Hide file tree
Showing 2 changed files with 157 additions and 78 deletions.
221 changes: 147 additions & 74 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,7 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
#
# If you need help with YAML syntax, here are some quick references for you:
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# https://learnxinyminutes.com/docs/yaml/
#
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.

title: Evan Frick
email: evanfrick[at]berkeley[dot]edu
description: >- # this means to ignore newlines until "baseurl:"
"Evan Frick's personal website."
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: Evan
github_username: EvanF

# # Build settings
# theme: minima
# plugins:
# - jekyll-feed
title: Your Site Title
description: A brief description of your site
url: "https://yourusername.github.io"

# Build settings
markdown: kramdown
Expand All @@ -39,50 +10,152 @@ remote_theme: jekyll/minima
# Minima theme settings
minima:
skin: dark

# # Custom CSS
# sass:
# sass_dir: _sass
# style: compressed

# Navigation
header_pages:
- index.md

# Custom variables
font_family: "Courier New, monospace"
# Custom CSS
sass:
sass_dir: _sass
style: compressed

# Plugins
plugins:
- jekyll-seo-tag
- jekyll-feed

# Exclude files from processing
exclude:
- Gemfile
- Gemfile.lock
- node_modules
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/

# Exclude from processing.
# The following items will not be processed, by default.
# Any item listed under the `exclude:` key here will be automatically added to
# the internal "default list".
#
# Excluded items can be processed by explicitly listing the directories or
# their entries' file path in the `include:` list.
#
# exclude:
# - .sass-cache/
# - .jekyll-cache/
# - gemfiles/
# - Gemfile
# - Gemfile.lock
# - node_modules/
# - vendor/bundle/
# - vendor/cache/
# - vendor/gems/
# - vendor/ruby/
- jekyll-toc

# Table of Contents settings
toc:
min_level: 2
max_level: 2

# Custom variables
font_family: "Courier New, monospace"

# Navigation bar settings
header_pages:
- index.md

# Custom CSS
custom_css: |
body {
font-family: {{ site.font_family }};
}
.site-nav {
float: right;
line-height: 54px;
}
.site-nav .page-link {
color: #111;
line-height: 1.5;
}
.site-nav .page-link:not(:last-child) {
margin-right: 20px;
}
# # Welcome to Jekyll!
# #
# # This config file is meant for settings that affect your whole blog, values
# # which you are expected to set up once and rarely edit after that. If you find
# # yourself editing this file very often, consider using Jekyll's data files
# # feature for the data you need to update frequently.
# #
# # For technical reasons, this file is *NOT* reloaded automatically when you use
# # 'bundle exec jekyll serve'. If you change this file, please restart the server process.
# #
# # If you need help with YAML syntax, here are some quick references for you:
# # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# # https://learnxinyminutes.com/docs/yaml/
# #
# # Site settings
# # These are used to personalize your new site. If you look in the HTML files,
# # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# # You can create any custom variable you would like, and they will be accessible
# # in the templates via {{ site.myvariable }}.

# title: Evan Frick
# email: evanfrick[at]berkeley[dot]edu
# description: >- # this means to ignore newlines until "baseurl:"
# "Evan Frick's personal website."
# baseurl: "" # the subpath of your site, e.g. /blog
# url: "" # the base hostname & protocol for your site, e.g. http://example.com
# twitter_username: Evan
# github_username: EvanF

# # # Build settings
# # theme: minima
# # plugins:
# # - jekyll-feed

# # Build settings
# markdown: kramdown
# remote_theme: jekyll/minima

# # Minima theme settings
# minima:
# skin: dark

# # # Custom CSS
# # sass:
# # sass_dir: _sass
# # style: compressed

# # Table of Contents settings
# toc:
# min_level: 2
# max_level: 2

# # Navigation
# header_pages:
# - index.md

# # Custom variables
# font_family: "Courier New, monospace"

# # Plugins
# plugins:
# - jekyll-seo-tag
# - jekyll-feed

# # Custom CSS
# custom_css: |
# body {
# font-family: {{ site.font_family }};
# }
# .site-nav {
# float: right;
# line-height: 54px;
# }
# .site-nav .page-link {
# color: #111;
# line-height: 1.5;
# }
# .site-nav .page-link:not(:last-child) {
# margin-right: 20px;
# }

# # Exclude files from processing
# # exclude:
# # - Gemfile
# # - Gemfile.lock
# # - node_modules
# # - vendor/bundle/
# # - vendor/cache/
# # - vendor/gems/
# # - vendor/ruby/

# # Exclude from processing.
# # The following items will not be processed, by default.
# # Any item listed under the `exclude:` key here will be automatically added to
# # the internal "default list".
# #
# # Excluded items can be processed by explicitly listing the directories or
# # their entries' file path in the `include:` list.
# #
# # exclude:
# # - .sass-cache/
# # - .jekyll-cache/
# # - gemfiles/
# # - Gemfile
# # - Gemfile.lock
# # - node_modules/
# # - vendor/bundle/
# # - vendor/cache/
# # - vendor/gems/
# # - vendor/ruby/
14 changes: 10 additions & 4 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# About
---
layout: page
title: Your Page Title
toc: true
---

## About

Hi, I'm Evan. I am an Electrical Engineering and Computer Science (EECS) master's student at UC Berkeley, advised by Professor [Jiantao Jiao](https://people.eecs.berkeley.edu/~jiantao/). I also completed my bachelor's degree in computer science at Berkeley.

My research focuses on Reinforcement Learning with Human Feedback (RLHF) for fine-tuning LLMs. Currently, much of my efforts revolve around reward model training and benchmarking.

I am also a Research Engineer at [Nexusflow](https://nexusflow.ai/), where I work on training LLMs like [Athene-70B](https://huggingface.co/Nexusflow/Athene-70B). I also work with [LMSYS](https://lmsys.org/), mainly on analyzing [Chatbot Arena](https://chat.lmsys.org/) and building LLM benchmarks.

# Publications
## Publications

# Experience
## Experience

# Contact
## Contact

0 comments on commit 78f0bf0

Please sign in to comment.