Skip to content

Commit 51930ee

Browse files
committed
Add Detailed README and Sponsors
1 parent 26029a8 commit 51930ee

14 files changed

Lines changed: 91 additions & 11 deletions

File tree

README.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Fast ML Lab Website Insructions
2+
This website is built on Github Pages using Jekyll, and thus, editing raw HTML should be unneccessary for most content updates.
3+
4+
## Add a News Item
5+
6+
Create a file `_posts/yyyy-mm-dd-title.md` and add the following at the beginning:
7+
8+
```yaml
9+
---
10+
title: HLS4ML
11+
external_link: https://fastmachinelearning.org/hls4ml/
12+
layout: post
13+
description: 'hls4ml: an open-source code framework for translating machine learning algorithms directly into FPGA firmware'
14+
image: /images/hls4ml.png
15+
---
16+
```
17+
Note that file paths for images should include a leading `/` to indicate an absolute path from the root of the site. Putting quotes around the title/description (single or double) is reccomended to avoid issues with yaml parsing. You can also add markdown content following this header and it will render as a complete web page, but as of yet there is no link to this post displayed on the front page, only content from the header. This may change in the future.
18+
19+
20+
## Add a Person
21+
In the file `_data/people/institution_name/lastf.yml` include the following:
22+
```yaml
23+
name: First Last
24+
degree: Degree
25+
field: Field
26+
position: Current Position at Institution
27+
interests: List of Interests
28+
image: /images/lastf.png
29+
external_link: http://your.url.here/
30+
```
31+
Note that the Jekyll site is set up to generate and alphabetize the institution list based on the folder names on the fly, interpreting an underscore in the directory name as a space. Therefore, if adding someone from a new institution, just add a new folder for their institution and place the person's info file inside. Note that file paths for images should include a leading `/` to indicate an absolute path from the root of the site.
32+
33+
## Add a Paper
34+
Add papers to the yaml list in `_data/papers.yml`
35+
36+
Note that this will render markdown syntax. Putting quotes around the title (single or double) is reccomended to avoid issues with yaml parsing.
37+
38+
**Example:**
39+
```yaml
40+
- 'Real-time Artificial Intelligence for Accelerator Control: A Study at the Fermilab Booster, [arXiv:2011.07371](https://arxiv.org/abs/2011.07371).'
41+
```
42+
43+
## Add a Talk
44+
Add talks to the yaml list in `_data/talks.yml`
45+
46+
Note that this will render markdown syntax. Putting quotes around the title (single or double) is reccomended to avoid issues with yaml parsing.
47+
48+
**Example:**
49+
```yaml
50+
- "C. Herwig, An ML Control System for the Fermilab Booster, BIDS Machine Learning and Science Forum, April 2021, [abstract](https://bids.berkeley.edu/events/machine-learning-and-science-forum-2021-0405)"
51+
```
52+
53+
## Add a Sponsor
54+
Add sponsors to the yaml list in `_data/sponsors.yml`
55+
56+
Note that this will **not** render markdown syntax. Entries for both `name` and `image` fields are required (see example). Note that file paths for images should include a leading `/` to indicate an absolute path from the root of the site.
57+
58+
59+
```yaml
60+
- name: National Science Foundation
61+
image: /images/nsf.png
62+
```

_config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ navbar:
3838
- name: Collaboration
3939
link: "#collaboration"
4040
autoscroll: true
41+
- name: Sponsors
42+
link: '#sponsors'
43+
autoscroll: true
4144
- name: Contact
4245
link: "mailto:fml@fastmachinelearning.org"
4346
autoscroll: false
@@ -50,4 +53,4 @@ footer:
5053
link: https://github.com/fastmachinelearning
5154

5255

53-
56+
exclude: ["CNAME", "license.txt", "README.md"]

_data/people/cern/arrestadt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ degree: PhD
33
field: Physics
44
position: Senior Research Fellow
55
interests: ML for jet tagging, diboson resonance searches, jet physics, real time inference, anomaly searches
6-
image: images/thea.png
6+
image: /images/thea.png

_data/people/cern/summerss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ degree: PhD
33
field: Physics
44
position: Senior Fellow
55
interests: Low latency, Trigger, Low precision, BDTs, Optimisations
6-
image: images/thesps.jpg
6+
image: /images/thesps.jpg

_data/people/columbia_university/guglielmogd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ degree: PhD
33
field: Computer Science
44
position: Associate Research Scientist
55
interests: System design, High-Level Synthesis
6-
image: images/gdg.jpg
6+
image: /images/gdg.jpg

_data/people/fermilab/holzmanb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ degree: PhD
33
field: Physics
44
position: Scientific Computing, Fermilab
55
interests: Elastic infrastructures for real-time machine learning
6-
image: images/bholzman.jpg
6+
image: /images/bholzman.jpg

_data/people/fermilab/tran.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ degree: PhD
33
field: Physics
44
position: Wilson Fellow at Fermilab
55
interests: Higgs, Dark Matter, Real-time systems, Computing
6-
image: images/nhan_tran.jpg
6+
image: /images/nhan_tran.jpg

_data/people/mit/harrisp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ degree: PhD
33
field: Physics
44
position: Assistant Professor
55
interests: Dark Matter, Higgs boson, Low latency computing, Machine Learning reconstruction
6-
image: images/Phil_Harris.jpg
6+
image: /images/Phil_Harris.jpg

_data/people/northwestern_univerisity/tran.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ degree: Adjunct
33
field: ECE
44
position: Wilson Fellow at Fermilab
55
interests: Higgs, Dark Matter, Real-time systems, Computing
6-
image: images/nhan_tran.jpg
6+
image: /images/nhan_tran.jpg

_data/people/uc_san_diego/duartej.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ degree: PhD
33
field: Physics
44
position: Assistant Professor
55
interests: Higgs boson, trigger, graph neural networks, selective persistence, data scouting, anomaly detection
6-
image: images/javier_duarte.jpg
6+
image: /images/javier_duarte.jpg

0 commit comments

Comments
 (0)