Giter Club home page Giter Club logo

LESS Lab Website

Our lab website: https://less-lab-uva.github.io

This repository contains the site used by the Less Lab @ UVA. This site was built using Jekyll. The original sites theme is based on bulma-clean-theme, a theme created by C.S. Rhymes.

Updating the Website

Adding or updating information is as easy as opening the appropriate folder (listed below) and adding a markdown file with the correct information.

More information on what format the markdown file should be is listed under the appropriate headings below.

Team Members

To add a team member, add your markdown file to the _team folder. The fields which need to be filled in are:

  • first_name: (required) Your first name.
  • last_name: (required) Your last name.
  • picture: (optional) A picture of you, preferably in the folder /images/team/. Note: the image needs to be square.
  • tier: (required) This needs to be one of the following (Professors, Research Scientists, Graduate Students, Undergraduate Students, Previous Members). This actually can be anything, and anyone with the same tier will be automatically added into a section with that title.
  • dblp_uri: (optional) A link to your dblp bib file. By adding this, we will automatically add your publications to the publications tab.
  • website: (optional) A link to your personal website.
  • jobtitle: (optional) Used for previous members to indicate where they are now working.

An example of a complete team member markdown file is shown below:

---
first_name: David
last_name: Shriver
picture: /images/team/david.jpg
tier: Previous Members
dblp_uri: https://dblp.org/pid/202/8415.bib
website: dlshriver.github.io
jobtitle: Software Engineering Institute
---

Projects

To add a project to the website, add a markdown file to the _project folder. The fields which need to be filled in are:

  • title: (required) The title of your project.
  • image: (optional) An image that will be displayed as a banner for your project, preferably in the folder /images/projects/. Note it is best to use an image that longer vertically than horizontally for best formatting.
  • date: (required) the date which the project was started in the format YYYY-MM-DD, used for sorting the projects.
  • team: (optional) A list of team members separated by commas.
  • label: (required) This defines which section your project will end up in. It needs to be one of the following (DNN, Robotics, Foundational)
  • sponsors: (optional) A sentence describing the sponsors of this project.
  • paperlink: (optional) A link to the paper.
  • artifactlink: (optional) A link to the artifact.

You can then add your project details below the data fields using the standard markdown format. For a guide on basic markdown formatting, take a look at this link.

An example of a complete project would look as follows:

---
title: Feasible and Stressful Trajectory Generation for Mobile Robots
image: /images/projects/TrajectoryGeneration.gif
date: 2020-07-18
team: Carl Hildebrandt, Sebastian Elbaum, Matthew B. Dwyer, and Nicola Bezzo
label: Robotics
sponsor: 'This effort is supported by NSF Awards #1853374 and #1901769 as well as the U.S. Army Research Office Grant #W911NF-19-1-0054'
paperlink: https://github.com/hildebrandt-carl/RobotTestGeneration
artifactlink: https://github.com/hildebrandt-carl/RobotTestGeneration
---

Lorem ipsum dolor sit amet.

Gallery Images

To add a gallery image to the website, add a markdown file to the _gallery folder. The fields which need to be filled in are:

  • image: (required) A link to the image you want to display, preferably in the folder /images/gallery/.
  • description: (optional) A short description of the image.
  • image_ratio: (optional) What ratio the image is, used to format the final image. Defaults to is-3by1. A complete list of ratios is available here.
  • date: (required) The date your image was taken in the format YYYY-MM-DD, used for sorting.

An example of a complete gallery markdown file is shown below:

---
image: /images/gallery/carltalk.jpg
description: Carl giving a talk on his recently published work on creating stressful trajectories for robots.
ratio: is-4by3
date: 2020-03-22
---

Publications

We have developed a way to automatically pull your publications using the dblp_uri tag from your team profile. However, you can also add a publication manually. To add a publication to the website, add a markdown file to the _publications folder. The fields which need to be filled in are:

  • title: (required) The title of your publication
  • date: (required) The date your publication was published in the format YYYY-MM-DD.
  • venue: (optional) The venue your publication was published in. You are able to add both HTML and markdown to this field.
  • paperurl: (optional) A link to your paper.
  • authors (optional) A list of authors separated by commas.
  • awards (optional) Any awards associated with the paper.

An example of a complete publication markdown file is shown below:

---
title: "At The End Of Synthesis: Narrowing Program Candidates"
date: 2017-01-01
venue: "39th IEEE/ACM International Conference on Software Engineering: New Ideas and Emerging Technologies Results Track, ICSE-NIER 2017, Buenos Aires, Argentina, May 20-28, 2017"
paperurl: https://doi.org/10.1109/ICSE-NIER.2017.7
authors: "David Shriver, Sebastian G Elbaum and Kathryn T Stolee"
---

