GithubHelp home page GithubHelp logo

Comments (1)

toooooodo avatar toooooodo commented on August 15, 2024

Hi! Thank you for your interest in our work.

On the DrugOOD dataset, we searched for all hyper-parameters using the grid search method. Here is the demo script:

#!/bin/bash
hyper_list1=(choice1, choice2, ...)
hyper_list2=(choice1, choice2, ...)

# grid search on all hyper-parameters
for p1 in ${hyper_list1[*]}
do
for p2 in ${hyper_list2[*]}
do
python run.py --random_seed 0 --h1 p1 --h2 p2
python run.py --random_seed 1 --h1 p1 --h2 p2
python run.py --random_seed 2 --h1 p1 --h2 p2
done
done

The choices of hyper-parameters are detailed in the appendix.

We repeated the experiments with different random seeds for each group of hyper-parameters, and the results reported in the paper are for the best group. Also, we observed that due to the small size of the drugood dataset, it is prone to larger variance. But because of running many groups results out, the best one will be the one where the results are all a bit better.

from imold.

Related Issues (5)

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.