├── .DS_Store ├── .gitignore ├── Makefile ├── README.md ├── archives.html ├── author ├── anna-go.html ├── matthew-beach.html ├── miles-stoudenmire.html ├── physicsml.html ├── physicsml2.html ├── physicsml3.html └── roger-melko.html ├── authors.html ├── blog ├── DL-theory.html ├── ML-in-XY.html ├── NADE.html ├── Probing-Topological-Properties.html ├── conference-on-machine-learning-and-physics-at-iastu.html ├── intro-to-machine-learning-talk-at-kitp.html ├── machine-learning-and-quantum-mechanics.html ├── machine-learning-for-quantum-design-at-pi.html ├── program-on-machine-learning-for-quantum-many-body-physics-at-kitp.html ├── quantum-machine-learning-conference-at-pi.html ├── tensor-network.html ├── workshop-in-machine-learning-and-many-body-physics-at-kits.html ├── workshop-machine-learning-for-quantum-many-body-physics-at-mpipks.html └── workshop-machine-learning-for-quantum-technology-at-mpl-erlangen.html ├── categories.html ├── category ├── articles.html ├── articles2.html ├── misc.html ├── misc2.html ├── misc3.html ├── misc4.html ├── news.html ├── news2.html └── news3.html ├── css ├── font-awesome.min.css ├── ie │ ├── backgroundsize.min.htc │ ├── html5shiv.js │ ├── v8.css │ └── v9.css ├── images │ ├── dark-bl.svg │ ├── dark-br.svg │ ├── dark-tl.svg │ ├── dark-tr.svg │ ├── light-bl.svg │ ├── light-br.svg │ ├── light-tl.svg │ ├── light-tr.svg │ └── overlay.png ├── pygment.css ├── skel.css ├── style-mobile.css ├── style-narrow.css ├── style-narrower.css ├── style-normal.css ├── style-noscript.css ├── style-wide.css └── style.css ├── develop ├── .DS_Store ├── Makefile ├── README.md ├── content │ ├── .DS_Store │ ├── Articles │ │ ├── DL_Theory-Part_I.md │ │ ├── ML_XY_model.md │ │ ├── NADE.md │ │ ├── RBM_Tutorial.md │ │ ├── SLT_and_GBs.md │ │ ├── tensor_networks.md │ │ ├── unreasonable-rbm.md │ │ └── what-is-qml.md │ ├── News │ │ ├── PI-mlqd-2019.md │ │ ├── dresden-mlqmbp-2018.md │ │ ├── erlangen-mlqt-2019.md │ │ ├── iastu-mlpc-2018.md │ │ ├── kitp-program-2019.md │ │ ├── kitp-talk.md │ │ ├── kits-mlmbp.md │ │ └── qml-at-perimeter.md │ ├── Pages │ │ ├── .DS_Store │ │ └── signup.md │ ├── images │ │ ├── .DS_Store │ │ ├── CNN.pdf │ │ ├── CNN.png │ │ ├── above.png │ │ ├── below.png │ │ ├── bias_variance.png │ │ ├── decision.png │ │ ├── hypothesis_space.png │ │ ├── loss.pdf │ │ ├── loss.png │ │ ├── phi.png │ │ ├── shattered_points_2d.png │ │ ├── windings.pdf │ │ └── windings.png │ └── pages │ │ ├── Other_interesting.csv │ │ ├── papers.md │ │ └── papers_ids_titles_sublists.csv ├── develop_server.sh ├── fabfile.py ├── fabfile.pyc ├── ghp_import.py ├── output │ ├── archives.html │ ├── author │ │ ├── anna-go.html │ │ ├── matthew-beach.html │ │ ├── miles-stoudenmire.html │ │ ├── physicsml.html │ │ ├── physicsml2.html │ │ ├── physicsml3.html │ │ └── roger-melko.html │ ├── authors.html │ ├── blog │ │ ├── DL-theory.html │ │ ├── ML-in-XY.html │ │ ├── Probing-Topological-Properties.html │ │ ├── conference-on-machine-learning-and-physics-at-iastu.html │ │ ├── intro-to-machine-learning-talk-at-kitp.html │ │ ├── machine-learning-and-quantum-mechanics.html │ │ ├── machine-learning-for-quantum-design-at-pi.html │ │ ├── program-on-machine-learning-for-quantum-many-body-physics-at-kitp.html │ │ ├── quantum-machine-learning-conference-at-pi.html │ │ ├── tensor-network.html │ │ ├── workshop-in-machine-learning-and-many-body-physics-at-kits.html │ │ ├── workshop-machine-learning-for-quantum-many-body-physics-at-mpipks.html │ │ └── workshop-machine-learning-for-quantum-technology-at-mpl-erlangen.html │ ├── categories.html │ ├── category │ │ ├── articles.html │ │ ├── articles2.html │ │ ├── misc.html │ │ ├── misc2.html │ │ ├── misc3.html │ │ ├── misc4.html │ │ ├── news.html │ │ ├── news2.html │ │ └── news3.html │ ├── css │ │ ├── font-awesome.min.css │ │ ├── ie │ │ │ ├── backgroundsize.min.htc │ │ │ ├── html5shiv.js │ │ │ ├── v8.css │ │ │ └── v9.css │ │ ├── images │ │ │ ├── dark-bl.svg │ │ │ ├── dark-br.svg │ │ │ ├── dark-tl.svg │ │ │ ├── dark-tr.svg │ │ │ ├── light-bl.svg │ │ │ ├── light-br.svg │ │ │ ├── light-tl.svg │ │ │ ├── light-tr.svg │ │ │ └── overlay.png │ │ ├── pygment.css │ │ ├── skel.css │ │ ├── style-mobile.css │ │ ├── style-narrow.css │ │ ├── style-narrower.css │ │ ├── style-normal.css │ │ ├── style-noscript.css │ │ ├── style-wide.css │ │ └── style.css │ ├── drafts │ │ ├── RBM-tutorial.html │ │ ├── generalization-bounds.html │ │ └── the-unreasonable-effectiveness-of-restricted-boltzmann-machines.html │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── images │ │ ├── .DS_Store │ │ ├── CNN.pdf │ │ ├── CNN.png │ │ ├── above.png │ │ ├── anna.jpg │ │ ├── anna_s.jpg │ │ ├── banner.jpg │ │ ├── banner_light.jpg │ │ ├── banner_old.jpg │ │ ├── below.png │ │ ├── bias_variance.png │ │ ├── decision.png │ │ ├── hypothesis_space.png │ │ ├── loss.pdf │ │ ├── loss.png │ │ ├── matt.png │ │ ├── matt_s.jpg │ │ ├── miles.jpg │ │ ├── miles_fi.jpg │ │ ├── miles_s.jpg │ │ ├── phi.png │ │ ├── pic01.jpg │ │ ├── pic02.jpg │ │ ├── pic03.jpg │ │ ├── pic04.jpg │ │ ├── roger.jpg │ │ ├── roger_s.jpg │ │ ├── shattered_points_2d.png │ │ ├── windings.pdf │ │ └── windings.png │ ├── index.html │ ├── index2.html │ ├── index3.html │ ├── index4.html │ ├── js │ │ ├── init.js │ │ ├── jquery.dropotron.min.js │ │ ├── jquery.min.js │ │ ├── skel-layers.min.js │ │ └── skel.min.js │ ├── pages │ │ ├── papers.html │ │ └── signup.html │ ├── tag │ │ ├── condensed-matter.html │ │ ├── conference.html │ │ ├── deep-learning.html │ │ ├── kernel-learning.html │ │ ├── machine-learning.html │ │ ├── machine-learning2.html │ │ ├── machine-learning3.html │ │ ├── machine-learning4.html │ │ ├── many-body-physics.html │ │ ├── neural-nets.html │ │ ├── neural-nets2.html │ │ ├── program.html │ │ ├── quantum-information.html │ │ ├── quantum-many-body-physics.html │ │ ├── quantum-mechanics.html │ │ ├── quantum-mechanics2.html │ │ ├── quantum-mechanics3.html │ │ ├── quantum-mechanics4.html │ │ ├── quantum-physics.html │ │ ├── quantum-technology.html │ │ ├── supervised-learning.html │ │ ├── support-vector-machines.html │ │ ├── tensor-networks.html │ │ ├── theory-of-deep-learning.html │ │ ├── topological-phase-transitions.html │ │ └── workshop.html │ ├── tags.html │ └── theme │ │ ├── .DS_Store │ │ ├── contact.html │ │ ├── css │ │ ├── .DS_Store │ │ ├── font-awesome.min.css │ │ ├── ie │ │ │ ├── backgroundsize.min.htc │ │ │ ├── html5shiv.js │ │ │ ├── v8.css │ │ │ └── v9.css │ │ ├── images │ │ │ ├── dark-bl.svg │ │ │ ├── dark-br.svg │ │ │ ├── dark-tl.svg │ │ │ ├── dark-tr.svg │ │ │ ├── light-bl.svg │ │ │ ├── light-br.svg │ │ │ ├── light-tl.svg │ │ │ ├── light-tr.svg │ │ │ └── overlay.png │ │ ├── pygment.css │ │ ├── skel.css │ │ ├── style-mobile.css │ │ ├── style-narrow.css │ │ ├── style-narrower.css │ │ ├── style-normal.css │ │ ├── style-noscript.css │ │ ├── style-wide.css │ │ └── style.css │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ │ ├── images │ │ ├── anna.jpg │ │ ├── anna_s.jpg │ │ ├── banner.jpg │ │ ├── banner_light.jpg │ │ ├── banner_old.jpg │ │ ├── matt.png │ │ ├── matt_s.jpg │ │ ├── miles.jpg │ │ ├── miles_fi.jpg │ │ ├── miles_s.jpg │ │ ├── pic01.jpg │ │ ├── pic02.jpg │ │ ├── pic03.jpg │ │ ├── pic04.jpg │ │ ├── roger.jpg │ │ └── roger_s.jpg │ │ ├── js │ │ ├── init.js │ │ ├── jquery.dropotron.min.js │ │ ├── jquery.min.js │ │ ├── skel-layers.min.js │ │ └── skel.min.js │ │ ├── left-sidebar.html │ │ ├── no-sidebar.html │ │ ├── right-sidebar.html │ │ └── sample-index.html ├── pelicanconf.py ├── pelicanconf.pyc ├── plugins │ └── render_math │ │ ├── Readme.md │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── math.py │ │ ├── math.pyc │ │ ├── mathjax_script_template │ │ ├── pelican_mathjax_markdown_extension.py │ │ └── pelican_mathjax_markdown_extension.pyc ├── themes │ ├── .DS_Store │ ├── custom_fresh │ │ ├── .DS_Store │ │ ├── LICENSE │ │ ├── README.md │ │ ├── static │ │ │ └── css │ │ │ │ ├── .sass-cache │ │ │ │ └── 19833d875f17ea32e3f84d75b3bd9b5355c22ca2 │ │ │ │ │ └── main.scssc │ │ │ │ ├── backup_main.css │ │ │ │ ├── main.css │ │ │ │ ├── main.css.map │ │ │ │ ├── main.scss │ │ │ │ └── pygment.css │ │ └── templates │ │ │ ├── analytics.html │ │ │ ├── archives.html │ │ │ ├── article.html │ │ │ ├── article_infos.html │ │ │ ├── author.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category.html │ │ │ ├── disqus_script.html │ │ │ ├── github.html │ │ │ ├── google_custom_search.html │ │ │ ├── index.html │ │ │ ├── page.html │ │ │ ├── papers.html │ │ │ ├── piwik.html │ │ │ ├── tag.html │ │ │ ├── tags.html │ │ │ ├── translations.html │ │ │ └── twitter.html │ └── twenty │ │ ├── .DS_Store │ │ ├── .hg_archival.txt │ │ ├── .hgignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── preview.png │ │ ├── static │ │ ├── .DS_Store │ │ ├── contact.html │ │ ├── css │ │ │ ├── .DS_Store │ │ │ ├── font-awesome.min.css │ │ │ ├── ie │ │ │ │ ├── backgroundsize.min.htc │ │ │ │ ├── html5shiv.js │ │ │ │ ├── v8.css │ │ │ │ └── v9.css │ │ │ ├── images │ │ │ │ ├── dark-bl.svg │ │ │ │ ├── dark-br.svg │ │ │ │ ├── dark-tl.svg │ │ │ │ ├── dark-tr.svg │ │ │ │ ├── light-bl.svg │ │ │ │ ├── light-br.svg │ │ │ │ ├── light-tl.svg │ │ │ │ ├── light-tr.svg │ │ │ │ └── overlay.png │ │ │ ├── pygment.css │ │ │ ├── skel.css │ │ │ ├── style-mobile.css │ │ │ ├── style-narrow.css │ │ │ ├── style-narrower.css │ │ │ ├── style-normal.css │ │ │ ├── style-noscript.css │ │ │ ├── style-wide.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── images │ │ │ ├── anna.jpg │ │ │ ├── anna_s.jpg │ │ │ ├── banner.jpg │ │ │ ├── banner_light.jpg │ │ │ ├── banner_old.jpg │ │ │ ├── matt.png │ │ │ ├── matt_s.jpg │ │ │ ├── miles.jpg │ │ │ ├── miles_fi.jpg │ │ │ ├── miles_s.jpg │ │ │ ├── pic01.jpg │ │ │ ├── pic02.jpg │ │ │ ├── pic03.jpg │ │ │ ├── pic04.jpg │ │ │ ├── roger.jpg │ │ │ └── roger_s.jpg │ │ ├── js │ │ │ ├── init.js │ │ │ ├── jquery.dropotron.min.js │ │ │ ├── jquery.min.js │ │ │ ├── skel-layers.min.js │ │ │ └── skel.min.js │ │ ├── left-sidebar.html │ │ ├── no-sidebar.html │ │ ├── right-sidebar.html │ │ └── sample-index.html │ │ └── templates │ │ ├── .DS_Store │ │ ├── archives.html │ │ ├── article.html │ │ ├── banner.html │ │ ├── base.html │ │ ├── category.html │ │ ├── coolstuff.html │ │ ├── cta.html │ │ ├── footer.html │ │ ├── index.html │ │ ├── most_recent.html │ │ ├── page.html │ │ └── pagination.html └── utils │ ├── __init__.py │ ├── __init__.pyc │ ├── filters.py │ └── filters.pyc ├── drafts ├── RBM-tutorial.html ├── generalization-bounds.html └── the-unreasonable-effectiveness-of-restricted-boltzmann-machines.html ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf └── fontawesome-webfont.woff ├── images ├── .DS_Store ├── CNN.pdf ├── CNN.png ├── Dominoes_flip_2.jpg ├── Dominoes_vs_dimers_1.jpg ├── JustHopfionTriangular_1.jpg ├── JustHopfion_1.jpg ├── NADE_expand.png ├── NADE_full.png ├── TrivialSmall_1.jpg ├── TrivialTriangular_1.jpg ├── above.png ├── anna.jpg ├── anna_s.jpg ├── banner.jpg ├── banner_light.jpg ├── banner_old.jpg ├── below.png ├── bias_variance.png ├── decision.png ├── hypothesis_space.png ├── loss.pdf ├── loss.png ├── matt.png ├── matt_s.jpg ├── miles.jpg ├── miles_fi.jpg ├── miles_s.jpg ├── phi.png ├── pic01.jpg ├── pic02.jpg ├── pic03.jpg ├── pic04.jpg ├── roger.jpg ├── roger_s.jpg ├── shattered_points_2d.png ├── windings.pdf └── windings.png ├── index.html ├── index2.html ├── index3.html ├── index4.html ├── js ├── init.js ├── jquery.dropotron.min.js ├── jquery.min.js ├── skel-layers.min.js └── skel.min.js ├── pages ├── papers-15.html ├── papers-16.html ├── papers-17.html ├── papers-18.html ├── papers-19.html ├── papers.html └── signup.html ├── publish.py ├── tag ├── condensed-matter.html ├── conference.html ├── deep-learning.html ├── kernel-learning.html ├── machine-learning.html ├── machine-learning2.html ├── machine-learning3.html ├── machine-learning4.html ├── many-body-physics.html ├── neural-nets.html ├── neural-nets2.html ├── program.html ├── quantum-information.html ├── quantum-many-body-physics.html ├── quantum-mechanics.html ├── quantum-mechanics2.html ├── quantum-mechanics3.html ├── quantum-mechanics4.html ├── quantum-physics.html ├── quantum-technology.html ├── supervised-learning.html ├── support-vector-machines.html ├── tensor-networks.html ├── theory-of-deep-learning.html ├── topological-phase-transitions.html └── workshop.html ├── tags.html ├── theme ├── .DS_Store ├── contact.html ├── css │ ├── .DS_Store │ ├── font-awesome.min.css │ ├── ie │ │ ├── backgroundsize.min.htc │ │ ├── html5shiv.js │ │ ├── v8.css │ │ └── v9.css │ ├── images │ │ ├── dark-bl.svg │ │ ├── dark-br.svg │ │ ├── dark-tl.svg │ │ ├── dark-tr.svg │ │ ├── light-bl.svg │ │ ├── light-br.svg │ │ ├── light-tl.svg │ │ ├── light-tr.svg │ │ └── overlay.png │ ├── pygment.css │ ├── skel.css │ ├── style-mobile.css │ ├── style-narrow.css │ ├── style-narrower.css │ ├── style-normal.css │ ├── style-noscript.css │ ├── style-wide.css │ └── style.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images │ ├── anna.jpg │ ├── anna_s.jpg │ ├── banner.jpg │ ├── banner_light.jpg │ ├── banner_old.jpg │ ├── matt.png │ ├── matt_s.jpg │ ├── miles.jpg │ ├── miles_fi.jpg │ ├── miles_s.jpg │ ├── pic01.jpg │ ├── pic02.jpg │ ├── pic03.jpg │ ├── pic04.jpg │ ├── roger.jpg │ └── roger_s.jpg ├── js │ ├── init.js │ ├── jquery.dropotron.min.js │ ├── jquery.min.js │ ├── skel-layers.min.js │ └── skel.min.js ├── left-sidebar.html ├── no-sidebar.html ├── right-sidebar.html └── sample-index.html ├── todo.md └── workflow.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sass-cache* 2 | *.pyc 3 | *.swp 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | html: 2 | cd develop && make html 3 | 4 | serve: 5 | cd develop/output && make serve 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # physicsml.github.io -- now archived 2 | -------------------------------------------------------------------------------- /css/ie/html5shiv.js: -------------------------------------------------------------------------------- 1 | /* 2 | HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); 5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; 6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| 7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); 8 | for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /css/images/dark-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /css/images/dark-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /css/images/dark-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /css/images/light-bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /css/images/light-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /css/images/light-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /css/images/light-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/css/images/overlay.png -------------------------------------------------------------------------------- /css/style-mobile.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body { 10 | min-width: 320px; 11 | } 12 | 13 | h2 { 14 | font-size: 1.25em; 15 | letter-spacing: 0.1em; 16 | } 17 | 18 | h3 { 19 | font-size: 1em; 20 | letter-spacing: 0.025em; 21 | } 22 | 23 | p { 24 | text-align: justify; 25 | } 26 | 27 | header { 28 | text-align: center; 29 | } 30 | 31 | header.major { 32 | padding-bottom: 0; 33 | } 34 | 35 | header.special { 36 | margin-bottom: 3em; 37 | padding-left: 1.5em; 38 | padding-right: 1.5em; 39 | } 40 | 41 | header.special:before, header.special:after { 42 | width: 38%; 43 | } 44 | 45 | header.special .icon { 46 | font-size: 0.75em; 47 | top: 1.5em; 48 | } 49 | 50 | header p { 51 | text-align: center; 52 | } 53 | 54 | footer.major { 55 | padding-top: 0; 56 | } 57 | 58 | /* Icon */ 59 | 60 | .icon.circle { 61 | font-size: 1em; 62 | } 63 | 64 | /* Button */ 65 | 66 | .button { 67 | max-width: 20em; 68 | width: 100%; 69 | } 70 | 71 | .button.fit { 72 | width: auto; 73 | } 74 | 75 | /* Lists */ 76 | 77 | ul.icons li { 78 | padding-left: 0.25em; 79 | } 80 | 81 | ul.feature-icons li .icon { 82 | width: 1.1em; 83 | } 84 | 85 | ul.buttons { 86 | text-align: center; 87 | } 88 | 89 | /* Wrapper */ 90 | 91 | .wrapper { 92 | margin-bottom: 2.5em; 93 | padding: 2.25em 1.5em; 94 | } 95 | 96 | .wrapper.special br { 97 | display: none; 98 | } 99 | 100 | .wrapper.style1 { 101 | padding: 0 1.5em; 102 | } 103 | 104 | .wrapper.style2 { 105 | background-size: 10em; 106 | padding: 2.25em 1.5em; 107 | } 108 | 109 | .wrapper.style4 { 110 | background-size: 10em; 111 | padding: 1.5em 1.5em 3em 1.5em; 112 | } 113 | 114 | /* Banner */ 115 | 116 | #banner { 117 | background-size: 10em, 10em, auto, cover; 118 | padding: 6em 0; 119 | } 120 | 121 | #banner .inner { 122 | background: none; 123 | display: block; 124 | padding: 0 1.5em; 125 | } 126 | 127 | #banner .inner header h2 { 128 | font-size: 1.5em; 129 | } 130 | 131 | #banner .inner p { 132 | text-align: center; 133 | } 134 | 135 | #banner .inner br { 136 | display: none; 137 | } 138 | 139 | /* Main */ 140 | 141 | #main { 142 | background-size: 10em; 143 | padding: 3.5em 0 2.5em 0; 144 | } 145 | 146 | body.index #main { 147 | padding: 2.5em 0 0 0; 148 | } 149 | 150 | body.contact #main { 151 | padding-bottom: 0; 152 | } 153 | 154 | /* CTA */ 155 | 156 | #cta { 157 | background-size: 10em, 10em, auto, cover; 158 | padding: 3em 1.5em; 159 | } 160 | 161 | /* Footer */ 162 | 163 | #footer { 164 | padding: 3em 1.5em; 165 | } -------------------------------------------------------------------------------- /css/style-narrow.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.5em; 13 | } 14 | 15 | header br { 16 | display: none; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1em; 21 | } 22 | 23 | header.special { 24 | padding-left: 2.5em; 25 | padding-right: 2.5em; 26 | } 27 | 28 | footer.major { 29 | padding-top: 1.5em; 30 | } 31 | 32 | /* Wrapper */ 33 | 34 | .wrapper { 35 | margin-bottom: 3em; 36 | padding: 3em 2.5em; 37 | } 38 | 39 | .wrapper.special br { 40 | display: none; 41 | } 42 | 43 | .wrapper.style1 { 44 | padding: 0 2.5em; 45 | } 46 | 47 | .wrapper.style2 { 48 | background-size: 15em; 49 | } 50 | 51 | .wrapper.style4 { 52 | padding: 2.5em; 53 | } 54 | 55 | /* Banner */ 56 | 57 | #banner { 58 | background-size: 15em, 15em, auto, cover; 59 | } 60 | 61 | /* Main */ 62 | 63 | #main { 64 | background-size: 15em; 65 | } 66 | 67 | /* CTA */ 68 | 69 | #cta { 70 | background-size: 15em, 15em, auto, cover; 71 | padding: 3em; 72 | } -------------------------------------------------------------------------------- /css/style-narrower.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | header.major { 10 | padding-bottom: 0.25em; 11 | } 12 | 13 | header.special { 14 | margin-bottom: 4em; 15 | padding-top: 5em; 16 | } 17 | 18 | header.special:before, header.special:after { 19 | width: 40%; 20 | } 21 | 22 | header.special h2 + p { 23 | padding-top: 1.25em; 24 | } 25 | 26 | section { 27 | margin: 1em 0 1em 0; 28 | } 29 | 30 | section:first-child { 31 | margin-top: 0; 32 | } 33 | 34 | /* Button */ 35 | 36 | .button.small { 37 | font-size: 0.8em; 38 | min-width: 18em; 39 | padding: 0.75em 0; 40 | } 41 | 42 | /* Lists */ 43 | 44 | ul.feature-icons { 45 | margin: 0; 46 | } 47 | 48 | ul.feature-icons li { 49 | display: inline-block; 50 | float: none; 51 | width: auto; 52 | } 53 | 54 | ul.feature-icons li .icon { 55 | font-size: 4em; 56 | width: 1.25em; 57 | } 58 | 59 | ul.buttons li { 60 | display: block; 61 | padding: 1em 0 0 0; 62 | } 63 | 64 | /* Header */ 65 | 66 | #header { 67 | display: none; 68 | } 69 | 70 | /* Banner */ 71 | 72 | #banner { 73 | margin: 0; 74 | } 75 | 76 | /* Wrapper */ 77 | 78 | .wrapper.special-alt { 79 | text-align: center; 80 | } 81 | 82 | .wrapper.style4 { 83 | padding-bottom: 3em; 84 | } 85 | 86 | /* Main */ 87 | 88 | #main { 89 | padding: 5em 0; 90 | } 91 | 92 | #main .sidebar { 93 | border-top: solid 1px rgba(124, 128, 129, 0.1); 94 | padding-top: 3em; 95 | } 96 | 97 | #main .sidebar section { 98 | border-top: 0; 99 | padding-top: 0; 100 | } 101 | 102 | body.index #main { 103 | padding-top: 4.5em; 104 | } 105 | 106 | /* CTA */ 107 | 108 | #cta { 109 | margin: 0; 110 | } 111 | 112 | /* Footer */ 113 | 114 | #footer { 115 | padding: 4em 1.5em; 116 | } -------------------------------------------------------------------------------- /css/style-normal.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.65em; 13 | } 14 | 15 | h1, h2, h3, h4, h5, h6 { 16 | line-height: 1.5em; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1.5em; 21 | } 22 | 23 | footer.major { 24 | padding-top: 2em; 25 | } 26 | 27 | /* Wrapper */ 28 | 29 | .wrapper { 30 | margin-bottom: 4em; 31 | padding: 4em 3em; 32 | } 33 | 34 | .wrapper.style4 { 35 | padding: 3em; 36 | } 37 | 38 | /* Header */ 39 | 40 | #header nav ul li { 41 | margin-left: 1em; 42 | } 43 | 44 | /* Banner */ 45 | 46 | #banner { 47 | background-attachment: scroll; 48 | } 49 | 50 | /* CTA */ 51 | 52 | #cta { 53 | padding: 4em; 54 | background-attachment: scroll; 55 | } 56 | 57 | /* Footer */ 58 | 59 | #footer { 60 | padding: 4em; 61 | } -------------------------------------------------------------------------------- /css/style-noscript.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Banner */ 8 | 9 | #banner .inner { 10 | opacity: 1.0; 11 | } -------------------------------------------------------------------------------- /css/style-wide.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 14pt; 11 | } 12 | 13 | header.special { 14 | padding-top: 5.5em; 15 | margin-bottom: 4em; 16 | } -------------------------------------------------------------------------------- /develop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/.DS_Store -------------------------------------------------------------------------------- /develop/README.md: -------------------------------------------------------------------------------- 1 | # physicsml.github.io 2 | PhysicsML blog 3 | -------------------------------------------------------------------------------- /develop/content/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/.DS_Store -------------------------------------------------------------------------------- /develop/content/Articles/unreasonable-rbm.md: -------------------------------------------------------------------------------- 1 | Title: The Unreasonable Effectiveness of Restricted Boltzmann Machines 2 | Date: 2017-01-17 20:00 3 | Tags: quantum mechanics, machine learning, Boltzmann Machines 4 | Authors: Roger Melko 5 | Summary: The unsupervised learning tool, ambiguous in modern deep learning, has some important lessons for quantum physicists 6 | Status: draft 7 | 8 | 9 | When I first encountered a Boltzmann Machine, I did not immediately see its appeal to a quantum many-body physicist. 10 | A Boltzmann Machine is a stochastic neural network used to (approximately) learn probability distributions, 11 | and to generate samples from the learned distribution. It is a common tool in feature extraction, 12 | classification, and other tasks in the modern machine learning community. 13 | 14 | But why would we physicists need a learning tool to approximate distributions when, presumably, in order to 15 | obtain data to train the machine, we must already ``know'' the distribution (or, at least, the Hamiltonian)? 16 | As a Monte Carlo practitioner, I am in the business of sampling from perfect 17 | distributions---a practice fraught with many difficulties as it is. Why add further systematic 18 | error (on top of our statistical error) by sampling from an imperfect distribution, which presumably takes 19 | considerable computational effort to learn? The application of such a machine in the technology industry is 20 | more obvious. There, we are trying to train a machine on (say) a finite-size number of cat pictures, 21 | with the goal of teaching the machine to generate, or ``dream'', a picture of a cat no one has seen before. 22 | For me, each picture of a cat is instead (say) a spin configuration, each pixel an up or down spin 23 | state, sampled e.g. from the Boltzmann distribution at finite temperature. This sampling is done with 24 | a Markov Chain Monte Carlo procedure, an efficient algorithm honed by scientists since the end of 25 | World War II. It seems we already have the distribution and know how to sample it very efficiently. 26 | Why use our samples to train an imperfect machine, the sampling of which may be less efficient than 27 | our existing algorithms, honed by scientists for the past 65 years? 28 | 29 | Needless to say, I'm now a convert to the myriad possibilities that Boltzmann Machines present to the physicist. 30 | Over the last year, I've been watching the field develop with excitement. One variant, the `Restricted' 31 | Boltzmann Machine (RBM), seems to hold particular promise as a tool for representing and sampling classical and 32 | quantum states (wavefunctions). Below, I've outlined some of the promise inherent in RBMs for the field of 33 | condensed matter and quantum many-body physics. 34 | 35 | ## Representation of wavefunctions, and the inverse problem 36 | 37 | ## Ancillary support for Monte Carlo simulations 38 | 39 | ([Andy Rubin][4] among them) 40 | [4]: http://www.theverge.com/2016/6/14/11939310/andy-rubin-google-android-playground-ai-robotics "Andy Rubin AI Robotics" 41 | -------------------------------------------------------------------------------- /develop/content/News/PI-mlqd-2019.md: -------------------------------------------------------------------------------- 1 | Title: Machine Learning for Quantum Design at PI 2 | Date: 2019-01-30 3 | Tags: quantum mechanics, condensed matter, quantum information, machine learning 4 | Summary: Perimeter Institute for Theoretical Physics hosts the conference Machine Learning for Quantum Design (July 8-12, 2019) 5 | 6 | 7 | The **Perimeter Institute for Theoretical Physics** in **Waterloo**, Canada, hosts ["Machine Learning for Quantum Design"](http://perimeterinstitute.ca/conferences/machine-learning-quantum-design) on July 8-12 (2019) - a conference bringing together experts in computational physics, machine learning, and quantum information. 8 | 9 | 10 | Machine learning techniques are rapidly being adopted into the field of quantum many-body physics, including condensed matter theory, experiment, and quantum information science. The steady increase in data being produced by highly-controlled quantum experiments brings the potential of machine learning algorithms to the forefront of scientific advancement. Particularly exciting is the prospect of using machine learning for the discovery and design of quantum materials, devices, and computers. In order to make progress, the field must address a number of fundamental questions related to the challenges of studying many-body quantum mechanics using classical computing algorithms and hardware. 11 | 12 | Topics include: 13 | 14 | * Data-drive quantum state reconstruction 15 | * Machine learning strategies for quantum error correction 16 | * Neural-network based wavefunctions 17 | * Near-term prospects for data from quantum devices 18 | * Machine learning for quantum algorithm discovery 19 | 20 | 21 | List of invited speakers and more details can be found on the conference [website](http://perimeterinstitute.ca/conferences/machine-learning-quantum-design). 22 | -------------------------------------------------------------------------------- /develop/content/News/dresden-mlqmbp-2018.md: -------------------------------------------------------------------------------- 1 | Title: Workshop Machine Learning for Quantum Many-Body Physics at mpipks 2 | Date: 2018-03-22 3 | Tags: workshop, quantum mechanics, neural nets, machine learning, quantum many-body physics 4 | Summary: mpipks Dresden hosts the workshop Machine Learning for Quantum Many-Body Physics (June 25-29, 2018) 5 | 6 | The **Max Planck Institute for the Physics of Complex Systems** in **Dresden** hosts ["Machine Learning for Quantum Many-Body Physics"](https://www.pks.mpg.de/mlq18/) on June 25-29 (2018) - an international workshop on the emerging research area that applies machine learning techniques to problems in quantum many-body physics. 7 | 8 | Topics include: 9 | 10 | - Supervised phase classification 11 | - Unsupervised learning of quantum phases 12 | - Restricted Boltzmann machines for representing wavefunctions 13 | - Solving quantum many-body problems 14 | - Connections between the renormalization group and deep learning 15 | - Machine learning and density functional theory 16 | - Material discovery using machine learning 17 | - Quantum neural networks 18 | - Quantum error correction and decoding with neural networks 19 | - Quantum state tomography with machine learning 20 | 21 | List of invited speakers and more details can be found on the workshop [website](https://www.pks.mpg.de/mlq18/). 22 | -------------------------------------------------------------------------------- /develop/content/News/erlangen-mlqt-2019.md: -------------------------------------------------------------------------------- 1 | Title: Workshop Machine Learning for Quantum Technology at MPL Erlangen 2 | Date: 2019-01-29 3 | Tags: workshop, quantum physics, machine learning, quantum technology 4 | Summary: MPL Erlangen hosts the workshop Machine Learning for Quantum Technology (May 8-10, 2019) 5 | 6 | 7 | The **Max Planck Institute for the Science of Light** in **Erlangen**, Germany, hosts ["Machine Learning for Quantum Technology"](https://www.mpl.mpg.de/divisions/marquardt-division/workshops/2019-machine-learning-for-quantum-technology/) on May 8-10 (2019) - an international workshop that covers emerging applications of machine learning to quantum devices, including advanced methods like reinforcement learning. 8 | 9 | The workshop will be preceded by a two-day school for students trying to enter the field, going from a recap of the basics of neural networks to advanced techniques, May 6-7, 2019. 10 | 11 | List of invited speakers and more details can be found on the workshop [website](https://www.mpl.mpg.de/divisions/marquardt-division/workshops/2019-machine-learning-for-quantum-technology/). 12 | -------------------------------------------------------------------------------- /develop/content/News/iastu-mlpc-2018.md: -------------------------------------------------------------------------------- 1 | Title: Conference on Machine Learning and Physics at IASTU 2 | Date: 2018-03-22 3 | Tags: conference, quantum mechanics, neural nets, machine learning, quantum many-body physics 4 | Summary: IASTU Beijing hosts "Machine Learning and Physics" (July 4-6, 2018) 5 | 6 | The **Insitute for Advanced Study of Tsinghua University** in **Beijing** invites to the first of the biannual conference series ["Machine Learning and Physics"](http://mlphys2018.csp.escience.cn/dct/page/1) to be held on July 4-6, 2018. The conference covers machine learning applications in different sub-areas of physics, as well as the physics-inspired machine learning developments. 7 | 8 | Topics include: 9 | 10 | - machine learning phase of matter 11 | - machine learning assisted computational physics and material search 12 | - quantum machine learning 13 | - machine learning application in high-energy and astrophysics data analysis 14 | 15 | See conference [website](http://mlphys2018.csp.escience.cn/dct/page/1) for more details. 16 | -------------------------------------------------------------------------------- /develop/content/News/kitp-program-2019.md: -------------------------------------------------------------------------------- 1 | Title: Program on Machine Learning for Quantum Many-Body Physics at KITP 2 | Date: 2018-04-22 3 | Tags: program, quantum mechanics, neural nets, machine learning, quantum many-body physics 4 | Summary: KITP Santa Barbara announces a program on Machine Learning for Quantum Many-Body Physics (January 28 - March 22, 2019) 5 | 6 | The **Kavli Institute for Theoretical Physics** in **Santa Barbara** announces the program ["Machine Learning for Quantum Many-Body Physics"](https://www.kitp.ucsb.edu/activities/machine19) to be held form January 28 through March 22, 2019. 7 | 8 | It will bring together experts from both physics and computer science to discuss the uses of machine learning in theoretical and experimental many-body physics. Machine learning will be explored as a complementary method to current computational techniques, including Monte Carlo and tensor networks, as well as a method to analyze "big data" generated in experiment. 9 | 10 | Topics include: 11 | 12 | - the use of neural networks for the purposes of decoding, quantum error correction, and tomography 13 | - theoretical connections between deep learning, the renormalization group, and tensor networks 14 | - foundational questions in machine learning, such as the formal concepts on information, intelligence, and interpretability 15 | - the theoretical possibility of a quantum advantage for machine learning applications implemented on near-term quantum hardware, such as quantum annealers 16 | 17 | For more details visit the [website](https://www.kitp.ucsb.edu/activities/machine19). 18 | -------------------------------------------------------------------------------- /develop/content/News/kitp-talk.md: -------------------------------------------------------------------------------- 1 | Title: Intro to Machine Learning Talk at KITP 2 | Date: 2016-11-09 20:00 3 | Tags: quantum mechanics, neural nets, machine learning 4 | Summary: Roger Melko presented an introduction to machine learning for a physics audience at the KITP in Santa Barbara 5 | 6 | With the huge growth of interest in machine learning in the private sector and across 7 | academia, plus the apparent connections between machine learning and statistical physics, 8 | it was only a matter of time before physicists started exploring the uses of machine 9 | learning for their own work. Recently there has been an explosion of machine learning 10 | papers appearing on the cond-mat (condensed matter) section of the arxiv (see our 11 | list of these papers). 12 | 13 | Roger Melko explained the basics of machine learning and some of his group's work 14 | to attendees of the "Synthetic Quantum Matter" program at the KITP in Santa Barbara. 15 | 16 | Watch the talk [here](http://online.kitp.ucsb.edu/online/synquant16/melko/). 17 | -------------------------------------------------------------------------------- /develop/content/News/kits-mlmbp.md: -------------------------------------------------------------------------------- 1 | Title: Workshop in Machine Learning and Many-Body Physics at KITS 2 | Date: 2017-07-04 20:00 3 | Tags: quantum mechanics, neural nets, machine learning, many-body physics 4 | Summary: KITS Beijing hosts a workshop in Machine Learning and Many-Body Physics (June 28 - July 7, 2017) 5 | 6 | The Kavli Institute for Theoretical Sciences at the University of Chinese Acadamy of Sciences presents "Machine Learning and Many-Body Physics", a summer school and workshop. 7 | The central questions addressed in this workshop are "How is machine learning useful for physics/chemistry ?" and "How can physicists/chemists help with the development of machine learning ?". In particular, we will touch on the following topics: 8 |
    9 |
  • Conceptual connections of machine learning and many-body physics
  • 10 |
  • Machine learning techniques for solving many-body physics/chemistry problems
  • 11 |
  • Statistical and quantum physics perspectives on machine learning
  • 12 |
  • Quantum algorithms and quantum hardwares for machine learning
  • 13 |
