https://github.com/martincorona007/artificial-intelligence
Simple Linear Regression, Multiple Linear Regression, Genetic Algorithm
https://github.com/martincorona007/artificial-intelligence
ai algorithm-genetic artificial-intelligence genetic-algorithm genetic-programming-algorithm jade jade-agents multiple-linear-regression simple-linear-regression
Last synced: about 2 months ago
JSON representation
Simple Linear Regression, Multiple Linear Regression, Genetic Algorithm
- Host: GitHub
- URL: https://github.com/martincorona007/artificial-intelligence
- Owner: martincorona007
- Created: 2020-11-25T16:18:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-15T17:51:15.000Z (over 4 years ago)
- Last Synced: 2024-12-26T07:42:28.057Z (6 months ago)
- Topics: ai, algorithm-genetic, artificial-intelligence, genetic-algorithm, genetic-programming-algorithm, jade, jade-agents, multiple-linear-regression, simple-linear-regression
- Language: Java
- Homepage:
- Size: 1.87 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Artificial-Intelligence
## How to compile ##
## SLR Hands-on 2 ##
(Inside SLR Folder)
1. ```javac SLR.java```
2. ```java SLR```
## MLR Hands-on 4 ##
(Inside MLR Folder)
1. ```javac MLR.java```
2. ```java MLR```
## Genetic Algorithm Hands-on 6 ##
(Inside Genetic Algorithm Folder)
1. ```javac Main.java```
2. ```java Main```## SLR with JADE Hands-on 3 ##
(Inside JADE folder)
1. ```javac -cp lib/jade.jar src/examples/slr/SLR.java src/examples/slr/SLRAgent.java src/examples/slr/SLRGui.java -d classes/```
2. ```java -cp lib/jade.jar:classes/ jade.Boot -gui agente:examples.slr.SLRAgent```
## MLR with JADE Hands-on 5 ##
(Inside JADE folder)
1. ```javac -cp lib/jade.jar src/examples/mlr/MLR.java src/examples/mlr/MLRAgent.java src/examples/mlr/MLRGui.java -d classes/```
2. ```java -cp lib/jade.jar:classes/ jade.Boot -gui agente:examples.mlr.MLRAgent```
## Genetic Algorithm with JADE Hands-on 7 ##
(Inside JADE folder)
1. ```javac -cp lib/jade.jar src/examples/H7/Population.java src/examples/H7/Individual.java src/examples/H7/GeneticAlgorithm.java src/examples/H7/Main.java -d classes/```
2. ```java -cp lib/jade.jar:classes/ jade.Boot -gui agente:examples.H7.Main```## Outputs ##
1.SLR with JADE Hands-on 3

2.MLR with JADE Hands-on 5

3. Genetic Algorithm with JADE Hands-on 7

4. Genetic Algorithm Hands-on 6
## Representation ##

## SLR DS table ##
Bennetton case https://www.displayr.com/what-is-linear-regression/

## MLR DS table ##
