Git Product home page Git Product logo

meta-heuristica's Introduction

  • 👋 Hi, I’m @mariobigai
  • 👀 I’m interested in control systems, microtrollers and optimization systems
  • 🌱 I’m currently learning Python to my graduation project (Fuzzy Takagi-Sugeno Modeling of Buck-boost converter and optimization of a Adaptativa Fuzzy-PID controller)
  • 💞️ I’m looking to collaborate on electrical engineering projects.
  • 📫 How to reach me [email protected]

meta-heuristica's People

Contributors

mariobigai avatar

Watchers

 avatar

Forkers

chaves98

meta-heuristica's Issues

Coisas a fazer no BBCSO

  • Retirar a elitismo na selação de SEEKING e TRACING
  • Modificar roleta para retornar a lista de selecionados, para retirar a reposição.

`def roulette(values, fitness_values):
max = sum([fit for fit in fitness_values])
if max == 0.0:
return values[np.random.choice(np.array(values))]

selection_probs = [fit/max for fit in fitness_values]

return values[np.random.choice(len(values), p=selection_probs)]`

` def seleciona_tracing_seeking(self):
#Ordenando por fitness crescente - é aqui que usamos o lt da classe Gato
self.gatos.sort(reverse=True)

    n_gatos_tracing = math.floor(self.parametros['MR']*self.n_gatos)

    #Separa os gatos em TRACING e SEEKING de acordo com o MR - Porcentagem de gatos fazendo Tracing
    for gato_index in range(0, n_gatos_tracing):
        self.gatos[gato_index].tipo = Tipo_de_Gato.TRACING
    for gato_index in range(n_gatos_tracing, self.n_gatos):
        self.gatos[gato_index].tipo = Tipo_de_Gato.SEEKING`

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.