https://github.com/george-gca/bracis_2023_srcaps
Presentation for paper "Single Image Super-Resolution Based on Capsule Neural Networks"
https://github.com/george-gca/bracis_2023_srcaps
bracis2023 capsule-network capsule-neural-networks capsules paper presentation slidev super-resolution
Last synced: 8 months ago
JSON representation
Presentation for paper "Single Image Super-Resolution Based on Capsule Neural Networks"
- Host: GitHub
- URL: https://github.com/george-gca/bracis_2023_srcaps
- Owner: george-gca
- License: mit
- Created: 2023-09-16T23:44:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-24T02:10:55.000Z (over 1 year ago)
- Last Synced: 2025-01-24T03:18:10.374Z (over 1 year ago)
- Topics: bracis2023, capsule-network, capsule-neural-networks, capsules, paper, presentation, slidev, super-resolution
- Language: Vue
- Homepage: https://george-gca.github.io/bracis_2023_srcaps/
- Size: 42.1 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Single Image Super-Resolution Based on Capsule Neural Networks
[](https://link.springer.com/chapter/10.1007/978-3-031-45392-2_8) [](https://github.com/george-gca/bracis_2023_srcaps/blob/main/slides-export.pdf) [](https://george-gca.github.io/bracis_2023_srcaps/) 
This presentation is powered by [Slidev](https://github.com/slidevjs/slidev) with [slidev-theme-academic](https://github.com/alexanderdavide/slidev-theme-academic).

To run the slide show locally:
- [install node.js](https://george-gca.github.io/blog/2023/slidev_for_non_web_devs/)
- `npm install`
- `npm run dev`
- visit http://localhost:3030
To check for dependencies that need to be updated, run:
```bash
npm outdated
```
which will output something like this:
```
Package Current Wanted Latest Location Depended by
@slidev/cli 0.43.11 0.43.15 0.46.1 node_modules/@slidev/cli xxxxxxxx
```
To updated installed dependencies, simply run:
```bash
npm update
```
Keep in mind that npm update will never update to a major breaking-changes version, only to a minor one. What this means is, it will use the Wanted version in the table above instead of the Latest version. To obtain the Latest version, call the install command with @latest appended to the package name. For example, to update @slidev/cli to the latest version, run:
```bash
npm install @slidev/cli@latest
```