Skip to content

Latest commit

 

History

History
127 lines (104 loc) · 4.74 KB

papers_template.md

File metadata and controls

127 lines (104 loc) · 4.74 KB
title layout
Continual Learning Papers
page

Papers graph

{% include embedding-plot.html %}

Publications

In this section we maintain an updated list of publications related to Continual Learning. This references list is automatically generated by a single bibtex file maintained by the ContinualAI community through an open Mendeley group! Join our group here to add a reference to your paper! Please, remember to follow the (very simple) contributions guidelines when adding new papers.

<PAPER_COUNT>

<script> function apply_filters() { li = get_papers_li(); li = keyword_filter(li); li = regex_filter(li); year_filter(li); } </script> <script> function get_papers_li() { // sec = document.getElementById("publicationsdiv"); li = document.getElementsByTagName('li'); return li; } </script> <script> function keyword_filter(li) { // Declare variables var input, filter, ul, a, i, txtValue; input = document.getElementById('myInput'); filter = input.value.toUpperCase(); remaining_li = []; // Loop through all list items, and hide those who don't match the search query for (i = 0; i < li.length; i++) { txtValue = li[i].textContent || li[i].innerText; if (txtValue.toUpperCase().indexOf(filter) > -1) { li[i].style.display = ""; remaining_li.push(li[i]); } else { li[i].style.display = "none"; } } return remaining_li; } </script> <script> function regex_filter(li) { // Declare variables var input, filter, ul, a, i, txtValue; input = document.getElementById('myInputreg'); // filter = input.value.toUpperCase(); filter = input.value; remaining_li = []; // Loop through all list items, and hide those who don't match the search query for (i = 0; i < li.length; i++) { txtValue = li[i].textContent || li[i].innerText; if (txtValue.match(filter)) { li[i].style.display = ""; remaining_li.push(li[i]); } else { li[i].style.display = "none"; } } return remaining_li; } </script> <script> function year_filter(li) { // Declare variables var input, filter, ul, a, i, txtValue; start_year_input = document.getElementById('filterStartYearInput'); filter_start_year_string = start_year_input.value; filter_start_year = parseInt(filter_start_year_string); end_year_input = document.getElementById('filterEndYearInput'); filter_end_year_string = end_year_input.value; filter_end_year = parseInt(filter_end_year_string); // check for Not a Number: if (filter_start_year != filter_start_year) { filter_start_year = Number.MIN_VALUE; } if (filter_end_year != filter_end_year) { filter_end_year = Number.MAX_VALUE; } remaining_li = []; // Loop through all list items, and hide those who don't match the search query for (i = 0; i < li.length; i++) { year_string = li[i].getElementsByClassName("yearSpan")[0].textContent; year = parseInt(year_string); if (year >= filter_start_year && year <= filter_end_year) { li[i].style.display = ""; remaining_li.push(li[i]); } else { li[i].style.display = "none"; } } return remaining_li; } </script>

Filter list by keyword:
Filter list by regex:
Filter list by year: