satellital image clasification with neural networks step implemented – final report

17
Satellital Image Clasification with neural networks Step implemented – Final Report Susana Arias, Héctor Gómez UNIVERSIDAD TÉCNICA PARTICULAR DE LOJA www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Upload: tyler

Post on 14-Jan-2016

21 views

Category:

Documents


0 download

DESCRIPTION

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008. Satellital Image Clasification with neural networks Step implemented – Final Report Susana Arias, Héctor Gómez UNIVERSIDAD TÉCNICA PARTICULAR DE LOJA ECUADOR. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Satellital Image Clasification with neural networks  Step implemented – Final Report

Satellital Image Clasification with neural networks

Step implemented – Final Report

Susana Arias, Héctor GómezUNIVERSIDAD TÉCNICA PARTICULAR DE LOJA

ECUADOR

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 2: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report

• Satellital Image Clasification use a neural network for clasification the percentage of land use of a satellite image.

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 3: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report

First Solution

● We decide to compiler the windows's application in

Linux, for that We use a mono's program (C#

interface for Linux).

1. Create info about mono repository: cd /etc/yum.repos.d

2. Download and install: wget

http://www.go-mono.com/download-stable/rhel-4-i386/mo

no.repo

3. We sure Linux kernel can run Mono applications

"natively" (like Windows), without using "mono" every

time. Following these directions, We create a script.

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 4: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report

• Problems encountered:

Execute the commands only like root.

[alumno@m150-e2gris1 rn]$ ./monos

./monos: line 18: /proc/sys/fs/binfmt_misc/register: Permission denied

[alumno@m150-e2gris1 rn]$ sudo ./monos

– Solution

Install mono´s program in the worker node

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 5: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report

Second Solution

• We translate the application from .net to C language with MPI libraries.

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 6: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report

Second Solution

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

#include <stdlib.h>

#include <stdio.h>

#include <math.h>

#include "mpi.h"

/********** M A I N ******************************************************************************/

int numprocesses, procnum;

int main(int nargs, char* argv[]) {

NET Net;

BOOL Stop;

int result=MPI_Init(&nargs, &argv);

MPI_Comm_size(MPI_COMM_WORLD, &numprocesses); // get total number of processes

MPI_Comm_rank(MPI_COMM_WORLD, &procnum); // get process number for this process

file bf.c

Page 7: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report● Then we compiler MPI en UI, $ mpiCC● Compiler our application, $ mpiCC -o bf bf.c● Then create a .jdl

Type = “Job”;

JobType = “MPICH”;

Executable = “bf”;

CPUNumber = 10;

StdOutput = “output”;

StdError = “error”;

InputSandbox = {“bf”};

OutputSandbox = {“BPN.txt”};

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 8: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report•We compiler bf.c ONLY in the 64 bits machine, do not compiler the machine in 32 bits because do not have installed MPI.

[app01@m111-e2gris1 BF]$ glite-wms-job-submit -a -o jid bf.jdl

[app01@m111-e2gris1 BF]$ glite-wms-job-status -i jid

[app01@m111-e2gris1 BF]$ cd

/tmp/jobOutput/app01_776TAA4JvsR-NP2gRkgamA/BPN.txt

NMSE is 0.106 on Training Set and 0.133 on Test Set

NMSE is 0.105 on Training Set and 0.129 on Test Set

NMSE is 0.104 on Training Set and 0.128 on Test Set

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 9: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report•Then the application use a Storage Element for read the input files

(Satellital Image) and run in the worker nodes.

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

JOB GET OUTPUT OUTCOME

Output sandbox files for the job:https://m05-e2gris1.eela.ufrj.br:9000/aUZWfM3V6-ftNkvfdG3MGAhave been successfully retrieved and stored in the directory:/tmp/jobOutput/app01_aUZWfM3V6-ftNkvfdG3MGA

[app01@m111-e2gris1 app01_aUZWfM3V6-ftNkvfdG3MGA]$ ls

BPN.txt error output watchdog.log

Page 10: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report•Finally We use a GENIUS portal for submit the jobs, not with MPI.

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 11: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report: MrBayes As the same time, We worked in another

application like Mrbayes (bionformatics), We install mrbayes at the UI, and We try to run mrbayes with condor, but it was not possible because there was not condor in the CE, finally We saw how to mrbyes runs with mpi and find out how to put some directives to run in the WN.

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 12: Satellital Image Clasification with neural networks  Step implemented – Final Report

Final Report: MrBayes

•We send MrBayes application to GENIUS

portal.

• Normally the time for run is 2 weeks, in 1

CPU, and the output files is a string

sequence of 360GB

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 13: Satellital Image Clasification with neural networks  Step implemented – Final Report

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Page 14: Satellital Image Clasification with neural networks  Step implemented – Final Report

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Thanks!

Page 15: Satellital Image Clasification with neural networks  Step implemented – Final Report

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Questions?

Page 16: Satellital Image Clasification with neural networks  Step implemented – Final Report

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008

Questions?

Page 17: Satellital Image Clasification with neural networks  Step implemented – Final Report

Thanks!

www.eu-eela.eu Itacuruça – Brazil, november 2 -15, 2008