Code Monkey home page Code Monkey logo

deepfindr_hiv's Introduction

Comments about the code

This is the code for this video series: https://www.youtube.com/watch?v=nAEb1lOf_4o

Installing RDKIT

You will need rdkit to run this code.

Follow these instructions to install rdkit. https://www.rdkit.org/docs/Install.html

If you run on Ubuntu / WSL you can simply run:

sudo apt-get install python-rdkit

Ideally execute the code in an anaconda environment, that's the easiest solution with rdkit.

Installing the other packages

For pytorch geometric follow this tutorial: https://pytorch-geometric.readthedocs.io/en/latest/notes/installation.html

Make sure your CUDA version as well as torch version match the PyG version you install. I've used torch 1.6.0 as it seemed to be most stable with the other libraries.

Further things

Dashboard (MLFlow + Streamlit)

It is required to use conda for this setup, e.g.

wget https://repo.continuum.io/archive/Anaconda3-5.3.1-Linux-x86_64.sh

You need to start the following things:

  • Streamlit server
streamlit run dashboard.py
  • MlFlow Server
mlflow server \
    --backend-store-uri sqlite:///mlflow.db \
    --default-artifact-root ./artifacts \
    --host 0.0.0.0
    --port 5000
  • MlFlow served model
export MLFLOW_TRACKING_URI=http://localhost:5000
mlflow models serve -m "models:/YourModelName/Staging" -p 1234

TODO: Check if multi-input models work for MLFLOW!!!

deepfindr_hiv

deepfindr_hiv

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.