An open API service indexing awesome lists of open source software.

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"

Awesome Lists containing this project

README

          

# Single Image Super-Resolution Based on Capsule Neural Networks

[![paper](https://img.shields.io/badge/paper-pdf-red.svg)](https://link.springer.com/chapter/10.1007/978-3-031-45392-2_8) [![slides](https://img.shields.io/badge/slides-pdf-red.svg)](https://github.com/george-gca/bracis_2023_srcaps/blob/main/slides-export.pdf) [![slides](https://img.shields.io/badge/slides-web-blue.svg)](https://george-gca.github.io/bracis_2023_srcaps/) ![GitHub](https://img.shields.io/github/license/george-gca/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).

![Cover slide](cover.png)

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
```