Giter Club home page Giter Club logo

Comments (1)

thieu1995 avatar thieu1995 commented on May 18, 2024

Hi @MohammedQaraad
I can't help you with that because it is depended on your fitness function to draw this kind of figure.

After training the model, you have the history object.
Read it here:
https://mealpy.readthedocs.io/en/latest/pages/models/mealpy.utils.html#module-mealpy.utils.history

  • To access all of the solutions: model.history.list_population

  • To access the global best solutions after all generations: model.history.list_global_best

  • The format of:

    • list_population = [population_at_epoch0, population_at_epoch1, ...., population_at_max_epoch]
    • population = [agent0, agent1, ..., agentN]
    • agent = [ position, target]
    • target = [fitness, objective_list]
    • objective_list = [obj1, obj2, ...]
    • list_global_best = [global_best_at_epoch0, ..., global_best_at_max_epoch]
    • global_best = agent = [position, target]

https://mealpy.readthedocs.io/en/latest/pages/models/mealpy.html#module-mealpy.optimizer

So based on all information above, you can draw your own fitness function with position of agents.

from mealpy.

Related Issues (20)

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.