14 | 15 | See link to workshop webpage. 16 | 17 | 18 | -------------------------------------------------------------------------------- /develop/content/News/qml-at-perimeter.md: -------------------------------------------------------------------------------- 1 | Title: Quantum Machine Learning Conference at PI 2 | Date: 2016-08-04 20:00 3 | Modified: 2016-08-05 18:00 4 | Tags: quantum mechanics, neural nets, machine learning 5 | Summary: Scientists from academia and industry converge on Waterloo as the Perimeter Institute hosts Quantum Machine Learning (August 5-12, 2016) 6 | 7 | The remarkable progress of machine learning algorithms in the last few years has not escaped the notice of physicists. 8 | In fact, this community have been using techniques derived from machine learning for years, in research as far flung as materials science, quantum chemistry, and high-energy experiment. New developments are now bringing the fields even closer together; particularly interesting are the new synergies developing between quantum physicists and the machine learning community. 9 | 10 | The conference "Quantum Machine Learning" brings together experts from a variety of backgrounds who are interested in connections between many-body physics, quantum computing and machine learning. The bridges between quantum mechanics and machine learning are diverse and varied; the conference will include topics related to: 11 | 12 | * The use of technologies developed for machine learning, such as neural networks, statistical learning, support vector machines, etc., to tackle quantum and classical many-body problems. This might include discriminating phases of matter, analyzing phase transitions, or "learning" a Hamiltonian given samples of wavefunction configurations (the inverse problem). 13 | 14 | * Physics-inspired algorithms for machine learning and neural networks, such as Boltzmann machines (classical statistical mechanical learning) and their quantum extensions, and connections between deep learning, the renormalization group, and tensor networks. 15 | 16 | * Opportunities for machine learning that quantum computing will enable. This includes algorithmic advances for fault tolerant computers, as well as currently-available hardware systems such as quantum annealers. 17 | 18 | The participant list for the conference boasts a diverse group from academia, as well as industry, including Google, Microsoft, D-wave Systems, Intel, Scotiabank, and many more. 19 | 20 | More information can be found on this [website](https://perimeterinstitute.ca/conferences/quantum-machine-learning). 21 | -------------------------------------------------------------------------------- /develop/content/Pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/Pages/.DS_Store -------------------------------------------------------------------------------- /develop/content/Pages/signup.md: -------------------------------------------------------------------------------- 1 | Title: Sign up 2 | Date: 2018-03-01 19:00 3 | Slug: signup 4 | 5 | 6 | 7 | Inspired by the WiML and HEPML directories, it is our hope that this directory will help connect the community, and to serve as a space for the sharing of ideas about the relationship between Quantum Mechanics and Machine Learning. 8 | 9 | 10 | -------------------------------------------------------------------------------- /develop/content/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/.DS_Store -------------------------------------------------------------------------------- /develop/content/images/CNN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/CNN.pdf -------------------------------------------------------------------------------- /develop/content/images/CNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/CNN.png -------------------------------------------------------------------------------- /develop/content/images/above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/above.png -------------------------------------------------------------------------------- /develop/content/images/below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/below.png -------------------------------------------------------------------------------- /develop/content/images/bias_variance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/bias_variance.png -------------------------------------------------------------------------------- /develop/content/images/decision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/decision.png -------------------------------------------------------------------------------- /develop/content/images/hypothesis_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/hypothesis_space.png -------------------------------------------------------------------------------- /develop/content/images/loss.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/loss.pdf -------------------------------------------------------------------------------- /develop/content/images/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/loss.png -------------------------------------------------------------------------------- /develop/content/images/phi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/phi.png -------------------------------------------------------------------------------- /develop/content/images/shattered_points_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/shattered_points_2d.png -------------------------------------------------------------------------------- /develop/content/images/windings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/windings.pdf -------------------------------------------------------------------------------- /develop/content/images/windings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/content/images/windings.png -------------------------------------------------------------------------------- /develop/content/pages/Other_interesting.csv: -------------------------------------------------------------------------------- 1 | Index,ID,Title 2 | 0,1812.09123,"Statistical models of neural activity, criticality, and Zipf's law" 3 | 1,1812.09077,Dreaming neural networks: rigorous results 4 | 2,1812.03389,Memristors for the Curious Outsiders 5 | 3,1811.02861,"Growing Critical: Self-Organized Criticality in a Developing Neural 6 | System" 7 | 4,1809.02942,Cellular automata as convolutional neural networks 8 | 5,1810.10938,On the Sample Complexity of PAC Learning Quantum Process 9 | 6,1808.07172,Fisher Information and Natural Gradient Learning of Random Deep Networks 10 | 7,1808.06846,"Search for Common Minima in Joint Optimization of Multiple Cost 11 | Functions" 12 | 8,1808.00408,"Geometry of energy landscapes and the optimizability of deep neural 13 | networks" 14 | 9,1807.103,Discovering physical concepts with neural networks 15 | 10,1807.0747,"Machine learning study of the relationship between the geometric and 16 | entropy discord" 17 | 11,1807.00042,"Neural Networks Trained to Solve Differential Equations Learn General 18 | Representations" 19 | 12,1806.01421,Quantum Integrated Information Theory 20 | 13,1712.08523,"Contemporary machine learning: a guide for practitioners in the physical 21 | sciences" 22 | 14,1710.09825,"On the role of synaptic stochasticity in training low-precision neural 23 | networks" 24 | 15,1710.06832,"The Origins of Computational Mechanics: A Brief Intellectual History and 25 | Several Clarifications" 26 | -------------------------------------------------------------------------------- /develop/develop_server.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ## 3 | # This section should match your Makefile 4 | ## 5 | PY=${PY:-python} 6 | PELICAN=${PELICAN:-pelican} 7 | PELICANOPTS= 8 | 9 | BASEDIR=$(pwd) 10 | INPUTDIR=$BASEDIR/content 11 | OUTPUTDIR=$BASEDIR/output 12 | CONFFILE=$BASEDIR/pelicanconf.py 13 | 14 | ### 15 | # Don't change stuff below here unless you are sure 16 | ### 17 | 18 | SRV_PID=$BASEDIR/srv.pid 19 | PELICAN_PID=$BASEDIR/pelican.pid 20 | 21 | function usage(){ 22 | echo "usage: $0 (stop) (start) (restart) [port]" 23 | echo "This starts Pelican in debug and reload mode and then launches" 24 | echo "an HTTP server to help site development. It doesn't read" 25 | echo "your Pelican settings, so if you edit any paths in your Makefile" 26 | echo "you will need to edit your settings as well." 27 | exit 3 28 | } 29 | 30 | function alive() { 31 | kill -0 $1 >/dev/null 2>&1 32 | } 33 | 34 | function shut_down(){ 35 | PID=$(cat $SRV_PID) 36 | if [[ $? -eq 0 ]]; then 37 | if alive $PID; then 38 | echo "Stopping HTTP server" 39 | kill $PID 40 | else 41 | echo "Stale PID, deleting" 42 | fi 43 | rm $SRV_PID 44 | else 45 | echo "HTTP server PIDFile not found" 46 | fi 47 | 48 | PID=$(cat $PELICAN_PID) 49 | if [[ $? -eq 0 ]]; then 50 | if alive $PID; then 51 | echo "Killing Pelican" 52 | kill $PID 53 | else 54 | echo "Stale PID, deleting" 55 | fi 56 | rm $PELICAN_PID 57 | else 58 | echo "Pelican PIDFile not found" 59 | fi 60 | } 61 | 62 | function start_up(){ 63 | local port=$1 64 | echo "Starting up Pelican and HTTP server" 65 | shift 66 | $PELICAN --debug --autoreload -r $INPUTDIR -o $OUTPUTDIR -s $CONFFILE $PELICANOPTS & 67 | pelican_pid=$! 68 | echo $pelican_pid > $PELICAN_PID 69 | cd $OUTPUTDIR 70 | $PY -m pelican.server $port & 71 | srv_pid=$! 72 | echo $srv_pid > $SRV_PID 73 | cd $BASEDIR 74 | sleep 1 75 | if ! alive $pelican_pid ; then 76 | echo "Pelican didn't start. Is the Pelican package installed?" 77 | return 1 78 | elif ! alive $srv_pid ; then 79 | echo "The HTTP server didn't start. Is there another service using port" $port "?" 80 | return 1 81 | fi 82 | echo 'Pelican and HTTP server processes now running in background.' 83 | } 84 | 85 | ### 86 | # MAIN 87 | ### 88 | [[ ($# -eq 0) || ($# -gt 2) ]] && usage 89 | port='' 90 | [[ $# -eq 2 ]] && port=$2 91 | 92 | if [[ $1 == "stop" ]]; then 93 | shut_down 94 | elif [[ $1 == "restart" ]]; then 95 | shut_down 96 | start_up $port 97 | elif [[ $1 == "start" ]]; then 98 | if ! start_up $port; then 99 | shut_down 100 | fi 101 | else 102 | usage 103 | fi 104 | -------------------------------------------------------------------------------- /develop/fabfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/fabfile.pyc -------------------------------------------------------------------------------- /develop/output/css/ie/html5shiv.js: -------------------------------------------------------------------------------- 1 | /* 2 | HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); 5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; 6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| 7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); 8 | for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/css/images/dark-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/css/images/dark-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/css/images/dark-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/css/images/light-bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/css/images/light-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/css/images/light-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/css/images/light-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/css/images/overlay.png -------------------------------------------------------------------------------- /develop/output/css/style-mobile.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body { 10 | min-width: 320px; 11 | } 12 | 13 | h2 { 14 | font-size: 1.25em; 15 | letter-spacing: 0.1em; 16 | } 17 | 18 | h3 { 19 | font-size: 1em; 20 | letter-spacing: 0.025em; 21 | } 22 | 23 | p { 24 | text-align: justify; 25 | } 26 | 27 | header { 28 | text-align: center; 29 | } 30 | 31 | header.major { 32 | padding-bottom: 0; 33 | } 34 | 35 | header.special { 36 | margin-bottom: 3em; 37 | padding-left: 1.5em; 38 | padding-right: 1.5em; 39 | } 40 | 41 | header.special:before, header.special:after { 42 | width: 38%; 43 | } 44 | 45 | header.special .icon { 46 | font-size: 0.75em; 47 | top: 1.5em; 48 | } 49 | 50 | header p { 51 | text-align: center; 52 | } 53 | 54 | footer.major { 55 | padding-top: 0; 56 | } 57 | 58 | /* Icon */ 59 | 60 | .icon.circle { 61 | font-size: 1em; 62 | } 63 | 64 | /* Button */ 65 | 66 | .button { 67 | max-width: 20em; 68 | width: 100%; 69 | } 70 | 71 | .button.fit { 72 | width: auto; 73 | } 74 | 75 | /* Lists */ 76 | 77 | ul.icons li { 78 | padding-left: 0.25em; 79 | } 80 | 81 | ul.feature-icons li .icon { 82 | width: 1.1em; 83 | } 84 | 85 | ul.buttons { 86 | text-align: center; 87 | } 88 | 89 | /* Wrapper */ 90 | 91 | .wrapper { 92 | margin-bottom: 2.5em; 93 | padding: 2.25em 1.5em; 94 | } 95 | 96 | .wrapper.special br { 97 | display: none; 98 | } 99 | 100 | .wrapper.style1 { 101 | padding: 0 1.5em; 102 | } 103 | 104 | .wrapper.style2 { 105 | background-size: 10em; 106 | padding: 2.25em 1.5em; 107 | } 108 | 109 | .wrapper.style4 { 110 | background-size: 10em; 111 | padding: 1.5em 1.5em 3em 1.5em; 112 | } 113 | 114 | /* Banner */ 115 | 116 | #banner { 117 | background-size: 10em, 10em, auto, cover; 118 | padding: 6em 0; 119 | } 120 | 121 | #banner .inner { 122 | background: none; 123 | display: block; 124 | padding: 0 1.5em; 125 | } 126 | 127 | #banner .inner header h2 { 128 | font-size: 1.5em; 129 | } 130 | 131 | #banner .inner p { 132 | text-align: center; 133 | } 134 | 135 | #banner .inner br { 136 | display: none; 137 | } 138 | 139 | /* Main */ 140 | 141 | #main { 142 | background-size: 10em; 143 | padding: 3.5em 0 2.5em 0; 144 | } 145 | 146 | body.index #main { 147 | padding: 2.5em 0 0 0; 148 | } 149 | 150 | body.contact #main { 151 | padding-bottom: 0; 152 | } 153 | 154 | /* CTA */ 155 | 156 | #cta { 157 | background-size: 10em, 10em, auto, cover; 158 | padding: 3em 1.5em; 159 | } 160 | 161 | /* Footer */ 162 | 163 | #footer { 164 | padding: 3em 1.5em; 165 | } -------------------------------------------------------------------------------- /develop/output/css/style-narrow.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.5em; 13 | } 14 | 15 | header br { 16 | display: none; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1em; 21 | } 22 | 23 | header.special { 24 | padding-left: 2.5em; 25 | padding-right: 2.5em; 26 | } 27 | 28 | footer.major { 29 | padding-top: 1.5em; 30 | } 31 | 32 | /* Wrapper */ 33 | 34 | .wrapper { 35 | margin-bottom: 3em; 36 | padding: 3em 2.5em; 37 | } 38 | 39 | .wrapper.special br { 40 | display: none; 41 | } 42 | 43 | .wrapper.style1 { 44 | padding: 0 2.5em; 45 | } 46 | 47 | .wrapper.style2 { 48 | background-size: 15em; 49 | } 50 | 51 | .wrapper.style4 { 52 | padding: 2.5em; 53 | } 54 | 55 | /* Banner */ 56 | 57 | #banner { 58 | background-size: 15em, 15em, auto, cover; 59 | } 60 | 61 | /* Main */ 62 | 63 | #main { 64 | background-size: 15em; 65 | } 66 | 67 | /* CTA */ 68 | 69 | #cta { 70 | background-size: 15em, 15em, auto, cover; 71 | padding: 3em; 72 | } -------------------------------------------------------------------------------- /develop/output/css/style-narrower.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | header.major { 10 | padding-bottom: 0.25em; 11 | } 12 | 13 | header.special { 14 | margin-bottom: 4em; 15 | padding-top: 5em; 16 | } 17 | 18 | header.special:before, header.special:after { 19 | width: 40%; 20 | } 21 | 22 | header.special h2 + p { 23 | padding-top: 1.25em; 24 | } 25 | 26 | section { 27 | margin: 1em 0 1em 0; 28 | } 29 | 30 | section:first-child { 31 | margin-top: 0; 32 | } 33 | 34 | /* Button */ 35 | 36 | .button.small { 37 | font-size: 0.8em; 38 | min-width: 18em; 39 | padding: 0.75em 0; 40 | } 41 | 42 | /* Lists */ 43 | 44 | ul.feature-icons { 45 | margin: 0; 46 | } 47 | 48 | ul.feature-icons li { 49 | display: inline-block; 50 | float: none; 51 | width: auto; 52 | } 53 | 54 | ul.feature-icons li .icon { 55 | font-size: 4em; 56 | width: 1.25em; 57 | } 58 | 59 | ul.buttons li { 60 | display: block; 61 | padding: 1em 0 0 0; 62 | } 63 | 64 | /* Header */ 65 | 66 | #header { 67 | display: none; 68 | } 69 | 70 | /* Banner */ 71 | 72 | #banner { 73 | margin: 0; 74 | } 75 | 76 | /* Wrapper */ 77 | 78 | .wrapper.special-alt { 79 | text-align: center; 80 | } 81 | 82 | .wrapper.style4 { 83 | padding-bottom: 3em; 84 | } 85 | 86 | /* Main */ 87 | 88 | #main { 89 | padding: 5em 0; 90 | } 91 | 92 | #main .sidebar { 93 | border-top: solid 1px rgba(124, 128, 129, 0.1); 94 | padding-top: 3em; 95 | } 96 | 97 | #main .sidebar section { 98 | border-top: 0; 99 | padding-top: 0; 100 | } 101 | 102 | body.index #main { 103 | padding-top: 4.5em; 104 | } 105 | 106 | /* CTA */ 107 | 108 | #cta { 109 | margin: 0; 110 | } 111 | 112 | /* Footer */ 113 | 114 | #footer { 115 | padding: 4em 1.5em; 116 | } -------------------------------------------------------------------------------- /develop/output/css/style-normal.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.65em; 13 | } 14 | 15 | h1, h2, h3, h4, h5, h6 { 16 | line-height: 1.5em; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1.5em; 21 | } 22 | 23 | footer.major { 24 | padding-top: 2em; 25 | } 26 | 27 | /* Wrapper */ 28 | 29 | .wrapper { 30 | margin-bottom: 4em; 31 | padding: 4em 3em; 32 | } 33 | 34 | .wrapper.style4 { 35 | padding: 3em; 36 | } 37 | 38 | /* Header */ 39 | 40 | #header nav ul li { 41 | margin-left: 1em; 42 | } 43 | 44 | /* Banner */ 45 | 46 | #banner { 47 | background-attachment: scroll; 48 | } 49 | 50 | /* CTA */ 51 | 52 | #cta { 53 | padding: 4em; 54 | background-attachment: scroll; 55 | } 56 | 57 | /* Footer */ 58 | 59 | #footer { 60 | padding: 4em; 61 | } -------------------------------------------------------------------------------- /develop/output/css/style-noscript.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Banner */ 8 | 9 | #banner .inner { 10 | opacity: 1.0; 11 | } -------------------------------------------------------------------------------- /develop/output/css/style-wide.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 14pt; 11 | } 12 | 13 | header.special { 14 | padding-top: 5.5em; 15 | margin-bottom: 4em; 16 | } -------------------------------------------------------------------------------- /develop/output/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /develop/output/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /develop/output/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /develop/output/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /develop/output/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/.DS_Store -------------------------------------------------------------------------------- /develop/output/images/CNN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/CNN.pdf -------------------------------------------------------------------------------- /develop/output/images/CNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/CNN.png -------------------------------------------------------------------------------- /develop/output/images/above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/above.png -------------------------------------------------------------------------------- /develop/output/images/anna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/anna.jpg -------------------------------------------------------------------------------- /develop/output/images/anna_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/anna_s.jpg -------------------------------------------------------------------------------- /develop/output/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/banner.jpg -------------------------------------------------------------------------------- /develop/output/images/banner_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/banner_light.jpg -------------------------------------------------------------------------------- /develop/output/images/banner_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/banner_old.jpg -------------------------------------------------------------------------------- /develop/output/images/below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/below.png -------------------------------------------------------------------------------- /develop/output/images/bias_variance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/bias_variance.png -------------------------------------------------------------------------------- /develop/output/images/decision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/decision.png -------------------------------------------------------------------------------- /develop/output/images/hypothesis_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/hypothesis_space.png -------------------------------------------------------------------------------- /develop/output/images/loss.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/loss.pdf -------------------------------------------------------------------------------- /develop/output/images/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/loss.png -------------------------------------------------------------------------------- /develop/output/images/matt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/matt.png -------------------------------------------------------------------------------- /develop/output/images/matt_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/matt_s.jpg -------------------------------------------------------------------------------- /develop/output/images/miles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/miles.jpg -------------------------------------------------------------------------------- /develop/output/images/miles_fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/miles_fi.jpg -------------------------------------------------------------------------------- /develop/output/images/miles_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/miles_s.jpg -------------------------------------------------------------------------------- /develop/output/images/phi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/phi.png -------------------------------------------------------------------------------- /develop/output/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/pic01.jpg -------------------------------------------------------------------------------- /develop/output/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/pic02.jpg -------------------------------------------------------------------------------- /develop/output/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/pic03.jpg -------------------------------------------------------------------------------- /develop/output/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/pic04.jpg -------------------------------------------------------------------------------- /develop/output/images/roger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/roger.jpg -------------------------------------------------------------------------------- /develop/output/images/roger_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/roger_s.jpg -------------------------------------------------------------------------------- /develop/output/images/shattered_points_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/shattered_points_2d.png -------------------------------------------------------------------------------- /develop/output/images/windings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/windings.pdf -------------------------------------------------------------------------------- /develop/output/images/windings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/images/windings.png -------------------------------------------------------------------------------- /develop/output/tag/condensed-matter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/condensed-matter.html -------------------------------------------------------------------------------- /develop/output/tag/conference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/conference.html -------------------------------------------------------------------------------- /develop/output/tag/deep-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/deep-learning.html -------------------------------------------------------------------------------- /develop/output/tag/kernel-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/kernel-learning.html -------------------------------------------------------------------------------- /develop/output/tag/machine-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/machine-learning.html -------------------------------------------------------------------------------- /develop/output/tag/machine-learning2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/machine-learning2.html -------------------------------------------------------------------------------- /develop/output/tag/machine-learning3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/machine-learning3.html -------------------------------------------------------------------------------- /develop/output/tag/machine-learning4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/machine-learning4.html -------------------------------------------------------------------------------- /develop/output/tag/many-body-physics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/many-body-physics.html -------------------------------------------------------------------------------- /develop/output/tag/neural-nets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/neural-nets.html -------------------------------------------------------------------------------- /develop/output/tag/neural-nets2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/neural-nets2.html -------------------------------------------------------------------------------- /develop/output/tag/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/program.html -------------------------------------------------------------------------------- /develop/output/tag/quantum-information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/quantum-information.html -------------------------------------------------------------------------------- /develop/output/tag/quantum-many-body-physics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/quantum-many-body-physics.html -------------------------------------------------------------------------------- /develop/output/tag/quantum-mechanics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/quantum-mechanics.html -------------------------------------------------------------------------------- /develop/output/tag/quantum-mechanics2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/quantum-mechanics2.html -------------------------------------------------------------------------------- /develop/output/tag/quantum-mechanics3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/quantum-mechanics3.html -------------------------------------------------------------------------------- /develop/output/tag/quantum-mechanics4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/quantum-mechanics4.html -------------------------------------------------------------------------------- /develop/output/tag/quantum-physics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/quantum-physics.html -------------------------------------------------------------------------------- /develop/output/tag/quantum-technology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/quantum-technology.html -------------------------------------------------------------------------------- /develop/output/tag/supervised-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/supervised-learning.html -------------------------------------------------------------------------------- /develop/output/tag/support-vector-machines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/support-vector-machines.html -------------------------------------------------------------------------------- /develop/output/tag/tensor-networks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/tensor-networks.html -------------------------------------------------------------------------------- /develop/output/tag/theory-of-deep-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/theory-of-deep-learning.html -------------------------------------------------------------------------------- /develop/output/tag/topological-phase-transitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/topological-phase-transitions.html -------------------------------------------------------------------------------- /develop/output/tag/workshop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/tag/workshop.html -------------------------------------------------------------------------------- /develop/output/theme/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/.DS_Store -------------------------------------------------------------------------------- /develop/output/theme/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/css/.DS_Store -------------------------------------------------------------------------------- /develop/output/theme/css/ie/html5shiv.js: -------------------------------------------------------------------------------- 1 | /* 2 | HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); 5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; 6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| 7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); 8 | for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/theme/css/images/dark-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/theme/css/images/dark-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/theme/css/images/dark-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/theme/css/images/light-bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/theme/css/images/light-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/theme/css/images/light-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/theme/css/images/light-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/output/theme/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/css/images/overlay.png -------------------------------------------------------------------------------- /develop/output/theme/css/style-mobile.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body { 10 | min-width: 320px; 11 | } 12 | 13 | h2 { 14 | font-size: 1.25em; 15 | letter-spacing: 0.1em; 16 | } 17 | 18 | h3 { 19 | font-size: 1em; 20 | letter-spacing: 0.025em; 21 | } 22 | 23 | p { 24 | text-align: justify; 25 | } 26 | 27 | header { 28 | text-align: center; 29 | } 30 | 31 | header.major { 32 | padding-bottom: 0; 33 | } 34 | 35 | header.special { 36 | margin-bottom: 3em; 37 | padding-left: 1.5em; 38 | padding-right: 1.5em; 39 | } 40 | 41 | header.special:before, header.special:after { 42 | width: 38%; 43 | } 44 | 45 | header.special .icon { 46 | font-size: 0.75em; 47 | top: 1.5em; 48 | } 49 | 50 | header p { 51 | text-align: center; 52 | } 53 | 54 | footer.major { 55 | padding-top: 0; 56 | } 57 | 58 | /* Icon */ 59 | 60 | .icon.circle { 61 | font-size: 1em; 62 | } 63 | 64 | /* Button */ 65 | 66 | .button { 67 | max-width: 20em; 68 | width: 100%; 69 | } 70 | 71 | .button.fit { 72 | width: auto; 73 | } 74 | 75 | /* Lists */ 76 | 77 | ul.icons li { 78 | padding-left: 0.25em; 79 | } 80 | 81 | ul.feature-icons li .icon { 82 | width: 1.1em; 83 | } 84 | 85 | ul.buttons { 86 | text-align: center; 87 | } 88 | 89 | /* Wrapper */ 90 | 91 | .wrapper { 92 | margin-bottom: 2.5em; 93 | padding: 2.25em 1.5em; 94 | } 95 | 96 | .wrapper.special br { 97 | display: none; 98 | } 99 | 100 | .wrapper.style1 { 101 | padding: 0 1.5em; 102 | } 103 | 104 | .wrapper.style2 { 105 | background-size: 10em; 106 | padding: 2.25em 1.5em; 107 | } 108 | 109 | .wrapper.style4 { 110 | background-size: 10em; 111 | padding: 1.5em 1.5em 3em 1.5em; 112 | } 113 | 114 | /* Banner */ 115 | 116 | #banner { 117 | background-size: 10em, 10em, auto, cover; 118 | padding: 6em 0; 119 | } 120 | 121 | #banner .inner { 122 | background: none; 123 | display: block; 124 | padding: 0 1.5em; 125 | } 126 | 127 | #banner .inner header h2 { 128 | font-size: 1.5em; 129 | } 130 | 131 | #banner .inner p { 132 | text-align: center; 133 | } 134 | 135 | #banner .inner br { 136 | display: none; 137 | } 138 | 139 | /* Main */ 140 | 141 | #main { 142 | background-size: 10em; 143 | padding: 3.5em 0 2.5em 0; 144 | } 145 | 146 | body.index #main { 147 | padding: 2.5em 0 0 0; 148 | } 149 | 150 | body.contact #main { 151 | padding-bottom: 0; 152 | } 153 | 154 | /* CTA */ 155 | 156 | #cta { 157 | background-size: 10em, 10em, auto, cover; 158 | padding: 3em 1.5em; 159 | } 160 | 161 | /* Footer */ 162 | 163 | #footer { 164 | padding: 3em 1.5em; 165 | } -------------------------------------------------------------------------------- /develop/output/theme/css/style-narrow.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.5em; 13 | } 14 | 15 | header br { 16 | display: none; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1em; 21 | } 22 | 23 | header.special { 24 | padding-left: 2.5em; 25 | padding-right: 2.5em; 26 | } 27 | 28 | footer.major { 29 | padding-top: 1.5em; 30 | } 31 | 32 | /* Wrapper */ 33 | 34 | .wrapper { 35 | margin-bottom: 3em; 36 | padding: 3em 2.5em; 37 | } 38 | 39 | .wrapper.special br { 40 | display: none; 41 | } 42 | 43 | .wrapper.style1 { 44 | padding: 0 2.5em; 45 | } 46 | 47 | .wrapper.style2 { 48 | background-size: 15em; 49 | } 50 | 51 | .wrapper.style4 { 52 | padding: 2.5em; 53 | } 54 | 55 | /* Banner */ 56 | 57 | #banner { 58 | background-size: 15em, 15em, auto, cover; 59 | } 60 | 61 | /* Main */ 62 | 63 | #main { 64 | background-size: 15em; 65 | } 66 | 67 | /* CTA */ 68 | 69 | #cta { 70 | background-size: 15em, 15em, auto, cover; 71 | padding: 3em; 72 | } -------------------------------------------------------------------------------- /develop/output/theme/css/style-narrower.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | header.major { 10 | padding-bottom: 0.25em; 11 | } 12 | 13 | header.special { 14 | margin-bottom: 4em; 15 | padding-top: 5em; 16 | } 17 | 18 | header.special:before, header.special:after { 19 | width: 40%; 20 | } 21 | 22 | header.special h2 + p { 23 | padding-top: 1.25em; 24 | } 25 | 26 | section { 27 | margin: 1em 0 1em 0; 28 | } 29 | 30 | section:first-child { 31 | margin-top: 0; 32 | } 33 | 34 | /* Button */ 35 | 36 | .button.small { 37 | font-size: 0.8em; 38 | min-width: 18em; 39 | padding: 0.75em 0; 40 | } 41 | 42 | /* Lists */ 43 | 44 | ul.feature-icons { 45 | margin: 0; 46 | } 47 | 48 | ul.feature-icons li { 49 | display: inline-block; 50 | float: none; 51 | width: auto; 52 | } 53 | 54 | ul.feature-icons li .icon { 55 | font-size: 4em; 56 | width: 1.25em; 57 | } 58 | 59 | ul.buttons li { 60 | display: block; 61 | padding: 1em 0 0 0; 62 | } 63 | 64 | /* Header */ 65 | 66 | #header { 67 | display: none; 68 | } 69 | 70 | /* Banner */ 71 | 72 | #banner { 73 | margin: 0; 74 | } 75 | 76 | /* Wrapper */ 77 | 78 | .wrapper.special-alt { 79 | text-align: center; 80 | } 81 | 82 | .wrapper.style4 { 83 | padding-bottom: 3em; 84 | } 85 | 86 | /* Main */ 87 | 88 | #main { 89 | padding: 5em 0; 90 | } 91 | 92 | #main .sidebar { 93 | border-top: solid 1px rgba(124, 128, 129, 0.1); 94 | padding-top: 3em; 95 | } 96 | 97 | #main .sidebar section { 98 | border-top: 0; 99 | padding-top: 0; 100 | } 101 | 102 | body.index #main { 103 | padding-top: 4.5em; 104 | } 105 | 106 | /* CTA */ 107 | 108 | #cta { 109 | margin: 0; 110 | } 111 | 112 | /* Footer */ 113 | 114 | #footer { 115 | padding: 4em 1.5em; 116 | } -------------------------------------------------------------------------------- /develop/output/theme/css/style-normal.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.65em; 13 | } 14 | 15 | h1, h2, h3, h4, h5, h6 { 16 | line-height: 1.5em; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1.5em; 21 | } 22 | 23 | footer.major { 24 | padding-top: 2em; 25 | } 26 | 27 | /* Wrapper */ 28 | 29 | .wrapper { 30 | margin-bottom: 4em; 31 | padding: 4em 3em; 32 | } 33 | 34 | .wrapper.style4 { 35 | padding: 3em; 36 | } 37 | 38 | /* Header */ 39 | 40 | #header nav ul li { 41 | margin-left: 1em; 42 | } 43 | 44 | /* Banner */ 45 | 46 | #banner { 47 | background-attachment: scroll; 48 | } 49 | 50 | /* CTA */ 51 | 52 | #cta { 53 | padding: 4em; 54 | background-attachment: scroll; 55 | } 56 | 57 | /* Footer */ 58 | 59 | #footer { 60 | padding: 4em; 61 | } -------------------------------------------------------------------------------- /develop/output/theme/css/style-noscript.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Banner */ 8 | 9 | #banner .inner { 10 | opacity: 1.0; 11 | } -------------------------------------------------------------------------------- /develop/output/theme/css/style-wide.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 14pt; 11 | } 12 | 13 | header.special { 14 | padding-top: 5.5em; 15 | margin-bottom: 4em; 16 | } -------------------------------------------------------------------------------- /develop/output/theme/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /develop/output/theme/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /develop/output/theme/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /develop/output/theme/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /develop/output/theme/images/anna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/anna.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/anna_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/anna_s.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/banner.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/banner_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/banner_light.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/banner_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/banner_old.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/matt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/matt.png -------------------------------------------------------------------------------- /develop/output/theme/images/matt_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/matt_s.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/miles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/miles.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/miles_fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/miles_fi.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/miles_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/miles_s.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/pic01.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/pic02.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/pic03.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/pic04.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/roger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/roger.jpg -------------------------------------------------------------------------------- /develop/output/theme/images/roger_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/output/theme/images/roger_s.jpg -------------------------------------------------------------------------------- /develop/pelicanconf.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- # 3 | from __future__ import unicode_literals 4 | 5 | import sys 6 | sys.path.append('.') 7 | 8 | 9 | LOAD_CONTENT_CACHE = False 10 | 11 | AUTHOR = u'PhysicsML' 12 | SITENAME = u'〈 physics | machine learning 〉' 13 | SITEURL = 'https://physicsml.github.io' 14 | 15 | TIMEZONE = 'America/New_York' 16 | DEFAULT_LANG = u'en' 17 | 18 | from utils import filters 19 | JINJA_FILTERS = { 'sidebar': filters.sidebar } 20 | 21 | PATH = 'content' 22 | 23 | #THEME = "themes/custom_fresh" 24 | THEME = "themes/twenty" 25 | PLUGIN_PATHS=["./plugins"] 26 | PLUGINS = ["render_math.math"] 27 | 28 | # Feed generation is usually not desired when developing 29 | FEED_ALL_ATOM = None 30 | CATEGORY_FEED_ATOM = None 31 | TRANSLATION_FEED_ATOM = None 32 | AUTHOR_FEED_ATOM = None 33 | AUTHOR_FEED_RSS = None 34 | 35 | # Blogroll 36 | #LINKS = (('Pelican', 'http://getpelican.com/'), 37 | # ('Python.org', 'http://python.org/'), 38 | # ('Jinja2', 'http://jinja.pocoo.org/'), 39 | # ('You can modify those links in your config file', '#'),) 40 | # 41 | ## Social widget 42 | #SOCIAL = (('You can add links in your config file', '#'), 43 | # ('Another social link', '#'),) 44 | 45 | DEFAULT_PAGINATION = 3 46 | POST_LIMIT = 3 47 | 48 | # Show most recent posts first 49 | NEWEST_FIRST_ARCHIVES = True 50 | 51 | # Uncomment following line if you want document-relative URLs when developing 52 | RELATIVE_URLS = True 53 | 54 | MENUITEMS = [("News", "/category/news.html"), ("Blog", "/category/articles.html"), ("Papers", "/pages/papers.html")] 55 | #MENUITEMS = [("News", "/news.html"), ("Blog", "/articles.html"), ("Papers", "/papers.html")] 56 | 57 | #TEMPLATE_PAGES = {'/themes/twenty/templates/page.html' : 'papers.html' } 58 | 59 | # Formatting for urls 60 | ARTICLE_PATHS = ['Articles', 'News'] 61 | ARTICLE_URL = "blog/{slug}.html" 62 | ARTICLE_SAVE_AS = "blog/{slug}.html" 63 | 64 | #ARCHIVES_URL = "blog" 65 | #ARCHIVES_SAVE_AS = "blog/index.html" 66 | 67 | PAGE_PATHS = ['Pages'] 68 | PAGE_URL = 'pages/{slug}.html' 69 | PAGE_SAVE_AS = 'pages/{slug}.html' 70 | 71 | #CATEGORY_URL = "category/{slug}/" 72 | #CATEGORY_SAVE_AS = "category/{slug}/index.html" 73 | 74 | TAG_URL = "tag/{slug}/" 75 | TAG_SAVE_AS = "tag/{slug}.html" 76 | 77 | USE_FOLDER_AS_CATEGORY = True 78 | 79 | 80 | #DISPLAY_PAGES_ON_MENU = True 81 | #DISPLAY_CATEGORIES_ON_MENU = True 82 | 83 | # Generate yearly archive 84 | #YEAR_ARCHIVE_SAVE_AS = 'blog/{date:%Y}/index.html' 85 | 86 | # Formatting for dates 87 | DEFAULT_DATE_FORMAT = ('%d-%m-%Y') 88 | 89 | STATIC_PATHS = ['images', 90 | 'fonts', 91 | 'css', 92 | 'js', 93 | ] 94 | 95 | import datetime 96 | now = datetime.datetime.utcnow() 97 | YEAR = now.strftime("%Y") 98 | -------------------------------------------------------------------------------- /develop/pelicanconf.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/pelicanconf.pyc -------------------------------------------------------------------------------- /develop/plugins/render_math/__init__.py: -------------------------------------------------------------------------------- 1 | from .math import * 2 | -------------------------------------------------------------------------------- /develop/plugins/render_math/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/plugins/render_math/__init__.pyc -------------------------------------------------------------------------------- /develop/plugins/render_math/math.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/plugins/render_math/math.pyc -------------------------------------------------------------------------------- /develop/plugins/render_math/mathjax_script_template: -------------------------------------------------------------------------------- 1 | if (!document.getElementById('mathjaxscript_pelican_#%@#$@#')) {{ 2 | var align = "{align}", 3 | indent = "{indent}", 4 | linebreak = "{linebreak_automatic}"; 5 | 6 | if ({responsive}) {{ 7 | align = (screen.width < {responsive_break}) ? "left" : align; 8 | indent = (screen.width < {responsive_break}) ? "0em" : indent; 9 | linebreak = (screen.width < {responsive_break}) ? 'true' : linebreak; 10 | }} 11 | 12 | var mathjaxscript = document.createElement('script'); 13 | mathjaxscript.id = 'mathjaxscript_pelican_#%@#$@#'; 14 | mathjaxscript.type = 'text/javascript'; 15 | mathjaxscript.src = {source}; 16 | mathjaxscript[(window.opera ? "innerHTML" : "text")] = 17 | "MathJax.Hub.Config({{" + 18 | " config: ['MMLorHTML.js']," + 19 | " TeX: {{ extensions: ['AMSmath.js','AMSsymbols.js','noErrors.js','noUndefined.js'{tex_extensions}], equationNumbers: {{ autoNumber: 'AMS' }} }}," + 20 | " jax: ['input/TeX','input/MathML','output/HTML-CSS']," + 21 | " extensions: ['tex2jax.js','mml2jax.js','MathMenu.js','MathZoom.js']," + 22 | " displayAlign: '"+ align +"'," + 23 | " displayIndent: '"+ indent +"'," + 24 | " showMathMenu: {show_menu}," + 25 | " messageStyle: '{message_style}'," + 26 | " tex2jax: {{ " + 27 | " inlineMath: [ ['\\\\(','\\\\)'] ], " + 28 | " displayMath: [ ['$$','$$'] ]," + 29 | " processEscapes: {process_escapes}," + 30 | " preview: '{latex_preview}'," + 31 | " }}, " + 32 | " 'HTML-CSS': {{ " + 33 | " styles: {{ '.MathJax_Display, .MathJax .mo, .MathJax .mi, .MathJax .mn': {{color: '{color} ! important'}} }}," + 34 | " linebreaks: {{ automatic: "+ linebreak +", width: '90% container' }}," + 35 | " }}, " + 36 | "}}); " + 37 | "if ('{mathjax_font}' !== 'default') {{" + 38 | "MathJax.Hub.Register.StartupHook('HTML-CSS Jax Ready',function () {{" + 39 | "var VARIANT = MathJax.OutputJax['HTML-CSS'].FONTDATA.VARIANT;" + 40 | "VARIANT['normal'].fonts.unshift('MathJax_{mathjax_font}');" + 41 | "VARIANT['bold'].fonts.unshift('MathJax_{mathjax_font}-bold');" + 42 | "VARIANT['italic'].fonts.unshift('MathJax_{mathjax_font}-italic');" + 43 | "VARIANT['-tex-mathit'].fonts.unshift('MathJax_{mathjax_font}-italic');" + 44 | "}});" + 45 | "MathJax.Hub.Register.StartupHook('SVG Jax Ready',function () {{" + 46 | "var VARIANT = MathJax.OutputJax.SVG.FONTDATA.VARIANT;" + 47 | "VARIANT['normal'].fonts.unshift('MathJax_{mathjax_font}');" + 48 | "VARIANT['bold'].fonts.unshift('MathJax_{mathjax_font}-bold');" + 49 | "VARIANT['italic'].fonts.unshift('MathJax_{mathjax_font}-italic');" + 50 | "VARIANT['-tex-mathit'].fonts.unshift('MathJax_{mathjax_font}-italic');" + 51 | "}});" + 52 | "}}"; 53 | (document.body || document.getElementsByTagName('head')[0]).appendChild(mathjaxscript); 54 | }} 55 | -------------------------------------------------------------------------------- /develop/plugins/render_math/pelican_mathjax_markdown_extension.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/plugins/render_math/pelican_mathjax_markdown_extension.pyc -------------------------------------------------------------------------------- /develop/themes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/.DS_Store -------------------------------------------------------------------------------- /develop/themes/custom_fresh/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/custom_fresh/.DS_Store -------------------------------------------------------------------------------- /develop/themes/custom_fresh/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013, Jui-Shan Liang 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, 5 | are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright notice, this 8 | list of conditions and the following disclaimer. 9 | 10 | * Redistributions in binary form must reproduce the above copyright notice, this 11 | list of conditions and the following disclaimer in the documentation and/or 12 | other materials provided with the distribution. 13 | 14 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 15 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 16 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 17 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 18 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 19 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 20 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 21 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 23 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- /develop/themes/custom_fresh/static/css/.sass-cache/19833d875f17ea32e3f84d75b3bd9b5355c22ca2/main.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/custom_fresh/static/css/.sass-cache/19833d875f17ea32e3f84d75b3bd9b5355c22ca2/main.scssc -------------------------------------------------------------------------------- /develop/themes/custom_fresh/static/css/pygment.css: -------------------------------------------------------------------------------- 1 | .hll { 2 | background-color:#eee; 3 | } 4 | .c { 5 | color:#408090; 6 | font-style:italic; 7 | } 8 | .err { 9 | border:1px solid #FF0000; 10 | } 11 | .k { 12 | color:#007020; 13 | font-weight:bold; 14 | } 15 | .o { 16 | color:#666666; 17 | } 18 | .cm { 19 | color:#408090; 20 | font-style:italic; 21 | } 22 | .cp { 23 | color:#007020; 24 | } 25 | .c1 { 26 | color:#408090; 27 | font-style:italic; 28 | } 29 | .cs { 30 | background-color:#FFF0F0; 31 | color:#408090; 32 | } 33 | .gd { 34 | color:#A00000; 35 | } 36 | .ge { 37 | font-style:italic; 38 | } 39 | .gr { 40 | color:#FF0000; 41 | } 42 | .gh { 43 | color:#000080; 44 | font-weight:bold; 45 | } 46 | .gi { 47 | color:#00A000; 48 | } 49 | .go { 50 | color:#303030; 51 | } 52 | .gp { 53 | color:#C65D09; 54 | font-weight:bold; 55 | } 56 | .gs { 57 | font-weight:bold; 58 | } 59 | .gu { 60 | color:#800080; 61 | font-weight:bold; 62 | } 63 | .gt { 64 | color:#0040D0; 65 | } 66 | .kc { 67 | color:#007020; 68 | font-weight:bold; 69 | } 70 | .kd { 71 | color:#007020; 72 | font-weight:bold; 73 | } 74 | .kn { 75 | color:#007020; 76 | font-weight:bold; 77 | } 78 | .kp { 79 | color:#007020; 80 | } 81 | .kr { 82 | color:#007020; 83 | font-weight:bold; 84 | } 85 | .kt { 86 | color:#902000; 87 | } 88 | .m { 89 | color:#208050; 90 | } 91 | .s { 92 | color:#4070A0; 93 | } 94 | .na { 95 | color:#4070A0; 96 | } 97 | .nb { 98 | color:#007020; 99 | } 100 | .nc { 101 | color:#0E84B5; 102 | font-weight:bold; 103 | } 104 | .no { 105 | color:#60ADD5; 106 | } 107 | .nd { 108 | color:#555555; 109 | font-weight:bold; 110 | } 111 | .ni { 112 | color:#D55537; 113 | font-weight:bold; 114 | } 115 | .ne { 116 | color:#007020; 117 | } 118 | .nf { 119 | color:#06287E; 120 | } 121 | .nl { 122 | color:#002070; 123 | font-weight:bold; 124 | } 125 | .nn { 126 | color:#0E84B5; 127 | font-weight:bold; 128 | } 129 | .nt { 130 | color:#062873; 131 | font-weight:bold; 132 | } 133 | .nv { 134 | color:#BB60D5; 135 | } 136 | .ow { 137 | color:#007020; 138 | font-weight:bold; 139 | } 140 | .w { 141 | color:#BBBBBB; 142 | } 143 | .mf { 144 | color:#208050; 145 | } 146 | .mh { 147 | color:#208050; 148 | } 149 | .mi { 150 | color:#208050; 151 | } 152 | .mo { 153 | color:#208050; 154 | } 155 | .sb { 156 | color:#4070A0; 157 | } 158 | .sc { 159 | color:#4070A0; 160 | } 161 | .sd { 162 | color:#4070A0; 163 | font-style:italic; 164 | } 165 | .s2 { 166 | color:#4070A0; 167 | } 168 | .se { 169 | color:#4070A0; 170 | font-weight:bold; 171 | } 172 | .sh { 173 | color:#4070A0; 174 | } 175 | .si { 176 | color:#70A0D0; 177 | font-style:italic; 178 | } 179 | .sx { 180 | color:#C65D09; 181 | } 182 | .sr { 183 | color:#235388; 184 | } 185 | .s1 { 186 | color:#4070A0; 187 | } 188 | .ss { 189 | color:#517918; 190 | } 191 | .bp { 192 | color:#007020; 193 | } 194 | .vc { 195 | color:#BB60D5; 196 | } 197 | .vg { 198 | color:#BB60D5; 199 | } 200 | .vi { 201 | color:#BB60D5; 202 | } 203 | .il { 204 | color:#208050; 205 | } 206 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/analytics.html: -------------------------------------------------------------------------------- 1 | {% if GOOGLE_ANALYTICS %} 2 | 12 | {% endif %} -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/archives.html: -------------------------------------------------------------------------------- 1 | {% extends "index.html" %} 2 | {% block title %}Archives for {{ SITENAME }}{% endblock %} 3 | {% block ogtitle %}Archives for {{ SITENAME }}{% endblock %} 4 | {% block ogurl %}{{ SITEURL }}/archives.html{%endblock%} 5 | {% block canonicalurl %}{{ SITEURL }}/archives.html{%endblock%} 6 | 7 | {% block content %} 8 |
9 |
10 |

{% block content_title %}Archives for {{ SITENAME }}{% endblock %}

11 | 12 | {% for article in dates %} 13 | {% set this_year = article.date.strftime('%Y') %} 14 | {% set this_month = article.date.strftime('%b') %} 15 | {% set this_day = article.date.strftime('%d') %} 16 | {% if this_year != prev_year %} 17 |
18 |
{{ this_year }}
19 |
20 | {% endif %} 21 | {% if this_year != prev_year or this_month != prev_month %} 22 |
23 |
{{ this_month }}
24 |
25 | {% endif %} 26 |
27 | {% if this_month != prev_month or this_day != prev_day %} 28 |
29 | {{ this_day }} 30 |
31 | {% endif %} 32 | 35 |
36 | {% set prev_year = this_year %} 37 | {% set prev_month = this_month %} 38 | {% set prev_day = this_day %} 39 | {% endfor %} 40 |
41 |
42 | {% endblock %} 43 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/article.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block title %}{{ article.title|striptags }} | {{ SITENAME }}{% endblock %} 4 | {% block ogtitle %}{{ article.title|striptags }}{% endblock %} 5 | {% block ogurl %}{{ SITEURL }}/{{ article.url }}{%endblock%} 6 | {% block ogtype %}article{%endblock%} 7 | {% block canonicalurl %}{{ SITEURL }}/{{ article.url }}{%endblock%} 8 | 9 | {% block content %} 10 |
11 |
12 |
13 |
14 |

