Code Monkey home page Code Monkey logo

Comments (2)

zhenpingli avatar zhenpingli commented on May 24, 2024

Hello ! It is a bit unclear to me which hyper parameters you used to train your model, could you provide a complete list of your best models for DIPS and DB5? In particular, I am not sure whether node and edge features were used. Moreover, the hyperparameters you mention in the paper are not the same as your best model's checkpoints. Thanks :)

I find the same question

from equidock_public.

zhenpingli avatar zhenpingli commented on May 24, 2024

Hello ! It is a bit unclear to me which hyper parameters you used to train your model, could you provide a complete list of your best models for DIPS and DB5? In particular, I am not sure whether node and edge features were used. Moreover, the hyperparameters you mention in the paper are not the same as your best model's checkpoints. Thanks :)

Hi:
I find a to extract the hyper-parameters from checkpts. this is the main code .

`
args = parser.parse_args().dict

args['input_edge_feats_dim'] = 64
args['device'] = torch.device("cuda:0") if torch.cuda.is_available() else torch.device("cpu")
print(f"Available GPUS:{torch.cuda.device_count()}")

stopper = EarlyStopping(mode='lower', patience=00, filename="./checkpts/db5/db5_model_best.pth", log=log)

model = create_model(args, log)
optimizer = torch.optim.Adam(model.parameters(), lr=args['lr'], weight_decay=args['w_decay'])
model, optimizer, args2, epoch = stopper.load_checkpoint(model, optimizer)
for k in args2.keys():
if k not in ['device', 'debug', 'worker', 'n_jobs', 'toy']:
print(args[k])

`

from equidock_public.

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.