Use this app to share your research paper results. This app lets you connect a blogpost, arxiv paper, and a jupyter notebook and even have an interactive demo for people to play with the model. This app also allows industry practitioners to reproduce your work.
To create a Research Poster you can install this app via the Lightning CLI or use the template from GitHub and manually install the app as mentioned below.
You can modify the content of this app and customize it to your research.
At the root of this template, you will find app.py that contains the ResearchApp
class. This class
provides arguments like a link to a paper, a blog, and whether to launch a Gradio demo. You can read more about what
each of the arguments does in the docstrings.
This component lets you make research posters using markdown files. The component comes with a predefined poster.md file in the resources folder that contains markdown content for building the poster. You can directly update the existing file with your research content.
You can add your research paper, a blog post, and training logs to your app. These are usually static web links that can be directly passed as optional arguments within app.py
You can provide the path to your notebook and it will be converted into static HTML.
To create an interactive demo you’d need to implement the build_model
and predict
methods of the ModelDemo class
present
in the research_app/demo/model.py
module.
This component runs and adds a JupyterLab instance to your app. You can provide a way to edit and run your code for quick audience demonstrations. However, note that sharing a JupyterLab instance can expose the cloud instance to security vulnerability.