15 | {{ article.title}}

17 | {% include 'twitter.html' %} 18 |
19 |
20 | {% include 'article_infos.html' %} 21 | 22 | {% if SHARETHIS_PUB_KEY %} 23 |
24 | 25 | 26 | 27 | 28 |
29 | {% endif %} 30 | 31 | {{ article.content }} 32 | 33 | {% if SHARETHIS_PUB_KEY %} 34 |
35 | 36 | 37 | 38 | 39 |
40 | {% endif %} 41 |
42 | {% if DISQUS_SITENAME %} 43 |
44 |

Comments

45 |
46 | 54 |
55 | {% endif %} 56 | 57 |
58 |
59 |
60 | {% endblock %} 61 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/article_infos.html: -------------------------------------------------------------------------------- 1 |
2 | {% if article.author %} 3 |
4 | by {{ article.author }} 5 |
6 | {% endif %} 7 | 8 | in {{ article.category }} 9 | 10 | on {{ article.date.strftime('%Y-%m-%d') }} 11 | 12 | {% if article.tags %} 13 | | 14 | tags: {% for tag in article.tags %} 15 | {{ tag }}{% if not loop.last %},{% endif %} 16 | {% endfor %} 17 | {% endif %} 18 | 19 | {% if PDF_PROCESSOR %} 20 | | 21 | Get the pdf 22 | {% endif %} 23 | 24 | {% if DISQUS_SITENAME %} 25 | | 26 | comments 27 | {% endif %} 28 | 29 | {% import 'translations.html' as translations with context %} 30 | {{ translations.translations_for(article) }} 31 |
32 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/author.html: -------------------------------------------------------------------------------- 1 | {% extends "index.html" %} 2 | {% block title %}{{ SITENAME }} - {{ author }} | {{ SITENAME }}{% endblock %} 3 | {% block ogtitle %}{{ SITENAME }} - {{ author }}{% endblock %} 4 | {% block ogurl %}{{ SITEURL }}/{{ author.url }}{%endblock%} 5 | {% block canonicalurl %}{{ SITEURL }}/{{ author.url }}{%endblock%} 6 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/categories.html: -------------------------------------------------------------------------------- 1 | {% extends "index.html" %} 2 | {% block title %}Categories for {{ SITENAME }}{% endblock %} 3 | {% block ogtitle %}Categories for {{ SITENAME }}{% endblock %} 4 | {% block ogurl %}{{ SITEURL }}/categories.html{%endblock%} 5 | {% block canonicalurl %}{{ SITEURL }}/categories.html{%endblock%} 6 | 7 | {% block content %} 8 |
9 |
10 |

