All Projects → JarnoRFB → Incense

JarnoRFB / Incense

Licence: mit
Interactively retrieve data from sacred experiments.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Incense

Eva
🐳🐬Eva : 优雅,简约的完整博客项目 [前后端] (Eva: A concise, simple Blog Project. [FD/BD]) 🐋
Stars: ✭ 57 (-16.18%)
Mutual labels:  mongodb
Spring Boot Extend
在springboot基础上的扩展项目,快速集成Zookeeper、Dubbo、Apollo、Mybatis多数据源
Stars: ✭ 63 (-7.35%)
Mutual labels:  mongodb
Mall Learning
mall学习教程,架构、业务、技术要点全方位解析。mall项目(40k+star)是一套电商系统,使用现阶段主流技术实现。涵盖了SpringBoot 2.3.0、MyBatis 3.4.6、Elasticsearch 7.6.2、RabbitMQ 3.7.15、Redis 5.0、MongoDB 4.2.5、Mysql5.7等技术,采用Docker容器化部署。
Stars: ✭ 10,236 (+14952.94%)
Mutual labels:  mongodb
Rest Hapi
🚀 A RESTful API generator for Node.js
Stars: ✭ 1,102 (+1520.59%)
Mutual labels:  mongodb
Geotools
Official GeoTools repository
Stars: ✭ 1,109 (+1530.88%)
Mutual labels:  mongodb
Laravel Mongodb Passport
A package to get Laravel Passport working with MongoDB
Stars: ✭ 64 (-5.88%)
Mutual labels:  mongodb
Spring Boot Fx
🎈Spring Boot, JavaFX, bootstrap3, mongoDB
Stars: ✭ 57 (-16.18%)
Mutual labels:  mongodb
Shw server
使用SpringCloud和Spring WebFlux开发的学生作业管理系统服务端,前后端分离项目,微服务架构。支持Docker集群化部署,Redis集群化缓存,文件在线预览 压缩包预览 打包上传下载
Stars: ✭ 66 (-2.94%)
Mutual labels:  mongodb
Todo List Using Flask And Mongodb
Simple implementation of ToDo List using Flask and MongoDB along with Dockerfile and Kubernetes yaml files #Flask #Example #Docker #Kubernetes #k8s
Stars: ✭ 61 (-10.29%)
Mutual labels:  mongodb
Habitica
A habit tracker app which treats your goals like a Role Playing Game.
Stars: ✭ 8,702 (+12697.06%)
Mutual labels:  mongodb
Restfeel
RESTFeel: 一个企业级的API管理&测试平台。RESTFeel帮助你设计、开发、测试您的API。
Stars: ✭ 59 (-13.24%)
Mutual labels:  mongodb
Mern Stack Authentication
Secure MERN Stack CRUD Web Application using Passport.js Authentication
Stars: ✭ 60 (-11.76%)
Mutual labels:  mongodb
Hentergeo
基于Symfony2和MongoDB的地理位置查询演示
Stars: ✭ 64 (-5.88%)
Mutual labels:  mongodb
Docker Backup Database
Docker image to periodically backup your database (MySQL, Postgres, or MongoDB) to S3 or local disk.
Stars: ✭ 57 (-16.18%)
Mutual labels:  mongodb
Mongoose Geojson Schema
Schema definitions for GeoJSON types for use with Mongoose JS
Stars: ✭ 66 (-2.94%)
Mutual labels:  mongodb
Building A Serverless Rest Api With Nodejs
A quick and easy guide of how to hook up a single Serverless service with basic MongoDB connection and CRUD interaction.
Stars: ✭ 57 (-16.18%)
Mutual labels:  mongodb
Flask Restful Authentication
An example for RESTful authentication using nginx, uWSGI, Flask, MongoDB and JSON Web Token(JWT).
Stars: ✭ 63 (-7.35%)
Mutual labels:  mongodb
Mqtt Chat
MQTT Chat Using Mosca
Stars: ✭ 67 (-1.47%)
Mutual labels:  mongodb
Spring Examples
SpringBoot Examples
Stars: ✭ 67 (-1.47%)
Mutual labels:  mongodb
Sample Spring Cloud Webflux
sample microservices demonstrating usage of spring reactive support with spring webflux and integration spring cloud, eureka, ribbon, spring cloud gateway, spring data jpa and mongodb
Stars: ✭ 65 (-4.41%)
Mutual labels:  mongodb

.. image:: https://mybinder.org/badge_logo.svg :target: https://mybinder.org/v2/gh/JarnoRFB/incense/master?urlpath=lab/tree/demo.ipynb

.. image:: https://travis-ci.org/JarnoRFB/incense.svg?branch=master :target: https://travis-ci.org/JarnoRFB/incense

.. image:: https://codecov.io/gh/JarnoRFB/incense/branch/master/graph/badge.svg :target: https://codecov.io/gh/JarnoRFB/incense

.. image:: https://img.shields.io/lgtm/grade/python/g/JarnoRFB/incense.svg?logo=lgtm&logoWidth=18 :target: https://lgtm.com/projects/g/JarnoRFB/incense/context:python

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/ambv/black

Incense

Though automated logging of machine learning experiments results is crucial, it does not replace manual interpretation. Incense is a toolbox to facilitate manual interpretation of experiments that are logged using sacred <https://github.com/IDSIA/sacred>__. It lets you find and evaluate experiments directly in Jupyter notebooks. Incense lets you query the database for experiments by id, name or any hyperparmeter value. For each found experiment, configuration, artifacts and metrics can be displayed. The artifacts are rendered according to their type, e.g. a PNG image is displayed as an image, while a CSV file gets transformed to a pandas DataFrame. Metrics are by default transformed into pandas Series, which allows for flexible plotting. Together with sacred and incense, Jupyter notebooks offer the perfect solution for interpreting experiments as they allow for a combination of code that reproducibly displays the experiment’s results, as well as text that contains the interpretation.

Installation

Install the latest release

::

pip install incense

Or install the latest development version

::

pip install git+https://github.com/JarnoRFB/incense.git

Documentation

demo.ipynb <demo.ipynb>_ demonstrates the basic functionality of incense. You can also try it out interactively on binder <https://mybinder.org/v2/gh/JarnoRFB/incense/master?urlpath=lab/tree/demo.ipynb>_.

Contributing

We recommend using the VSCode devcontainer <https://code.visualstudio.com/docs/remote/containers>_ for development. It will automatically install all dependencies and start necessary services, such as mongoDB and JupyterLab. See <.devcontainer/docker-compose.yml>_ for details. If the output of id -u is something different than 1000 on your system, please add

::

export UID

to your .bashrc or .zshrc.

Building the container for the first time may take some time. Once in the container run

::

$ pre-commit install $ python tests/example_experiment/conduct.py

to set up the pre-commit hooks and populate the example database.

Alternatively, you can use conda to set up your local development environment.

::

$ conda create -n incense-dev python=3.6 $ conda activate incense-dev

virtualenv is required for the precommit environments.

$ conda install virtualenv

tox-conda is required for using tox with conda.

$ pip install tox-conda $ pip install -r requirements-dev.txt $ pre-commit install

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].