Skip to content

Commit

Permalink
Text updates for release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vuolleko committed Jan 23, 2017
1 parent 501a3ac commit e7dd17d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Change Log

## 0.2.2 - 0.3

- The inference problem is now contained in an Inference Task object.
- SMC-ABC has been reimplemented.
- Results from inference are now contained in a Result object.
- Integrated basic visualization.
- Added a notebook demonstrating usage with external simulators and operations.
- Lot's of refactoring and other minor changes.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016, ELFI Developers and their Assignees
Copyright (c) 2016-2017, ELFI Developers and their Assignees
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ELFI - Engine for Likelihood-Free Inference
https://github.com/dwyl/repo-badges
-->

[![Build Status](https://travis-ci.com/HIIT/elfi.svg?token=xAu1DN2J4WjCapVWLinn&branch=dev)](https://travis-ci.com/HIIT/elfi)
[![Build Status](https://travis-ci.org/HIIT/elfi.svg?branch=master)](https://travis-ci.org/HIIT/elfi)
[![Documentation Status](https://readthedocs.org/projects/elfi/badge/?version=latest)](http://elfi.readthedocs.io/en/latest/?badge=latest)

<img src="https://cloud.githubusercontent.com/assets/1233418/20178983/6e22ee44-a75c-11e6-8345-5934b55b9dc6.png" width="15%" align="right"></img>
Expand All @@ -40,6 +40,9 @@ See examples under [notebooks](notebooks) to get started. Full documentation can

Developer installation
----------------------
ELFI is currently tested only with Python 3.5. If you are new to Python, perhaps the simplest way to install it is [Anaconda](https://www.continuum.io/downloads).

Currently we recommend using Distributed 1.14.3.
```
git clone https://github.com/HIIT/elfi.git
cd elfi
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def setup(app):

# General information about the project.
project = 'ELFI'
copyright = '2016, ELFI Developers and their Assignees'
copyright = '2016-2017, ELFI Developers and their Assignees'
author = 'ELFI authors'

# The version info for the project you're documenting, acts as replacement for
Expand Down
2 changes: 1 addition & 1 deletion elfi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

__author__ = 'ELFI authors'
__email__ = 'elfi-support@hiit.fi'
__version__ = '0.2.x_dev'
__version__ = '0.3'

0 comments on commit e7dd17d

Please sign in to comment.