{% block content_title %}Categories for {{ SITENAME }}{% endblock %}

11 | 12 |
13 | {% for category, articles in categories %} 14 |
{{ category }} ({{ articles|count }})
15 | {% endfor %} 16 |
17 |
18 |
19 | {% endblock %} 20 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/category.html: -------------------------------------------------------------------------------- 1 | {% extends "archives.html" %} 2 | {% block title %}{{ SITENAME }} - {{ category }}{% endblock %} 3 | {% block content_title %}Articles in {{ category }}{% endblock %} 4 | {% block ogtitle %}{{ SITENAME }} - {{ category }}{% endblock %} 5 | {% block ogurl %}{{ SITEURL }}/{{ category.url }}{%endblock%} 6 | {% block canonicalurl %}{{ SITEURL }}/{{ category.url }}{%endblock%} -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/disqus_script.html: -------------------------------------------------------------------------------- 1 | {% if DISQUS_SITENAME %} 2 | 11 | {% endif %} 12 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/github.html: -------------------------------------------------------------------------------- 1 | {% if GITHUB_URL %} 2 | 3 | {% if GITHUB_POSITION != "left" %} 4 | Fork me on GitHub 5 | {% else %} 6 | Fork me on GitHub 7 | {% endif %} 8 | 9 | {% endif %} -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/google_custom_search.html: -------------------------------------------------------------------------------- 1 | {% if GOOGLE_CUSTOM_SEARCH %} 2 | 11 | 14 | {% endif %} -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/page.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block title %}{{ page.title }} | {{ SITENAME }}{% endblock %} 3 | {% block ogtitle %}{{ page.title|striptags }}{% endblock %} 4 | {% block ogurl %}{{ SITEURL }}/{{ page.url }}{%endblock%}%} 5 | {% block canonicalurl %}{{ SITEURL }}/{{ page.url }}{%endblock%} 6 | 7 | {% block content %} 8 |
9 |

