Questions tagged [multi-agent]

A Multi-Agent System (MAS) is a system composed of multiple interacting intelligent agents within a given environment based on the new paradigm for conceptualizing, designing, and implementing software systems.

A Multi-Agent system (MAS) is a computerized system composed of multiple interacting intelligent agents within an environment based on the new paradigm for conceptualizing, designing, and implementing software systems. Multi-agent systems can be used to solve problems that are difficult or impossible for an individual agent or a monolithic system to solve. Intelligence may include some methodical, functional, procedural or algorithmic search, find and processing approach.

155 questions
3
votes
1 answer

AKKA vs JADE to represent agent system

I am working on a project within which I'm representing traffic signal controllers as (master) agents, and they communicate with each other. I was going to use JADE for this, but then I came across AKKA. Now I am little confused because what I have…
Exorcismus
  • 2,243
  • 1
  • 35
  • 68
2
votes
0 answers

Using RLlib for a custom multi-agent gym environment

I am trying to set up a custom multi-agent environment using RLlib, but either I am using the once available online or I am making one, I am being encountered by the same errors as mentioned below. Please help me out. I have installed whatever they…
2
votes
0 answers

How does using another agent's experience impact the efficacy of learning in deep reinforcement learning

I am doing a project where I have multiple soft actor-critic sub-agents learning at the same time in an environment using shared experiences. Each sub-agent selects an action using their own policy, the overall agent combines these into a single…
2
votes
0 answers

Azure DevOps VsTest multi-agent parallel

I use Azure DevOps Server 2020 with self hosted agents and created a CI pipeline which executes all tests in parallel on one agent. The ~5000 tests (no UI tests) need around 7min to complete. That's way to slow for our needs, so to speed things up I…
2
votes
0 answers

Distributed optimization with a common variable among them

I am new to optimization techniques and have a doubt in my approach. Consider I have an agent which tries to optimize on 3 variables C1,x11,x12 to minimize power. I have 60 such agents which constitute a system. All these agents can be grouped into…
2
votes
1 answer

Internal Action was not loaded Error: java.lang.ClassNotFoundException

I am trying to run an implementation a jason code that is using some Internal Actions. The interpreter is showing that it was not possible to find the "java" code of the internal action, as showed: Server running on…
Cleber Jorge Amaral
  • 1,316
  • 13
  • 26
2
votes
1 answer

Is there any way to instantiate multiple agents using same source file in Jason?

I have 3 agents (p1, p2 and p3) that are sharing the same code (participant.asl). I'd like to know if it is possible to use some command to instantiate like 50 of this agents, like an array, something like "p[1..50] participant"? MAS testMAS { …
2
votes
1 answer

how execute an JADE agent from ordinary(not agent) java class?

I want to send message to an agent from other class that is not an agent. for example Servlet or main static class.
2
votes
1 answer

How add messages (integer values) from multiple agents in another agent using JADE

I have the following requirement in JADE. I have to create multiple agents whose task is to generate random numbers. Another receiver agent collects all the random numbers generated and sums them up to make a decision. This is the sender agent…
EyesOfÖzil
  • 309
  • 1
  • 9
2
votes
0 answers

Million agents multi-agent system implementation in C++

I'm trying to implement a multi-agent system in C++. To maximize the number of agents per PC, I've thought of the following high-level design: Each agent will be represented as an instance of a class. (In a multi-agent system, an agent is an…
A.K
  • 91
  • 4
2
votes
1 answer

Errors with JADE platform

Good evening, I tried to use the JADE platform (official site -> http://jade.tilab.com/) I followed tutorials that I found on youtube Here's the code import jade.core.Profile; import jade.core.ProfileImpl; import jade.core.Runtime; import…
2
votes
2 answers

Plugin architecture for .NET multi-agent simulation (runtime load/unload)

DESCRIPTION I am currently designing an architecture for a C# multiagent simulation, where agent actions are driven by many modules in their "brain", which may read sensors, vote for an action or send messages/queries to other modules (all of this…
Daniele
  • 21
  • 1
2
votes
1 answer

How to model a very large world in NetLogo?

I need to create a very large grid of patches to have GIS information of a very large network (such as a city-wide network). My question is how to get NetLogo to model such a world? When I set the max-pxcor and max-pycor to large numbers, it stop…
Saeed
  • 61
  • 7
2
votes
2 answers

Simple Prolog implement about multi-agent argumentation

New to logic programming (Prolog). Come across a simple question but dont know how to code it in prolog. Question is like you have several arguements: argument(a),argument(b)..., and several attack relations like attack(a,b) which means argument a…
fred
  • 55
  • 7
2
votes
1 answer

How to reverse or construct a belief in jason (agentspeak)?

I would like to do the following: I have a initial goal with an argument as a belief, and I would like to reverse it, so that the belief's argument becomes the new belief, and the argument becomes the beliefname. Something like this: //Agent asker…
Adamsan
  • 662
  • 1
  • 15
  • 27
1
2
3
10 11