Skip to content

Commit

Permalink
computationally irrelevant:
Browse files Browse the repository at this point in the history
modified readme.md
  • Loading branch information
TillF committed Dec 7, 2017
1 parent 52e01ed commit a88e2e0
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions readme.md
@@ -1,34 +1,35 @@
Particle Swarm Optimization and Dynamically Dimensioned Search, optionally using parallel computing based on Rmpi
R-package ppso: Particle Swarm Optimization and Dynamically Dimensioned Search, optionally using parallel computing based on Rmpi
======================================================================

**This is a fork of ppso (version 0.9994) from https://www.rforge.net/ppso/**

**Originally written and maintained by Till Franke**
**This is a replacement of the repository formerly maintained at http://rforge.net/ppso/ (version 0.9994)**

## Description
(Optionally parallelized) optimization using PSO (Particle Swarm Optimzation) or DDS (Dynamically Dimensioned Search) algorithms, which excell for multidimensional (multi-parameter) functions with many local extrema and a restricted number of function evaluations.
The parallelized version builds on Rmpi and is intended for highly computationally intensive objective functions (>20 s evaluation time).
Another focus of this package is the possibility to resume interrupted optimization runs from the intermediate project files.
These features make this package useful for the automatic calibration of complex numerical models (e.g. hydrological models).

For bug fixes, comments or further development please open an issue or contact: franke@uni-potsdam.de or mreich@posteo.de.
For bug fixes, comments or further development please open an issue.

## Installation

1. Start R
2. Install package via devtools:
`devtools::install_github("marcianito/ppso")`

3. load packages:
2. install package `devtools` and load it: `library(devtools)`
3. Install package `ppso` via `devtools`:
`devtools::install_github("TillF/ppso")`
4. load package:
`library(ppso)`;

## Dependencies
basic functionality: no further dependencies; optionally R-packages `rgl`, `lhs`
### for installation only
* R-packages: `devtools`
* system libraries for `devtools`
in debian install using:
`apt-get update && apt-get install libssl-dev`;
in Windows may require RTools (I don't quite remember)
### in parallel mode (for computationally-demanding functions, e.g. model calibration)
* R-packages: `Rmpi` (may inquire further system installations, please check at http://www.stats.uwo.ca/faculty/yu/Rmpi/

### Computationally
* r-base version 3.3.1
* following R-packages: devtools, ??
* system libraries for devtools

in debian install using:
`apt-get update && apt-get install libssl-dev`

0 comments on commit a88e2e0

Please sign in to comment.