GithubHelp home page GithubHelp logo

Comments (3)

fitsumreda avatar fitsumreda commented on July 19, 2024 3

Hi @qijiezhao , ImagesFromFolder is the dataloader for regular images for simplistic test purpose, it expects two input arguments
root - folder path that contains sequentially named RGB images
iext - an extension for the image files
both of these can be passed in as arguments, inference_dataset_root and inference_dataset_iext.
Could you explain a little about your custom dataset?
Any way ImagesFromFolder can be extended?

from flownet2-pytorch.

qijiezhao avatar qijiezhao commented on July 19, 2024

Hi @fitsumreda , Thx for your reply, here I modified some code in main.py and it is approaching worked out:
```

if exists(args.inference_dataset_root):
            #inference_dataset = args.inference_dataset_class(args, False, **tools.kwargs_from_args(args, 'inference_dataset'))
            #block.log('Inference Dataset: {}'.format(args.inference_dataset))
            #block.log('Inference Input: {}'.format(' '.join([str([d for d in x.size()]) for x in inference_dataset[0][0]])))
            #block.log('Inference Targets: {}'.format(' '.join([str([d for d in x.size()]) for x in inference_dataset[0][1]])))
            #inference_loader = DataLoader(inference_dataset, batch_size=args.inference_batch_size, shuffle=False, **gpuargs)
            inference_loader = DataLoader(
            
datasets.ImagesFromFolder(args=args,is_cropped=False,root=args.inference_dataset_root,iext='jpg'),
                batch_size=args.inference_batch_size,shuffle=False,**gpuargs
            )
detailed __getitem__ function could be implemented ,as you said...

Now, without checkpoints file,  everything is nearly OK xi:-D

from flownet2-pytorch.

sklf avatar sklf commented on July 19, 2024

@fitsumreda @qijiezhao Hello, I read your discussion. And I used the code as above. It is as follows:

if exists(args.inference_dataset_root):
        inference_loader = DataLoader(datasets.ImagesFromFolder(args=args, is_cropped=False, root=args.inference_dataset_root, iext='png'),
            batch_size =args.effective_inference_batch_size, shuffle=False, **inf_gpuargs)

and my custom dataset has 100 '*.png' images. However, I ran the model Flownet2S with the following code

python main.py --inference --model FlowNet2S --save_flow --inference_dataset_root ~/files/Dataset/posetrack/Flowimgs/imgs/val/000342_mpii_test/ --resume ./work/FlowNet2-S_checkpoint.pth.tar 

and found I only got 24 flo file. I used 3 GPUs to ran it. So can you tell me why I can't get all flo files? Thanks!

from flownet2-pytorch.

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.