Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dennybritz/papergraph-ui
Browse the CS/AI/ML research paper graph
https://github.com/dennybritz/papergraph-ui
Last synced: 8 days ago
JSON representation
Browse the CS/AI/ML research paper graph
- Host: GitHub
- URL: https://github.com/dennybritz/papergraph-ui
- Owner: dennybritz
- Created: 2020-05-25T21:20:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-13T01:42:26.000Z (over 1 year ago)
- Last Synced: 2024-08-01T13:33:02.305Z (3 months ago)
- Language: Svelte
- Homepage: https://papergraph.dbz.dev/
- Size: 680 KB
- Stars: 52
- Watchers: 3
- Forks: 2
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is the frontend for [dennybritz/papergraph](https://github.com/dennybritz/papergraph).
Technologies used:
- [sapper](https://sapper.svelte.dev/) + [svelte](https://svelte.dev/) for static site generation
- [visjs](https://visjs.org/) for network visualizations
- [tailwindcss](https://tailwindcss.com/) for styling
- [dennybritz/papergraph](https://github.com/dennybritz/papergraph) for the dataNote that this is a static site with no server required. All rendering happens in the browser, and data is requested via GraphQL on the client-side.
### Run locally
```bash
yarn install
yarn dev# For local development, you should also run the CSS generation in the background
# see https://github.com/ScottWhittaker/sapper-tailwind-template
yarn css:watch
```For details, refer to the [sapper](https://sapper.svelte.dev/) documentation.