deepmind-research icon indicating copy to clipboard operation
deepmind-research copied to clipboard

Missing flag definitions

Open zahidirfan opened this issue 1 year ago • 0 comments

The shell script run_adult_pscf.sh passes the flags: dataset_dir and numstep but they are not defined in the following file.

Ref to line in script. https://github.com/deepmind/deepmind-research/blob/cb555c241b20c661a3e46e5d1eb722a0a8b0e8f4/counterfactual_fairness/run_adult_pscf.sh#L36

https://github.com/deepmind/deepmind-research/blob/cb555c241b20c661a3e46e5d1eb722a0a8b0e8f4/counterfactual_fairness/adult_pscf.py#L41 The solution is to define the flags as follows. The default values I have chosen are arbitrary.

flags.DEFINE_string ("dataset_dir", "", "Sets the dataset directory") flags.DEFINE_string ("num_steps", "10", "Sets the number of steps")

zahidirfan avatar Apr 30 '23 15:04 zahidirfan