Giter Club home page Giter Club logo

flameweb's Issues

Quality comparison table

It would be great to select various models and then retrieve a table with quality parameters. Even if it could be possible a bar plot showing the performance of the models, plus applicability domain.

Polar Plot for similarity molecules

Here is the python code for radial plot:

def radialplot(df, tnames, simcol,dilicol):
    ''' eg. radialplot(adf, 'atc_names_train', 'Tanimoto_fp', 'H_HT_class_train')'''
    labels = df[tnames].values
    stats = df[simcol].values
    dili = df[dilicol].values
    angles = np.linspace(0.07, 2*np.pi, len(labels), endpoint=False)
    stats = np.concatenate((stats,[stats[0]]))
    angles = np.concatenate((angles,[angles[0]]))
    fig=plt.figure(figsize=(10,20))

    ax = fig.add_subplot(111, polar=True)
    ax.plot(angles, stats, 'o',  linewidth=2, color='red')
    ax.fill(angles, stats, alpha=0.25, color='red')
    ax.set_thetagrids(angles * 180/np.pi, labels)
    ax.tick_params(pad=35)
    ax.set_rmax(1)
    ax.tick_params(axis='y', which='major', labelsize=14)

    ax.set_rticks([round(i,1) for i in np.linspace(0,1,11)])
    ax.set_rlabel_position(0)
    # ax.set_title('Reference: '+refname)
    ax.tick_params(axis='x', which='major', labelsize=18, grid_linestyle='-')

    ax.grid(True)
    sns.set_style("white")

Parameters not shown

In some cases the model parameters are not shown and an empty form, non-editable, is shown

External Validation in Prediction section

Is there any way to give a different activity name than the one used for building the model in order to make a prediction and compare it with the experimental one? Then I will be able to obtain quality values such as sensitivity, specificity, ... and plots to validate my test sets.

models sorting

I would like to have a way to filter my models by qualitative and sort them by MCC.

Building output in TSV

when TSV is selected, the output is saved in flame_API folder. I suggest to give the power to the enduser to save and name the file wherever he/she wants.

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.