{{ page.title }}

10 | {% import 'translations.html' as translations with context %} 11 | {{ translations.translations_for(page) }} 12 | {% if PDF_PROCESSOR %}get 13 | the pdf{% endif %} 14 | {{ page.content }} 15 |
16 | {% endblock %} 17 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/piwik.html: -------------------------------------------------------------------------------- 1 | {% if PIWIK_URL and PIWIK_SITE_ID %} 2 | 16 | {% endif %} -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/tag.html: -------------------------------------------------------------------------------- 1 | {% extends "archives.html" %} 2 | {% block title %}{{ SITENAME }} - {{ tag }} | {{ SITENAME }}{% endblock %} 3 | {% block content_title %}Articles tagged with "{{ tag }}"{% endblock %} 4 | {% block ogtitle %}{{ SITENAME }} - {{ tag }}{% endblock %} 5 | {% block ogurl %}{{ SITEURL }}/{{ tag.url }}{%endblock%} 6 | {% block canonicalurl %}{{ SITEURL }}/{{ tag.url }}{%endblock%} -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/tags.html: -------------------------------------------------------------------------------- 1 | {% extends "index.html" %} 2 | {% block title %}Tags for {{ SITENAME }}{% endblock %} 3 | {% block ogtitle %}Tags for {{ SITENAME }}{% endblock %} 4 | {% block ogurl %}{{ SITEURL }}/tags.html{%endblock%}%} 5 | {% block canonicalurl %}{{ SITEURL }}/tags.html{%endblock%} 6 | 7 | {% block content %} 8 |
9 |
10 |

