Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
Update pre-production codes
Browse files Browse the repository at this point in the history
  • Loading branch information
mnoiy committed Jun 16, 2023
1 parent 6e3afe6 commit 8b85793
Show file tree
Hide file tree
Showing 103 changed files with 15,081 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.data-00000-of-00001 filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
downloads
training
env
.idea
*.ckpt
packages/TecoGAN/TecoGAN.egg-info
packages/RaisrJaladi/RaisrJaladi.egg-info
packages/KerasImageSuperResolution/KerasImageSuperResolution.egg-info
packages/TecoGANPyTorch/TecoGANPyTorch.egg-info
packages/mmedit/mmedit.egg-info
packages/TTSR/TTSR.egg-info
packages/RCANtf/RCANtf.egg-info
packages/Haarpsi/haarpsi.egg-info
vsrframework/_pycache_
*.pyc
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "haarpsi"]
path = haarpsi
url = https://github.com/rgcda/haarpsi.git
7 changes: 7 additions & 0 deletions FAIME.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright (C) 2023 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause

import sys
from FAIME import main

sys.exit(main())
508 changes: 508 additions & 0 deletions FAIME/FAIME.py

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions FAIME/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright (C) 2023 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause

import os, sys
sys.path.append(os.path.join(os.path.dirname(__file__)))
from .FAIME import FAIME, main
from .project_builder import project_builder as ProjectBuilder
import video
del os
del sys
# __all__ = ['vsrframework']
211 changes: 211 additions & 0 deletions FAIME/config.yaml

Large diffs are not rendered by default.

Loading

0 comments on commit 8b85793

Please sign in to comment.