├── .gitattributes ├── .github └── workflows │ ├── docs-deploy.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .markdownlint.json ├── CHANGELOG.md ├── CNAME ├── assets │ ├── favicon.ico │ ├── prefab-logo-notext.svg │ ├── prefab-logo.png │ ├── promo_c.png │ └── promo_p.png ├── examples │ ├── 1_prediction.ipynb │ ├── 1_prediction.md │ ├── 2_correction.ipynb │ ├── 2_correction.md │ └── images │ │ ├── 1_prediction_1.png │ │ ├── 1_prediction_2.png │ │ ├── 1_prediction_3.png │ │ ├── 1_prediction_4.png │ │ ├── 1_prediction_5.png │ │ ├── 2_correction_1.png │ │ ├── 2_correction_2.png │ │ ├── 2_correction_3.png │ │ ├── 2_correction_4.png │ │ ├── 2_correction_5.png │ │ └── 2_correction_6.png ├── fab_aware_design.md ├── index.md ├── models.md ├── python-for-photonics.md ├── reference │ ├── compare.md │ ├── device.md │ ├── geometry.md │ ├── models.md │ ├── predict.md │ ├── read.md │ └── shapes.md ├── scripts │ └── convert_notebooks.py ├── setup.md └── stylesheets │ └── extra.css ├── mkdocs.yml ├── prefab ├── __init__.py ├── __main__.py ├── compare.py ├── device.py ├── geometry.py ├── models │ ├── __init__.py │ ├── base.py │ └── evaluation.py ├── predict.py ├── py.typed ├── read.py └── shapes.py ├── pyproject.toml ├── site ├── 404.html ├── assets │ ├── _mkdocstrings.css │ ├── favicon.ico │ ├── images │ │ └── favicon.png │ ├── javascripts │ │ ├── bundle.a7c05c9e.min.js │ │ ├── bundle.a7c05c9e.min.js.map │ │ ├── lunr │ │ │ ├── min │ │ │ │ ├── lunr.ar.min.js │ │ │ │ ├── lunr.da.min.js │ │ │ │ ├── lunr.de.min.js │ │ │ │ ├── lunr.du.min.js │ │ │ │ ├── lunr.el.min.js │ │ │ │ ├── lunr.es.min.js │ │ │ │ ├── lunr.fi.min.js │ │ │ │ ├── lunr.fr.min.js │ │ │ │ ├── lunr.he.min.js │ │ │ │ ├── lunr.hi.min.js │ │ │ │ ├── lunr.hu.min.js │ │ │ │ ├── lunr.hy.min.js │ │ │ │ ├── lunr.it.min.js │ │ │ │ ├── lunr.ja.min.js │ │ │ │ ├── lunr.jp.min.js │ │ │ │ ├── lunr.kn.min.js │ │ │ │ ├── lunr.ko.min.js │ │ │ │ ├── lunr.multi.min.js │ │ │ │ ├── lunr.nl.min.js │ │ │ │ ├── lunr.no.min.js │ │ │ │ ├── lunr.pt.min.js │ │ │ │ ├── lunr.ro.min.js │ │ │ │ ├── lunr.ru.min.js │ │ │ │ ├── lunr.sa.min.js │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ ├── lunr.sv.min.js │ │ │ │ ├── lunr.ta.min.js │ │ │ │ ├── lunr.te.min.js │ │ │ │ ├── lunr.th.min.js │ │ │ │ ├── lunr.tr.min.js │ │ │ │ ├── lunr.vi.min.js │ │ │ │ └── lunr.zh.min.js │ │ │ ├── tinyseg.js │ │ │ └── wordcut.js │ │ └── workers │ │ │ ├── search.b8dbb3d2.min.js │ │ │ └── search.b8dbb3d2.min.js.map │ ├── logo.png │ ├── logo_neue.svg │ ├── promo_c.png │ ├── promo_p.png │ └── stylesheets │ │ ├── main.66ac8b77.min.css │ │ ├── main.66ac8b77.min.css.map │ │ ├── palette.06af60db.min.css │ │ └── palette.06af60db.min.css.map ├── css │ ├── ansi-colours.css │ ├── jupyter-cells.css │ └── pandas-dataframe.css ├── examples │ ├── 1_prediction │ │ └── index.html │ └── 2_correction │ │ └── index.html ├── index.html ├── models │ └── index.html ├── objects.inv ├── reference │ ├── compare │ │ └── index.html │ ├── device │ │ └── index.html │ ├── geometry │ │ └── index.html │ ├── models │ │ └── index.html │ └── read │ │ └── index.html ├── search │ └── search_index.json ├── sitemap.xml └── sitemap.xml.gz └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docs-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/.github/workflows/docs-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/README.md -------------------------------------------------------------------------------- /docs/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/.markdownlint.json -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.prefabphotonics.com -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/prefab-logo-notext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/assets/prefab-logo-notext.svg -------------------------------------------------------------------------------- /docs/assets/prefab-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/assets/prefab-logo.png -------------------------------------------------------------------------------- /docs/assets/promo_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/assets/promo_c.png -------------------------------------------------------------------------------- /docs/assets/promo_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/assets/promo_p.png -------------------------------------------------------------------------------- /docs/examples/1_prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/1_prediction.ipynb -------------------------------------------------------------------------------- /docs/examples/1_prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/1_prediction.md -------------------------------------------------------------------------------- /docs/examples/2_correction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/2_correction.ipynb -------------------------------------------------------------------------------- /docs/examples/2_correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/2_correction.md -------------------------------------------------------------------------------- /docs/examples/images/1_prediction_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/1_prediction_1.png -------------------------------------------------------------------------------- /docs/examples/images/1_prediction_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/1_prediction_2.png -------------------------------------------------------------------------------- /docs/examples/images/1_prediction_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/1_prediction_3.png -------------------------------------------------------------------------------- /docs/examples/images/1_prediction_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/1_prediction_4.png -------------------------------------------------------------------------------- /docs/examples/images/1_prediction_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/1_prediction_5.png -------------------------------------------------------------------------------- /docs/examples/images/2_correction_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/2_correction_1.png -------------------------------------------------------------------------------- /docs/examples/images/2_correction_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/2_correction_2.png -------------------------------------------------------------------------------- /docs/examples/images/2_correction_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/2_correction_3.png -------------------------------------------------------------------------------- /docs/examples/images/2_correction_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/2_correction_4.png -------------------------------------------------------------------------------- /docs/examples/images/2_correction_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/2_correction_5.png -------------------------------------------------------------------------------- /docs/examples/images/2_correction_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/examples/images/2_correction_6.png -------------------------------------------------------------------------------- /docs/fab_aware_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/fab_aware_design.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/models.md -------------------------------------------------------------------------------- /docs/python-for-photonics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/python-for-photonics.md -------------------------------------------------------------------------------- /docs/reference/compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/reference/compare.md -------------------------------------------------------------------------------- /docs/reference/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/reference/device.md -------------------------------------------------------------------------------- /docs/reference/geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/reference/geometry.md -------------------------------------------------------------------------------- /docs/reference/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/reference/models.md -------------------------------------------------------------------------------- /docs/reference/predict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/reference/predict.md -------------------------------------------------------------------------------- /docs/reference/read.md: -------------------------------------------------------------------------------- 1 | # Read 2 | 3 | ::: prefab.read 4 | -------------------------------------------------------------------------------- /docs/reference/shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/reference/shapes.md -------------------------------------------------------------------------------- /docs/scripts/convert_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/scripts/convert_notebooks.py -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /prefab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/__init__.py -------------------------------------------------------------------------------- /prefab/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/__main__.py -------------------------------------------------------------------------------- /prefab/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/compare.py -------------------------------------------------------------------------------- /prefab/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/device.py -------------------------------------------------------------------------------- /prefab/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/geometry.py -------------------------------------------------------------------------------- /prefab/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/models/__init__.py -------------------------------------------------------------------------------- /prefab/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/models/base.py -------------------------------------------------------------------------------- /prefab/models/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/models/evaluation.py -------------------------------------------------------------------------------- /prefab/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/predict.py -------------------------------------------------------------------------------- /prefab/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prefab/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/read.py -------------------------------------------------------------------------------- /prefab/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/prefab/shapes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/pyproject.toml -------------------------------------------------------------------------------- /site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/404.html -------------------------------------------------------------------------------- /site/assets/_mkdocstrings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/_mkdocstrings.css -------------------------------------------------------------------------------- /site/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/favicon.ico -------------------------------------------------------------------------------- /site/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/images/favicon.png -------------------------------------------------------------------------------- /site/assets/javascripts/bundle.a7c05c9e.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/bundle.a7c05c9e.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/bundle.a7c05c9e.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/bundle.a7c05c9e.min.js.map -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.ar.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.da.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.de.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.du.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.du.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.el.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.el.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.es.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.fi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.fr.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.he.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.he.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.hi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.hu.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.hy.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.it.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.ja.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.kn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.kn.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ko.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.ko.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.multi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.multi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.nl.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.no.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.pt.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.ro.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.ru.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.sa.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.sa.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.sv.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ta.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.ta.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.te.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.te.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.th.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.th.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.tr.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.vi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.zh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/min/lunr.zh.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/tinyseg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/tinyseg.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/wordcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/lunr/wordcut.js -------------------------------------------------------------------------------- /site/assets/javascripts/workers/search.b8dbb3d2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/workers/search.b8dbb3d2.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/workers/search.b8dbb3d2.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/javascripts/workers/search.b8dbb3d2.min.js.map -------------------------------------------------------------------------------- /site/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/logo.png -------------------------------------------------------------------------------- /site/assets/logo_neue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/logo_neue.svg -------------------------------------------------------------------------------- /site/assets/promo_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/promo_c.png -------------------------------------------------------------------------------- /site/assets/promo_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/promo_p.png -------------------------------------------------------------------------------- /site/assets/stylesheets/main.66ac8b77.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/stylesheets/main.66ac8b77.min.css -------------------------------------------------------------------------------- /site/assets/stylesheets/main.66ac8b77.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/stylesheets/main.66ac8b77.min.css.map -------------------------------------------------------------------------------- /site/assets/stylesheets/palette.06af60db.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/stylesheets/palette.06af60db.min.css -------------------------------------------------------------------------------- /site/assets/stylesheets/palette.06af60db.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/assets/stylesheets/palette.06af60db.min.css.map -------------------------------------------------------------------------------- /site/css/ansi-colours.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/css/ansi-colours.css -------------------------------------------------------------------------------- /site/css/jupyter-cells.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/css/jupyter-cells.css -------------------------------------------------------------------------------- /site/css/pandas-dataframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/css/pandas-dataframe.css -------------------------------------------------------------------------------- /site/examples/1_prediction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/examples/1_prediction/index.html -------------------------------------------------------------------------------- /site/examples/2_correction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/examples/2_correction/index.html -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/index.html -------------------------------------------------------------------------------- /site/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/models/index.html -------------------------------------------------------------------------------- /site/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/objects.inv -------------------------------------------------------------------------------- /site/reference/compare/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/reference/compare/index.html -------------------------------------------------------------------------------- /site/reference/device/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/reference/device/index.html -------------------------------------------------------------------------------- /site/reference/geometry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/reference/geometry/index.html -------------------------------------------------------------------------------- /site/reference/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/reference/models/index.html -------------------------------------------------------------------------------- /site/reference/read/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/reference/read/index.html -------------------------------------------------------------------------------- /site/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/search/search_index.json -------------------------------------------------------------------------------- /site/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/sitemap.xml -------------------------------------------------------------------------------- /site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/site/sitemap.xml.gz -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PreFab-Photonics/PreFab/HEAD/uv.lock --------------------------------------------------------------------------------