{% block content_title %}Tags for {{ SITENAME }}{% endblock %}

11 | 12 |
13 | {% for tag, articles in tags|sort %} 14 |
{{ tag }} ({{ articles|count }})
15 | {% endfor %} 16 |
17 |
18 |
19 | {% endblock %} 20 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/translations.html: -------------------------------------------------------------------------------- 1 | {% macro translations_for(article) %} 2 | {% if article.translations %} 3 | Translations: 4 | {% for translation in article.translations %} 5 | {{ translation.lang }} 6 | {% endfor %} 7 | {% endif %} 8 | {% endmacro %} 9 | -------------------------------------------------------------------------------- /develop/themes/custom_fresh/templates/twitter.html: -------------------------------------------------------------------------------- 1 | {% if TWITTER_USERNAME %} 2 | 3 | {% endif %} -------------------------------------------------------------------------------- /develop/themes/twenty/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/.DS_Store -------------------------------------------------------------------------------- /develop/themes/twenty/.hg_archival.txt: -------------------------------------------------------------------------------- 1 | repo: 6bffbd2a2f4be3b92c86740e9748a45bd333890f 2 | node: 9fc6e07edcd45d5d79161d6b4278605abe02a792 3 | branch: default 4 | latesttag: null 5 | latesttagdistance: 7 6 | changessincelatesttag: 7 7 | -------------------------------------------------------------------------------- /develop/themes/twenty/.hgignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git 3 | -------------------------------------------------------------------------------- /develop/themes/twenty/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/preview.png -------------------------------------------------------------------------------- /develop/themes/twenty/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/.DS_Store -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/css/.DS_Store -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/ie/html5shiv.js: -------------------------------------------------------------------------------- 1 | /* 2 | HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); 5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; 6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| 7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); 8 | for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/images/dark-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/images/dark-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/images/dark-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/images/light-bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/images/light-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/images/light-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/images/light-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/css/images/overlay.png -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/style-mobile.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body { 10 | min-width: 320px; 11 | } 12 | 13 | h2 { 14 | font-size: 1.25em; 15 | letter-spacing: 0.1em; 16 | } 17 | 18 | h3 { 19 | font-size: 1em; 20 | letter-spacing: 0.025em; 21 | } 22 | 23 | p { 24 | text-align: justify; 25 | } 26 | 27 | header { 28 | text-align: center; 29 | } 30 | 31 | header.major { 32 | padding-bottom: 0; 33 | } 34 | 35 | header.special { 36 | margin-bottom: 3em; 37 | padding-left: 1.5em; 38 | padding-right: 1.5em; 39 | } 40 | 41 | header.special:before, header.special:after { 42 | width: 38%; 43 | } 44 | 45 | header.special .icon { 46 | font-size: 0.75em; 47 | top: 1.5em; 48 | } 49 | 50 | header p { 51 | text-align: center; 52 | } 53 | 54 | footer.major { 55 | padding-top: 0; 56 | } 57 | 58 | /* Icon */ 59 | 60 | .icon.circle { 61 | font-size: 1em; 62 | } 63 | 64 | /* Button */ 65 | 66 | .button { 67 | max-width: 20em; 68 | width: 100%; 69 | } 70 | 71 | .button.fit { 72 | width: auto; 73 | } 74 | 75 | /* Lists */ 76 | 77 | ul.icons li { 78 | padding-left: 0.25em; 79 | } 80 | 81 | ul.feature-icons li .icon { 82 | width: 1.1em; 83 | } 84 | 85 | ul.buttons { 86 | text-align: center; 87 | } 88 | 89 | /* Wrapper */ 90 | 91 | .wrapper { 92 | margin-bottom: 2.5em; 93 | padding: 2.25em 1.5em; 94 | } 95 | 96 | .wrapper.special br { 97 | display: none; 98 | } 99 | 100 | .wrapper.style1 { 101 | padding: 0 1.5em; 102 | } 103 | 104 | .wrapper.style2 { 105 | background-size: 10em; 106 | padding: 2.25em 1.5em; 107 | } 108 | 109 | .wrapper.style4 { 110 | background-size: 10em; 111 | padding: 1.5em 1.5em 3em 1.5em; 112 | } 113 | 114 | /* Banner */ 115 | 116 | #banner { 117 | background-size: 10em, 10em, auto, cover; 118 | padding: 6em 0; 119 | } 120 | 121 | #banner .inner { 122 | background: none; 123 | display: block; 124 | padding: 0 1.5em; 125 | } 126 | 127 | #banner .inner header h2 { 128 | font-size: 1.5em; 129 | } 130 | 131 | #banner .inner p { 132 | text-align: center; 133 | } 134 | 135 | #banner .inner br { 136 | display: none; 137 | } 138 | 139 | /* Main */ 140 | 141 | #main { 142 | background-size: 10em; 143 | padding: 3.5em 0 2.5em 0; 144 | } 145 | 146 | body.index #main { 147 | padding: 2.5em 0 0 0; 148 | } 149 | 150 | body.contact #main { 151 | padding-bottom: 0; 152 | } 153 | 154 | /* CTA */ 155 | 156 | #cta { 157 | background-size: 10em, 10em, auto, cover; 158 | padding: 3em 1.5em; 159 | } 160 | 161 | /* Footer */ 162 | 163 | #footer { 164 | padding: 3em 1.5em; 165 | } -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/style-narrow.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.5em; 13 | } 14 | 15 | header br { 16 | display: none; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1em; 21 | } 22 | 23 | header.special { 24 | padding-left: 2.5em; 25 | padding-right: 2.5em; 26 | } 27 | 28 | footer.major { 29 | padding-top: 1.5em; 30 | } 31 | 32 | /* Wrapper */ 33 | 34 | .wrapper { 35 | margin-bottom: 3em; 36 | padding: 3em 2.5em; 37 | } 38 | 39 | .wrapper.special br { 40 | display: none; 41 | } 42 | 43 | .wrapper.style1 { 44 | padding: 0 2.5em; 45 | } 46 | 47 | .wrapper.style2 { 48 | background-size: 15em; 49 | } 50 | 51 | .wrapper.style4 { 52 | padding: 2.5em; 53 | } 54 | 55 | /* Banner */ 56 | 57 | #banner { 58 | background-size: 15em, 15em, auto, cover; 59 | } 60 | 61 | /* Main */ 62 | 63 | #main { 64 | background-size: 15em; 65 | } 66 | 67 | /* CTA */ 68 | 69 | #cta { 70 | background-size: 15em, 15em, auto, cover; 71 | padding: 3em; 72 | } -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/style-narrower.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | header.major { 10 | padding-bottom: 0.25em; 11 | } 12 | 13 | header.special { 14 | margin-bottom: 4em; 15 | padding-top: 5em; 16 | } 17 | 18 | header.special:before, header.special:after { 19 | width: 40%; 20 | } 21 | 22 | header.special h2 + p { 23 | padding-top: 1.25em; 24 | } 25 | 26 | section { 27 | margin: 1em 0 1em 0; 28 | } 29 | 30 | section:first-child { 31 | margin-top: 0; 32 | } 33 | 34 | /* Button */ 35 | 36 | .button.small { 37 | font-size: 0.8em; 38 | min-width: 18em; 39 | padding: 0.75em 0; 40 | } 41 | 42 | /* Lists */ 43 | 44 | ul.feature-icons { 45 | margin: 0; 46 | } 47 | 48 | ul.feature-icons li { 49 | display: inline-block; 50 | float: none; 51 | width: auto; 52 | } 53 | 54 | ul.feature-icons li .icon { 55 | font-size: 4em; 56 | width: 1.25em; 57 | } 58 | 59 | ul.buttons li { 60 | display: block; 61 | padding: 1em 0 0 0; 62 | } 63 | 64 | /* Header */ 65 | 66 | #header { 67 | display: none; 68 | } 69 | 70 | /* Banner */ 71 | 72 | #banner { 73 | margin: 0; 74 | } 75 | 76 | /* Wrapper */ 77 | 78 | .wrapper.special-alt { 79 | text-align: center; 80 | } 81 | 82 | .wrapper.style4 { 83 | padding-bottom: 3em; 84 | } 85 | 86 | /* Main */ 87 | 88 | #main { 89 | padding: 5em 0; 90 | } 91 | 92 | #main .sidebar { 93 | border-top: solid 1px rgba(124, 128, 129, 0.1); 94 | padding-top: 3em; 95 | } 96 | 97 | #main .sidebar section { 98 | border-top: 0; 99 | padding-top: 0; 100 | } 101 | 102 | body.index #main { 103 | padding-top: 4.5em; 104 | } 105 | 106 | /* CTA */ 107 | 108 | #cta { 109 | margin: 0; 110 | } 111 | 112 | /* Footer */ 113 | 114 | #footer { 115 | padding: 4em 1.5em; 116 | } -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/style-normal.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.65em; 13 | } 14 | 15 | h1, h2, h3, h4, h5, h6 { 16 | line-height: 1.5em; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1.5em; 21 | } 22 | 23 | footer.major { 24 | padding-top: 2em; 25 | } 26 | 27 | /* Wrapper */ 28 | 29 | .wrapper { 30 | margin-bottom: 4em; 31 | padding: 4em 3em; 32 | } 33 | 34 | .wrapper.style4 { 35 | padding: 3em; 36 | } 37 | 38 | /* Header */ 39 | 40 | #header nav ul li { 41 | margin-left: 1em; 42 | } 43 | 44 | /* Banner */ 45 | 46 | #banner { 47 | background-attachment: scroll; 48 | } 49 | 50 | /* CTA */ 51 | 52 | #cta { 53 | padding: 4em; 54 | background-attachment: scroll; 55 | } 56 | 57 | /* Footer */ 58 | 59 | #footer { 60 | padding: 4em; 61 | } -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/style-noscript.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Banner */ 8 | 9 | #banner .inner { 10 | opacity: 1.0; 11 | } -------------------------------------------------------------------------------- /develop/themes/twenty/static/css/style-wide.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 14pt; 11 | } 12 | 13 | header.special { 14 | padding-top: 5.5em; 15 | margin-bottom: 4em; 16 | } -------------------------------------------------------------------------------- /develop/themes/twenty/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /develop/themes/twenty/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /develop/themes/twenty/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /develop/themes/twenty/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/anna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/anna.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/anna_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/anna_s.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/banner.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/banner_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/banner_light.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/banner_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/banner_old.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/matt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/matt.png -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/matt_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/matt_s.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/miles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/miles.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/miles_fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/miles_fi.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/miles_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/miles_s.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/pic01.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/pic02.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/pic03.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/pic04.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/roger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/roger.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/static/images/roger_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/static/images/roger_s.jpg -------------------------------------------------------------------------------- /develop/themes/twenty/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/themes/twenty/templates/.DS_Store -------------------------------------------------------------------------------- /develop/themes/twenty/templates/archives.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block title %}Archives | {{ super() }}{% endblock title %} 4 | 5 | {% block content %} 6 | 7 |
8 | 9 |
10 | 11 |

