Giter VIP home page Giter VIP logo

Comments (11)

HarukiYqM avatar HarukiYqM commented on June 25, 2024

Hi, please set the dir_data to the directory that contains the benchmark folder.

from non-local-sparse-attention.

cheun726 avatar cheun726 commented on June 25, 2024

i have done so.i set it up like this
parser.add_argument('--dir_data', type=str, default='D:\data\experiments code\code\1\Non-Local-Sparse-Attention\benchmarkdata\benchmark\benchmark',
help='dataset directory')

from non-local-sparse-attention.

HarukiYqM avatar HarukiYqM commented on June 25, 2024

Hi, the directory should contain the folder benchmark not the folder like Set5. In your case, it may be 'D:\data\experiments code\code\1\Non-Local-Sparse-Attention\benchmarkdata\benchmark\’.

from non-local-sparse-attention.

cheun726 avatar cheun726 commented on June 25, 2024

My operating system is Windows 10.Do I need to change demo.sh?I changed it to look like this.Is that right
--dir_data ../benchmark --model NLSN --chunk_size 144 --data_test Set5+Set14+B100+Urban100 --n_hashes 4 --chop --save_results --rgb_range 1 --data_range 801-900 --scale 2 --n_feats 256 --n_resblocks 32 --res_scale 0.1 --pre_train ../experiment/test/model/model_x2.pt --test_only

from non-local-sparse-attention.

cheun726 avatar cheun726 commented on June 25, 2024

I changed it as you said.And that's what happened
D:\softwarezijianzhuangde\anaconda\envs\pytorch-1.9\python.exe "D:/data/experiments code/code/1/Non-Local-Sparse-Attention/src/main.py" --dir_data ../benchmark --model NLSN --chunk_size 144 --data_test Set5+Set14+B100+Urban100 --n_hashes 4 --chop --save_results --rgb_range 1 --data_range 801-900 --scale 2 --n_feats 256 --n_resblocks 32 --res_scale 0.1 --pre_train ../experiment/test/model/model_x2.pt --test_only
Making model...
Loading model from ../experiment/test/model/model_x2.pt
0it [00:00, ?it/s]
0it [00:00, ?it/s]
0it [00:00, ?it/s]
0it [00:00, ?it/s]
Total params: 41.80M

Evaluation:
[Set5 x2] PSNR: nan (Best: nan @epoch 1)
[Set14 x2] PSNR: nan (Best: nan @epoch 1)
[B100 x2] PSNR: nan (Best: nan @epoch 1)
[Urban100 x2] PSNR: nan (Best: nan @epoch 1)
Forward: 0.00s

Saving...
Total: 0.00s

Process finished with exit code 0

from non-local-sparse-attention.

HarukiYqM avatar HarukiYqM commented on June 25, 2024

The problem is the datasets are not correctly loaded. After you extracting the datasets, the structure should like this,
—/somepath/somefolder
——benchmark
———Set5
———Set14
———B100
———Urban100
And set the dir_data as /somepath/somefolder

from non-local-sparse-attention.

cheun726 avatar cheun726 commented on June 25, 2024

It does not work.
In option.py,i set the dir_data like this
parser.add_argument('--dir_data', type=str, default='D:\data\experiments code\code\1\Non-Local-Sparse-Attention\benchmarkdata\benchmark',
help='dataset directory')
In demo.sh,i set it like this
--dir_data ../D:/data/experiments code/code/1/Non-Local-Sparse-Attention/benchmarkdata --model NLSN --chunk_size 144 --data_test Set5+Set14+B100+Urban100 --n_hashes 4 --chop --save_results --rgb_range 1 --data_range 801-900 --scale 2 --n_feats 256 --n_resblocks 32 --res_scale 0.1 --pre_train ../experiment/test/model/model_x2.pt --test_only
I don't know the exact reasons.please help me.Thanks

from non-local-sparse-attention.

HarukiYqM avatar HarukiYqM commented on June 25, 2024

Hi, after extracting the zip file, you should get a folder with name “benchmark”. What is the parent folder that contains the benchmark folder? Please set the dir_data to a path pointing to the parent folder in the demo.sh.

In addition, please make sure the grammar for windows is correct.

from non-local-sparse-attention.

cheun726 avatar cheun726 commented on June 25, 2024

A new problem has arisen。
D:\softwarezijianzhuangde\anaconda\envs\pytorch-1.9\python.exe "D:/data/experiments code/code/1/Non-Local-Sparse-Attention/src/main.py" --dir_data ../benchmarkdata --model NLSN --chunk_size 144 --data_test Set5+Set14+B100+Urban100 --n_hashes 4 --chop --save_results --rgb_range 1 --data_range 801-900 --scale 2 --n_feats 256 --n_resblocks 32 --res_scale 0.1 --pre_train ../experiment/test/model/model_x2.pt --test_only
Making model...
Loading model from ../experiment/test/model/model_x2.pt
Total params: 41.80M

Evaluation:
0%| | 0/5 [00:03<?, ?it/s]
Traceback (most recent call last):
File "D:/data/experiments code/code/1/Non-Local-Sparse-Attention/src/main.py", line 35, in
main()
File "D:/data/experiments code/code/1/Non-Local-Sparse-Attention/src/main.py", line 28, in main
while not t.terminate():
File "D:\data\experiments code\code\1\Non-Local-Sparse-Attention\src\trainer.py", line 141, in terminate
self.test()
File "D:\data\experiments code\code\1\Non-Local-Sparse-Attention\src\trainer.py", line 102, in test
self.ckp.save_results(d, filename[0], save_list, scale)
File "D:\data\experiments code\code\1\Non-Local-Sparse-Attention\src\utility.py", line 159, in save_results
self.queue.put(('{}{}.png'.format(filename, p), tensor_cpu))
AttributeError: 'checkpoint' object has no attribute 'queue'

Process finished with exit code 1

from non-local-sparse-attention.

HarukiYqM avatar HarukiYqM commented on June 25, 2024

Hi, I am not sure about this problem. It may be because torch version and windows platform. The code is tested on Linux.
This code is based on EDSR and you may want to look this issue for reference sanghyun-son/EDSR-PyTorch#91.

from non-local-sparse-attention.

cheun726 avatar cheun726 commented on June 25, 2024

thank you very much

from non-local-sparse-attention.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.