Git Product home page Git Product logo

movado's Introduction

Table of Contents

  1. Installation
  2. Usage
  3. Parameters

Installation

Movado needs python 3.6 or higher. Install it through pip (on many linux systems you need to use pip3 to force python3 installation):

pip3 install --user --no-cache movado

Usage

Movado exposes just an annotation which you need to apply to the fitness function you want to approximate:

@approximate(outputs=3)
def fitness(point: List[Number]) -> List[Number]:
    # my fitness logic

class SomeClass:
    def __init__():
        ...
    @approximate(outputs=1)
    def fitness(self, point: List[Number]) -> List[Number]:
        # this is also allowed

The only mandatory parameter to approximate is the number of objectives of your optimization problem, in the above case the fitness function returns a list of 3 floats and takes as input a list of numbers. Fitness Function Structure:

  1. the fitness function must take only a list of numbers as input. If we approximate a method in a class self is allowed as first parameter but it must be strictly followed by the list of numbers
  2. the fitness function must output a list of numbers with constant length between fitness evaluation

Parameters

Other than outputs several other optional parameters are available

Parameter Description Default Value
disabled if True the approximation False
  is disabled  
stochastic if True caching of fitness False
  calls is disabled  
estimator estimator to use HoeffdingAdaptiveTree
controller controller to user Mab

Associated Publication

@inproceedings{paletti2021online,
  title={Online Learning RTL Synthesis for Automated Design Space Exploration},
  author={Paletti, Daniele and Peverelli, Francesco and Conficconi, Davide and Santambrogio, Marco D},
  booktitle={2022 IEEE International Parallel and Distributed Processing Symposium Workshops (IPDPSW)},
  year={2022},
  organization={IEEE}
}

movado's People

Contributors

dpaletti avatar

Stargazers

 avatar  avatar Timothy avatar  avatar Davide Conficconi avatar

Watchers

 avatar  avatar

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.