Archives

12 | 13 |

Archives Template

14 |
15 | 16 | 17 |
18 | 19 |
20 | 21 |
22 |
23 | {% for article in dates %} 24 |
25 | 26 |
27 |

{{ article.title }}

28 |
29 |

{{ article.summary|striptags }}

30 |
31 | {% endfor %} 32 |
33 |
34 | 35 | 36 |
37 | 38 | 39 | 65 | 66 |
67 | 68 |
69 |
70 |
71 | 72 | {% include 'cta.html' %} 73 | 74 | {% endblock content %} -------------------------------------------------------------------------------- /develop/themes/twenty/templates/banner.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /develop/themes/twenty/templates/category.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block title %}{{ category|striptags }} | {{ super() }}{% endblock title %} 4 | 5 | {% block content %} 6 | 7 |
8 | 9 |
10 | 11 |

{{ category }}

12 | 13 |
14 | 15 | 16 |
17 |
18 | {% for article in articles %} 19 |
20 | 21 |
22 |

{{ article.title }}

23 |
24 |

{{ article.summary|striptags }}

25 |
26 | {% endfor %} 27 |
28 |
29 |
30 | {% endblock content %} -------------------------------------------------------------------------------- /develop/themes/twenty/templates/coolstuff.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 |

Some highlights

6 |
7 | 8 |
9 |
10 | 11 |
12 | 13 |
14 |

Article Title 1

15 |
16 |

Sed tristique purus vitae volutpat commodo suscipit amet sed nibh. Proin a ullamcorper sed blandit. Sed tristique purus vitae volutpat commodo suscipit ullamcorper sed blandit lorem ipsum dolore.

17 |
18 | 19 |
20 |
21 | 22 |
23 | 24 |
25 |

Article Title 2

26 |
27 |

Sed tristique purus vitae volutpat commodo suscipit amet sed nibh. Proin a ullamcorper sed blandit. Sed tristique purus vitae volutpat commodo suscipit ullamcorper sed blandit lorem ipsum dolore.

28 |
29 | 30 |
31 |
32 |
33 |
34 | 35 |
36 | 37 |
38 |

Article Title 3

39 |
40 |

Sed tristique purus vitae volutpat commodo suscipit amet sed nibh. Proin a ullamcorper sed blandit. Sed tristique purus vitae volutpat commodo suscipit ullamcorper sed blandit lorem ipsum dolore.

41 |
42 | 43 |
44 |
45 | 46 |
47 | 48 |
49 |

Article Title 4

50 |
51 |

Sed tristique purus vitae volutpat commodo suscipit amet sed nibh. Proin a ullamcorper sed blandit. Sed tristique purus vitae volutpat commodo suscipit ullamcorper sed blandit lorem ipsum dolore.

52 |
53 | 54 |
55 |
56 | 57 | 62 | 63 |
-------------------------------------------------------------------------------- /develop/themes/twenty/templates/cta.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 |

Ready to do something?

6 |

Text in new paragraph.

7 |
8 | 14 | 15 |
-------------------------------------------------------------------------------- /develop/themes/twenty/templates/footer.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
    5 | {% for title, link in SOCIAL %} 6 |
  • 7 | {{ title }} 8 |
  • 9 | {% endfor %} 10 |
11 | 12 | © physicsml. All rights reserved.
Powered by Pelican. Theme Twenty, Design: HTML5 UP. Implemented and maintained by Anna Go.
13 | 14 |
-------------------------------------------------------------------------------- /develop/themes/twenty/templates/most_recent.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {% for article in articles[:3] %} 4 |
5 | 6 |
7 | 8 |
9 |

{{ article.title }}

10 |
11 |

{{ article.content[:196]|striptags }}

12 | 17 |
18 | 19 |
20 | {% endfor %} 21 |
22 |
-------------------------------------------------------------------------------- /develop/themes/twenty/templates/page.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block title %}{{ page.title|striptags }} | {{ super() }}{% endblock title %} 4 | 5 | {% block content %} 6 | 7 |
8 | 9 |
10 | 11 |

{{ page.title }}

12 | 13 |

The following are recent papers combining the fields of physics - especially quantum mechanics - and machine learning.
Please email Anna Go if you would like to see a paper added to this page.

14 |
15 | 16 | 17 |
18 | 19 | 20 |
21 |
22 | 23 |

{{ page.content }}