News

To add a news article to the website, add a markdown file to the _news folder. The fields which need to be filled in are:

  • title: (required) The title of your news article.
  • link: (optional) A link to the news article.
  • date: (required) The date the news was published in the format YYYY-MM-DD.

An example of a complete publication markdown file is shown below:

---
title: David Shriver wins ACM SIGSOFT Outstanding Doctoral Dissertation Award
link: https://sigsoft.medium.com/sigsoft-awards-2023-34c6e55b5a97
date: 2023-03-23
---

Automatically Updating Publications

To update the publications, all you need to do is run the UpdatePublications.py script. To do that you can run the following command in your terminal:

$ python3 UpdatePublications.py

Running Website Locally

To work on the website locally you have two options. You can either use docker or you can install the dependencies manually

Docker (Recommended)

First you need to install docker. Once you are done, go into the less lab repo and run the following command:

docker run --rm -it \
  --volume="$PWD:/srv/jekyll" \
  --volume="$PWD/vendor/bundle:/usr/local/bundle" \
  -p 4000:4000 jekyll/jekyll:3.8 \
  jekyll serve

Installing Locally

To view this website, you will need Ruby and Bundle. Ruby is an open-source programming language, while Bundle is a tool that takes care of all the dependencies required to run Ruby projects. Below we provide the instructions needed to install these on both Mac OS and Ubuntu.

Mac OS

To install Ruby and Bundle on Mac OS, you need to run the following:

$ brew update
$ brew install ruby
$ sudo gem install bundler

Note: there have been some issues with the dependencies on Mac, although some people have got it working.

Next, to install all the dependencies for the website, go into the Website folder and run:

$ bundle install

You can view the website by running the following in the website folder:

$ bundle exec jekyll serve

Note: For this to work on Mac OS you will need to install xcode. You can install xcode from the app store (it takes a while).

Ubuntu

To install Ruby and Bundle on Ubuntu you need to run the following:

$ sudo apt update
$ sudo apt install ruby-full
$ sudo gem install bundler

Note: These instructions were tested on Ubuntu 18.04

Next, to install all the dependencies for the website, go into the Website folder and run:

$ bundle install

You can view the website by running the following in the website folder:

$ bundle exec jekyll serve

Viewing the Website

You can then view the website on:

http://127.0.0.1:4000/

Leading Engineering for Safe Software's Projects

bag2csv icon bag2csv

Create interpolated csv representation from bagged ROS messages

cylinder3d icon cylinder3d

Rank 1st in the leaderboard of SemanticKITTI semantic segmentation (both single-scan and multi-scan) (Nov. 2020) (CVPR2021 Oral)

decouplesegnets icon decouplesegnets

Implementation of Our ECCV2020-work: Improving Semantic Segmentation via Decoupled Body and Edge Supervision

efficientps icon efficientps

PyTorch code for training EfficientPS for Panoptic Segmentation https://rl.uni-freiburg.de/research/panoptic

hrnet-semantic-segmentation icon hrnet-semantic-segmentation

The OCR approach is rephrased as Segmentation Transformer: https://arxiv.org/abs/1909.11065. This is an official implementation of semantic segmentation for HRNet. https://arxiv.org/abs/1908.07919

imaginaire icon imaginaire

NVIDIA's Deep Imagination Team's PyTorch Library

js3c-net icon js3c-net

Sparse Single Sweep LiDAR Point Cloud Segmentation via Learning Contextual Shape Priors from Scene Completion (AAAI 2021)

manydepth icon manydepth

[CVPR 2021] Self-supervised depth estimation from short sequences

megadepth icon megadepth

Code of single-view depth prediction algorithm on Internet Photos described in "MegaDepth: Learning Single-View Depth Prediction from Internet Photos, Z. Li and N. Snavely, CVPR 2018".

osmread icon osmread

Simple library for reading OpenStreetMap XML and PBF data files

polarseg icon polarseg

Implementation for PolarNet: An Improved Grid Representation for Online LiDAR Point Clouds Semantic Segmentation (CVPR 2020)

randla-net icon randla-net

๐Ÿ”ฅRandLA-Net in Tensorflow (CVPR 2020, Oral & IEEE TPAMI 2021)

salsanext icon salsanext

Uncertainty-aware Semantic Segmentation of LiDAR Point Clouds for Autonomous Driving

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.