1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 01:10:52 +01:00

Merge branch 'upscayl:main' into main

This commit is contained in:
Danik1601 2023-05-09 23:31:47 +03:00 committed by GitHub
commit e18a20898a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 4 deletions

View File

@ -13,7 +13,16 @@ body:
- type: textarea
attributes:
label: Describe the Bug
description: 💥 What's wrong? Put logs here if you have them. To get logs, launch Upscayl using the commandline and the logs will show up on the console.
description: 💥 What's wrong? Put logs here if you have them. To get logs, scroll to the bottom of Upscayl's settings.
value: |
<details>
<summary>Logs</summary>
<pre>
<!-- 📃 Put logs here! -->
</pre>
</details>
validations:
required: true
- type: textarea

17
.github/stale.yml vendored Normal file
View File

@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false

View File

@ -153,10 +153,9 @@ npm run publish-app
- How can I contribute?
- You can fix code, add features by submitting PRs, report issues or donate :)
- What's the GPU ID for?
- To find your GPU ID, you first need to launch Upscayl using the commandline and Upscayl an image. In the console output, you can see the GPUs that have been detected: ![image](https://user-images.githubusercontent.com/25067102/213901080-706071c2-4ad1-43cc-b5c6-70f46d0b547c.png)
As you can notice, 0 is the AMD iGPU, 1 is the Nvidia GPU, and 2 is the llvmpipe. If I set my GPU ID to 0, it'll always upscayl images with AMD iGPU (CPU) instead of dedicated GPU.
- Read the Wiki.
- You are not fully open source!!😡
- We are, we're using completely free and open source tech. We do ship a binary but that's because not including it would kill the entire purpose of the project. If you want to deal with all those PyTorch, NCNN, and Python errors, you're more than welcome to compile your own binary using the code provided by Real-ESRGAN. The binary is pre-compiled for convenience, if you do not trust it, then you can compile your own since everything is free and open source here :)
- We are! We're using completely free and open source tech. We do ship a binary but that's because not including it would kill the entire purpose of the project. If you want to deal with all those PyTorch, NCNN, and Python errors, you're more than welcome to compile your own binary using the code provided by Real-ESRGAN. The binary is pre-compiled for convenience, if you do not trust it, then you can compile your own since everything is free and open source here :)
Upscayl uses Real-ESRGAN-ncnn-vulkan binaries to upscale images. More models and algorithms will come soon.