gonito/README.md

58 lines
2.1 KiB
Markdown
Raw Normal View History

2015-09-30 21:10:09 +02:00
Gonito platform
===============
2019-08-24 10:39:10 +02:00
[Gonito](https://gonito.net) (pronounced _ɡɔ̃ˈɲitɔ_) is a Kaggle-like
2015-12-20 19:52:02 +01:00
platform for machine learning competitions (disclaimer: Gonito is
neither affiliated with nor endorsed by [Kaggle](https://www.kaggle.com)).
2015-09-30 21:10:09 +02:00
What's so special about Gonito:
* free & open-source (AGPL), you can use it your own, in your
company, at your university, etc.
2015-12-20 19:52:02 +01:00
* git-based (challenges and solutions are submitted only with git).
2015-09-30 21:10:09 +02:00
2019-08-24 10:39:10 +02:00
See the home page (and an instance of Gonito) at https://gonito.net .
2015-09-30 21:10:09 +02:00
Installation
------------
2019-08-24 10:39:10 +02:00
[Gonito](https://gonito.net) is written in [Haskell](https://www.haskell.org) and uses
2015-09-30 21:10:09 +02:00
[Yesod Web Framework](http://www.yesodweb.com/), but all you need is
just [the Stack tool](https://github.com/commercialhaskell/stack). See https://github.com/commercialhaskell/stack
for instruction how to install Stack on your computer.
2015-12-20 19:52:02 +01:00
By default, Gonito uses [Postgresql](http://www.postgresql.org/), so it needs to be installed and running at your computer.
2015-09-30 21:10:09 +02:00
After installing Stack:
2015-12-20 19:52:02 +01:00
createdb -E utf8 gonito
git clone git://gonito.net/geval
git clone git://gonito.net/gonito
cd gonito
stack setup
2019-09-24 22:51:46 +02:00
# before starting the build you might need some non-Haskell dependencies, e.g. in Ubuntu:
# sudo apt-get install libbz2-dev liblzma-dev libpcre3-dev libcairo-dev libfcgi-dev
2015-12-20 19:52:02 +01:00
stack build
stack exec yesod devel
2015-09-30 21:10:09 +02:00
The last command will start the Web server with Gonito (go to
2015-12-20 19:52:02 +01:00
http://127.0.0.1:3000 in your browser).
2015-09-30 21:10:09 +02:00
Authors
-------
* Filip Graliński
2016-12-03 14:35:57 +01:00
References
----------
@inproceedings{gralinski:2016:gonito,
title="{Gonito.net - Open Platform for Research Competition, Cooperation and Reproducibility}",
author={Grali{\'n}ski, Filip and Jaworski, Rafa{\l} and Borchmann, {\L}ukasz and Wierzcho{\'n}, Piotr},
booktitle="{Branco, Ant{\'o}nio and Nicoletta Calzolari and Khalid Choukri (eds.), Proceedings of the 4REAL Workshop: Workshop on Research Results Reproducibility and Resources Citation in Science and Technology of Language}",
pages={13--20},
year=2016,
url="http://4real.di.fc.ul.pt/wp-content/uploads/2016/04/4REALWorkshopProceedings.pdf"
}