Skip to content

Latest commit

 

History

History
33 lines (31 loc) · 1.76 KB

README.md

File metadata and controls

33 lines (31 loc) · 1.76 KB

Galaxy-Ludwig

A library of Galaxy deep learning tools based on Ludwig.

Install Galaxy-Ludwig into Galaxy

We assume that you have Galaxy running and docker installed in your server/laptop.

  • Create a new folder named ludwig(or whatever) under Galaxy’s tools folder.
  • Select and download the branch you want to install and use. Copy all XML, py files under the tools folder in this repo to the ludwig folder(the folder you created in the last step).
  • Update tool_conf.xml to include Galaxy-Ludwig. See documentation for more details. This is an example:
<section id="ludwig" name="Ludwig Applications">
  <tool file="ludwig/ludwig_evaluate.xml" />
  <tool file="ludwig/ludwig_experiment.xml" />
  <tool file="ludwig/ludwig_hyperopt.xml" />
  <tool file="ludwig/ludwig_predict.xml" />
  <tool file="ludwig/ludwig_render_config.xml" />
  <tool file="ludwig/ludwig_train.xml" />
  <tool file="ludwig/ludwig_visualize.xml" />
</section>
  • Configure the job_conf.yml under lib/galaxy/config/sample to enable the docker for the environment you want the Ludwig related job running in. This is an example:
execution:
 default: local
 environments:
   local:
     runner: local
     docker_enabled: true

If you are using an older version of Galaxy, then job_conf.xml would be something you want to configure instead of job_conf.yml. Then you would want to configure destination instead of execution and environment. See documentation for job_conf configuration.

  • If you haven’t set sanitize_all_html: false in galaxy.yml, please set it to False to enable our HTML report functionality.
  • Should be good to go.