Code Monkey home page Code Monkey logo

Comments (2)

aksg87 avatar aksg87 commented on June 12, 2024 1

Just an update!

I was able to get the train.py script running which is cool 🙂. Will share a few details in case anyone finds them helpful.

  1. I created a folder with a bunch of .nrrd volume files which is the only input I am using right now for train.py

  2. The code initially threw in an error as it expected a list for num_embeddings but the default is an int so I did the following.
    vqvae/model.py

        # assert len(args.num_embeddings) in (1, args.n_bottleneck_blocks)  # expects list     
        self.num_embeddings = [args.num_embeddings for _ in range(args.n_bottleneck_blocks)]

        # if len(args.num_embeddings) == 1:
        #     self.num_embeddings = [args.num_embeddings[0] for _ in range(args.n_bottleneck_blocks)]
        # else:
        #     self.num_embeddings = args.num_embeddings
  1. I added a batch-size default of 1 as I otherwise received an error:
    vqvae/train.py
parser.add_argument("--batch-size", type=int, default=1)

from 3d-vq-vae-2.

27yw avatar 27yw commented on June 12, 2024

thanks for your answer! It helps a lot. I am trying to training it as well and could you help me with my dataset_path, pls? I wanna train the data named like this :BraTS2021_00377_t1.nii.gz. Does it mean that I put all the files in one dir and what do I need to change the code and where?

from 3d-vq-vae-2.

Related Issues (4)

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.