Giter Club home page Giter Club logo

mlx's Introduction

MLx

Yet another machine learning framework.

How to install

pip install pymlx

Note that PyMLx is only available on Linux at this point.

##Q&As

  1. What's the OSS license of this library
  • BSD3

mlx's People

Contributors

zer0n avatar

Stargazers

 avatar Nam Thai avatar  avatar Ichsan Haryadi avatar Xuemin Zhao avatar  avatar Junli Gu avatar  avatar Vishal Belsare avatar Wannaphong Phatthiyaphaibun avatar Gilbert Verdian avatar Josip Delić avatar Peter Jackson avatar Yifu Diao avatar

Watchers

James Cloos avatar  avatar Nam Thai avatar

mlx's Issues

Remove libxgboostwrapper.so

libxgboostwrapper.so sgould be removed from source i get a ELF error (64 Bit vs 32 Bit). It is anyway included in xgboost.

Implement new API for Fearturizer API

Current way:

Featurizer(handlers: List[Handler])

An alternative way

listable = lambda t: Union[t, List[t]]

Featurizer(
    no_op: listable(str)=None,
    categorical: listable(str)=None, 
    one_hot: listable(str)=None, 
    binning: listable(str)=None, 
    mappers: listable(Tuple[listable[str], listable[str], Callable]), 
    modules: listable(module)=None,   # if there are many or complex mappers, better define them in a module
    ... , 
    others: listable(Handler)=None)

For example

feat = Featurizer(
    no_op=['Age', 'Capital Gain', 'Hours per week', 'Years in Education', 'Capital Loss'],
    categorical=['Education', 'Marital Status'],
    one_hot='Native Country'
)

This would make data scientist's work cleaner.

@txhai, I will explain this idea to you later.

No random state parameter on random_sweep function

Since the random_sweep function won't accept random state, RandomizedSearchCV runs with the default random state, which is None. This makes the result different every time one uses this function for the same data.

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.