24 |
25 |
26 | 27 |
28 | 29 | 30 | 33 |
34 | {% endblock content %} -------------------------------------------------------------------------------- /develop/themes/twenty/templates/pagination.html: -------------------------------------------------------------------------------- 1 | {% if DEFAULT_PAGINATION %} 2 | 3 |
4 | 5 |
6 |
7 |
8 | {% if articles_page.has_previous() %} 9 | {% if articles_page.previous_page_number() == 1 %} 10 | 11 | {% else %} 12 | 13 | {% endif %} 14 | ← Newer posts 15 | {% else %} 16 |   17 | {% endif %} 18 |
19 |
20 |
21 | 22 |
23 |
24 |
Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
25 |
26 |
27 | 28 |
29 |
30 |
31 | {% if articles_page.has_next() %} 32 | Older posts → 33 | {% endif %} 34 |
35 |
36 |
37 | 38 |
39 | 40 | {% endif %} 41 | -------------------------------------------------------------------------------- /develop/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /develop/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/utils/__init__.pyc -------------------------------------------------------------------------------- /develop/utils/filters.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- # 2 | import datetime 3 | 4 | def sidebar(value): 5 | if value.startswith('archives') or value.startswith('category'): 6 | return 'right-sidebar' 7 | elif value == 'index': 8 | return 'index' 9 | else: 10 | return 'no-sidebar' 11 | 12 | 13 | def pretty_date(dt, default=None): 14 | """ 15 | Returns string representing "time since" e.g. 16 | 3 days ago, 5 hours ago etc. 17 | Ref: https://bitbucket.org/danjac/newsmeme/src/a281babb9ca3/newsmeme/ 18 | """ 19 | 20 | if default is None: 21 | default = 'just now' 22 | 23 | now = datetime.datetime.utcnow() 24 | diff = now - datetime.datetime.strptime(dt, '%a %d %B %Y') 25 | 26 | periods = ( 27 | (diff.days / 365, 'year', 'years'), 28 | (diff.days / 30, 'month', 'months'), 29 | (diff.days / 7, 'week', 'weeks'), 30 | (diff.days, 'day', 'days'), 31 | (diff.seconds / 3600, 'hour', 'hours'), 32 | (diff.seconds / 60, 'minute', 'minutes'), 33 | (diff.seconds, 'second', 'seconds'), 34 | ) 35 | 36 | for period, singular, plural in periods: 37 | 38 | if not period: 39 | continue 40 | 41 | if period == 1: 42 | return u'%d %s ago' % (period, singular) 43 | else: 44 | return u'%d %s ago' % (period, plural) 45 | 46 | return default -------------------------------------------------------------------------------- /develop/utils/filters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/develop/utils/filters.pyc -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/.DS_Store -------------------------------------------------------------------------------- /images/CNN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/CNN.pdf -------------------------------------------------------------------------------- /images/CNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/CNN.png -------------------------------------------------------------------------------- /images/Dominoes_flip_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/Dominoes_flip_2.jpg -------------------------------------------------------------------------------- /images/Dominoes_vs_dimers_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/Dominoes_vs_dimers_1.jpg -------------------------------------------------------------------------------- /images/JustHopfionTriangular_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/JustHopfionTriangular_1.jpg -------------------------------------------------------------------------------- /images/JustHopfion_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/JustHopfion_1.jpg -------------------------------------------------------------------------------- /images/NADE_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/NADE_expand.png -------------------------------------------------------------------------------- /images/NADE_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/NADE_full.png -------------------------------------------------------------------------------- /images/TrivialSmall_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/TrivialSmall_1.jpg -------------------------------------------------------------------------------- /images/TrivialTriangular_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/TrivialTriangular_1.jpg -------------------------------------------------------------------------------- /images/above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/above.png -------------------------------------------------------------------------------- /images/anna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/anna.jpg -------------------------------------------------------------------------------- /images/anna_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/anna_s.jpg -------------------------------------------------------------------------------- /images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/banner.jpg -------------------------------------------------------------------------------- /images/banner_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/banner_light.jpg -------------------------------------------------------------------------------- /images/banner_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/banner_old.jpg -------------------------------------------------------------------------------- /images/below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/below.png -------------------------------------------------------------------------------- /images/bias_variance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/bias_variance.png -------------------------------------------------------------------------------- /images/decision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/decision.png -------------------------------------------------------------------------------- /images/hypothesis_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/hypothesis_space.png -------------------------------------------------------------------------------- /images/loss.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/loss.pdf -------------------------------------------------------------------------------- /images/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/loss.png -------------------------------------------------------------------------------- /images/matt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/matt.png -------------------------------------------------------------------------------- /images/matt_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/matt_s.jpg -------------------------------------------------------------------------------- /images/miles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/miles.jpg -------------------------------------------------------------------------------- /images/miles_fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/miles_fi.jpg -------------------------------------------------------------------------------- /images/miles_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/miles_s.jpg -------------------------------------------------------------------------------- /images/phi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/phi.png -------------------------------------------------------------------------------- /images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/pic01.jpg -------------------------------------------------------------------------------- /images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/pic02.jpg -------------------------------------------------------------------------------- /images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/pic03.jpg -------------------------------------------------------------------------------- /images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/pic04.jpg -------------------------------------------------------------------------------- /images/roger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/roger.jpg -------------------------------------------------------------------------------- /images/roger_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/roger_s.jpg -------------------------------------------------------------------------------- /images/shattered_points_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/shattered_points_2d.png -------------------------------------------------------------------------------- /images/windings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/windings.pdf -------------------------------------------------------------------------------- /images/windings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/images/windings.png -------------------------------------------------------------------------------- /publish.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import os 4 | 5 | os.system("cp -r develop/output/* .") 6 | os.system("make") 7 | os.system("git add .") 8 | 9 | -------------------------------------------------------------------------------- /tag/condensed-matter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/condensed-matter.html -------------------------------------------------------------------------------- /tag/conference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/conference.html -------------------------------------------------------------------------------- /tag/deep-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/deep-learning.html -------------------------------------------------------------------------------- /tag/kernel-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/kernel-learning.html -------------------------------------------------------------------------------- /tag/machine-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/machine-learning.html -------------------------------------------------------------------------------- /tag/machine-learning2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/machine-learning2.html -------------------------------------------------------------------------------- /tag/machine-learning3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/machine-learning3.html -------------------------------------------------------------------------------- /tag/machine-learning4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/machine-learning4.html -------------------------------------------------------------------------------- /tag/many-body-physics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/many-body-physics.html -------------------------------------------------------------------------------- /tag/neural-nets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/neural-nets.html -------------------------------------------------------------------------------- /tag/neural-nets2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/neural-nets2.html -------------------------------------------------------------------------------- /tag/program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/program.html -------------------------------------------------------------------------------- /tag/quantum-information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/quantum-information.html -------------------------------------------------------------------------------- /tag/quantum-many-body-physics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/quantum-many-body-physics.html -------------------------------------------------------------------------------- /tag/quantum-mechanics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/quantum-mechanics.html -------------------------------------------------------------------------------- /tag/quantum-mechanics2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/quantum-mechanics2.html -------------------------------------------------------------------------------- /tag/quantum-mechanics3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/quantum-mechanics3.html -------------------------------------------------------------------------------- /tag/quantum-mechanics4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/quantum-mechanics4.html -------------------------------------------------------------------------------- /tag/quantum-physics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/quantum-physics.html -------------------------------------------------------------------------------- /tag/quantum-technology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/quantum-technology.html -------------------------------------------------------------------------------- /tag/supervised-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/supervised-learning.html -------------------------------------------------------------------------------- /tag/support-vector-machines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/support-vector-machines.html -------------------------------------------------------------------------------- /tag/tensor-networks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/tensor-networks.html -------------------------------------------------------------------------------- /tag/theory-of-deep-learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/theory-of-deep-learning.html -------------------------------------------------------------------------------- /tag/topological-phase-transitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/topological-phase-transitions.html -------------------------------------------------------------------------------- /tag/workshop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/tag/workshop.html -------------------------------------------------------------------------------- /theme/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/.DS_Store -------------------------------------------------------------------------------- /theme/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/css/.DS_Store -------------------------------------------------------------------------------- /theme/css/ie/html5shiv.js: -------------------------------------------------------------------------------- 1 | /* 2 | HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); 5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; 6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| 7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); 8 | for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /theme/css/images/dark-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /theme/css/images/dark-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /theme/css/images/dark-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /theme/css/images/light-bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /theme/css/images/light-br.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /theme/css/images/light-tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /theme/css/images/light-tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /theme/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/css/images/overlay.png -------------------------------------------------------------------------------- /theme/css/style-mobile.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body { 10 | min-width: 320px; 11 | } 12 | 13 | h2 { 14 | font-size: 1.25em; 15 | letter-spacing: 0.1em; 16 | } 17 | 18 | h3 { 19 | font-size: 1em; 20 | letter-spacing: 0.025em; 21 | } 22 | 23 | p { 24 | text-align: justify; 25 | } 26 | 27 | header { 28 | text-align: center; 29 | } 30 | 31 | header.major { 32 | padding-bottom: 0; 33 | } 34 | 35 | header.special { 36 | margin-bottom: 3em; 37 | padding-left: 1.5em; 38 | padding-right: 1.5em; 39 | } 40 | 41 | header.special:before, header.special:after { 42 | width: 38%; 43 | } 44 | 45 | header.special .icon { 46 | font-size: 0.75em; 47 | top: 1.5em; 48 | } 49 | 50 | header p { 51 | text-align: center; 52 | } 53 | 54 | footer.major { 55 | padding-top: 0; 56 | } 57 | 58 | /* Icon */ 59 | 60 | .icon.circle { 61 | font-size: 1em; 62 | } 63 | 64 | /* Button */ 65 | 66 | .button { 67 | max-width: 20em; 68 | width: 100%; 69 | } 70 | 71 | .button.fit { 72 | width: auto; 73 | } 74 | 75 | /* Lists */ 76 | 77 | ul.icons li { 78 | padding-left: 0.25em; 79 | } 80 | 81 | ul.feature-icons li .icon { 82 | width: 1.1em; 83 | } 84 | 85 | ul.buttons { 86 | text-align: center; 87 | } 88 | 89 | /* Wrapper */ 90 | 91 | .wrapper { 92 | margin-bottom: 2.5em; 93 | padding: 2.25em 1.5em; 94 | } 95 | 96 | .wrapper.special br { 97 | display: none; 98 | } 99 | 100 | .wrapper.style1 { 101 | padding: 0 1.5em; 102 | } 103 | 104 | .wrapper.style2 { 105 | background-size: 10em; 106 | padding: 2.25em 1.5em; 107 | } 108 | 109 | .wrapper.style4 { 110 | background-size: 10em; 111 | padding: 1.5em 1.5em 3em 1.5em; 112 | } 113 | 114 | /* Banner */ 115 | 116 | #banner { 117 | background-size: 10em, 10em, auto, cover; 118 | padding: 6em 0; 119 | } 120 | 121 | #banner .inner { 122 | background: none; 123 | display: block; 124 | padding: 0 1.5em; 125 | } 126 | 127 | #banner .inner header h2 { 128 | font-size: 1.5em; 129 | } 130 | 131 | #banner .inner p { 132 | text-align: center; 133 | } 134 | 135 | #banner .inner br { 136 | display: none; 137 | } 138 | 139 | /* Main */ 140 | 141 | #main { 142 | background-size: 10em; 143 | padding: 3.5em 0 2.5em 0; 144 | } 145 | 146 | body.index #main { 147 | padding: 2.5em 0 0 0; 148 | } 149 | 150 | body.contact #main { 151 | padding-bottom: 0; 152 | } 153 | 154 | /* CTA */ 155 | 156 | #cta { 157 | background-size: 10em, 10em, auto, cover; 158 | padding: 3em 1.5em; 159 | } 160 | 161 | /* Footer */ 162 | 163 | #footer { 164 | padding: 3em 1.5em; 165 | } -------------------------------------------------------------------------------- /theme/css/style-narrow.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.5em; 13 | } 14 | 15 | header br { 16 | display: none; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1em; 21 | } 22 | 23 | header.special { 24 | padding-left: 2.5em; 25 | padding-right: 2.5em; 26 | } 27 | 28 | footer.major { 29 | padding-top: 1.5em; 30 | } 31 | 32 | /* Wrapper */ 33 | 34 | .wrapper { 35 | margin-bottom: 3em; 36 | padding: 3em 2.5em; 37 | } 38 | 39 | .wrapper.special br { 40 | display: none; 41 | } 42 | 43 | .wrapper.style1 { 44 | padding: 0 2.5em; 45 | } 46 | 47 | .wrapper.style2 { 48 | background-size: 15em; 49 | } 50 | 51 | .wrapper.style4 { 52 | padding: 2.5em; 53 | } 54 | 55 | /* Banner */ 56 | 57 | #banner { 58 | background-size: 15em, 15em, auto, cover; 59 | } 60 | 61 | /* Main */ 62 | 63 | #main { 64 | background-size: 15em; 65 | } 66 | 67 | /* CTA */ 68 | 69 | #cta { 70 | background-size: 15em, 15em, auto, cover; 71 | padding: 3em; 72 | } -------------------------------------------------------------------------------- /theme/css/style-narrower.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | header.major { 10 | padding-bottom: 0.25em; 11 | } 12 | 13 | header.special { 14 | margin-bottom: 4em; 15 | padding-top: 5em; 16 | } 17 | 18 | header.special:before, header.special:after { 19 | width: 40%; 20 | } 21 | 22 | header.special h2 + p { 23 | padding-top: 1.25em; 24 | } 25 | 26 | section { 27 | margin: 1em 0 1em 0; 28 | } 29 | 30 | section:first-child { 31 | margin-top: 0; 32 | } 33 | 34 | /* Button */ 35 | 36 | .button.small { 37 | font-size: 0.8em; 38 | min-width: 18em; 39 | padding: 0.75em 0; 40 | } 41 | 42 | /* Lists */ 43 | 44 | ul.feature-icons { 45 | margin: 0; 46 | } 47 | 48 | ul.feature-icons li { 49 | display: inline-block; 50 | float: none; 51 | width: auto; 52 | } 53 | 54 | ul.feature-icons li .icon { 55 | font-size: 4em; 56 | width: 1.25em; 57 | } 58 | 59 | ul.buttons li { 60 | display: block; 61 | padding: 1em 0 0 0; 62 | } 63 | 64 | /* Header */ 65 | 66 | #header { 67 | display: none; 68 | } 69 | 70 | /* Banner */ 71 | 72 | #banner { 73 | margin: 0; 74 | } 75 | 76 | /* Wrapper */ 77 | 78 | .wrapper.special-alt { 79 | text-align: center; 80 | } 81 | 82 | .wrapper.style4 { 83 | padding-bottom: 3em; 84 | } 85 | 86 | /* Main */ 87 | 88 | #main { 89 | padding: 5em 0; 90 | } 91 | 92 | #main .sidebar { 93 | border-top: solid 1px rgba(124, 128, 129, 0.1); 94 | padding-top: 3em; 95 | } 96 | 97 | #main .sidebar section { 98 | border-top: 0; 99 | padding-top: 0; 100 | } 101 | 102 | body.index #main { 103 | padding-top: 4.5em; 104 | } 105 | 106 | /* CTA */ 107 | 108 | #cta { 109 | margin: 0; 110 | } 111 | 112 | /* Footer */ 113 | 114 | #footer { 115 | padding: 4em 1.5em; 116 | } -------------------------------------------------------------------------------- /theme/css/style-normal.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | letter-spacing: 0.025em; 12 | line-height: 1.65em; 13 | } 14 | 15 | h1, h2, h3, h4, h5, h6 { 16 | line-height: 1.5em; 17 | } 18 | 19 | header.major { 20 | padding-bottom: 1.5em; 21 | } 22 | 23 | footer.major { 24 | padding-top: 2em; 25 | } 26 | 27 | /* Wrapper */ 28 | 29 | .wrapper { 30 | margin-bottom: 4em; 31 | padding: 4em 3em; 32 | } 33 | 34 | .wrapper.style4 { 35 | padding: 3em; 36 | } 37 | 38 | /* Header */ 39 | 40 | #header nav ul li { 41 | margin-left: 1em; 42 | } 43 | 44 | /* Banner */ 45 | 46 | #banner { 47 | background-attachment: scroll; 48 | } 49 | 50 | /* CTA */ 51 | 52 | #cta { 53 | padding: 4em; 54 | background-attachment: scroll; 55 | } 56 | 57 | /* Footer */ 58 | 59 | #footer { 60 | padding: 4em; 61 | } -------------------------------------------------------------------------------- /theme/css/style-noscript.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Banner */ 8 | 9 | #banner .inner { 10 | opacity: 1.0; 11 | } -------------------------------------------------------------------------------- /theme/css/style-wide.css: -------------------------------------------------------------------------------- 1 | /* 2 | Twenty 1.0 by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 14pt; 11 | } 12 | 13 | header.special { 14 | padding-top: 5.5em; 15 | margin-bottom: 4em; 16 | } -------------------------------------------------------------------------------- /theme/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /theme/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /theme/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /theme/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /theme/images/anna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/anna.jpg -------------------------------------------------------------------------------- /theme/images/anna_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/anna_s.jpg -------------------------------------------------------------------------------- /theme/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/banner.jpg -------------------------------------------------------------------------------- /theme/images/banner_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/banner_light.jpg -------------------------------------------------------------------------------- /theme/images/banner_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/banner_old.jpg -------------------------------------------------------------------------------- /theme/images/matt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/matt.png -------------------------------------------------------------------------------- /theme/images/matt_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/matt_s.jpg -------------------------------------------------------------------------------- /theme/images/miles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/miles.jpg -------------------------------------------------------------------------------- /theme/images/miles_fi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/miles_fi.jpg -------------------------------------------------------------------------------- /theme/images/miles_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/miles_s.jpg -------------------------------------------------------------------------------- /theme/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/pic01.jpg -------------------------------------------------------------------------------- /theme/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/pic02.jpg -------------------------------------------------------------------------------- /theme/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/pic03.jpg -------------------------------------------------------------------------------- /theme/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/pic04.jpg -------------------------------------------------------------------------------- /theme/images/roger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/roger.jpg -------------------------------------------------------------------------------- /theme/images/roger_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physicsml/physicsml-archive/da40e94b1846341a3707a907b5441cf056731c33/theme/images/roger_s.jpg -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- 1 | edits on my article: 2 | - less width (for articles) 3 | - blocksatz 4 | - quotes: larger font 5 | - figure caption: smaller font 6 | 7 | 8 | general content ideas: 9 | - collection/overview of practical results on DL with links to papers 10 | e.g. batch size, norm, regularizations... -------------------------------------------------------------------------------- /workflow.md: -------------------------------------------------------------------------------- 1 | the way to publish: 2 | 3 | cd develop 4 | fab build 5 | cd .. 6 | cp -r develop/output/* . 7 | make 8 | git add . 9 | git commit -a -m "Message" 10 | git push 11 | 12 | --------------------------------------------------------------------------------