All Projects → hottbox → Hottbox

hottbox / Hottbox

Licence: apache-2.0
HOTTBOX: Higher Order Tensors ToolBOX.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Hottbox

Cylon
Cylon is a fast, scalable distributed memory data parallel library for processing structured data
Stars: ✭ 140 (-8.5%)
Mutual labels:  data
Apis
Making data readily available to anyone interested
Stars: ✭ 143 (-6.54%)
Mutual labels:  data
Azkarra Streams
🚀 Azkarra is a lightweight java framework to make it easy to develop, deploy and manage cloud-native streaming microservices based on Apache Kafka Streams.
Stars: ✭ 146 (-4.58%)
Mutual labels:  data
Coffee Quality Database
Building the Coffee Quality Institute Database
Stars: ✭ 141 (-7.84%)
Mutual labels:  data
Electrophysiologydata
A list of openly available datasets in (mostly human) electrophysiology.
Stars: ✭ 143 (-6.54%)
Mutual labels:  data
Xlsx.jl
Excel file reader and writer coded in pure Julia.
Stars: ✭ 145 (-5.23%)
Mutual labels:  data
Kea
Production Ready State Management for React
Stars: ✭ 1,805 (+1079.74%)
Mutual labels:  data
Tera
An Internet-Scale Database.
Stars: ✭ 1,846 (+1106.54%)
Mutual labels:  data
Generatedata
A powerful, feature-rich, random test data generator.
Stars: ✭ 1,883 (+1130.72%)
Mutual labels:  data
App Dirs Rs
Put your Rust app's data in the right place on every platform
Stars: ✭ 147 (-3.92%)
Mutual labels:  data
Gofakeit
Random fake data generator written in go
Stars: ✭ 2,193 (+1333.33%)
Mutual labels:  data
Crawler China Mainland Universities
中国大陆大学列表爬虫
Stars: ✭ 143 (-6.54%)
Mutual labels:  data
Low Rank Bilinear Pooling
Fine-grained classification via second order statistics in a compact end-to-end trainable model
Stars: ✭ 145 (-5.23%)
Mutual labels:  toolbox
Tables.jl
An interface for tables in Julia
Stars: ✭ 141 (-7.84%)
Mutual labels:  data
Pyfunctional
Python library for creating data pipelines with chain functional programming
Stars: ✭ 1,943 (+1169.93%)
Mutual labels:  data
Data science blogs
A repository to keep track of all the code that I end up writing for my blog posts.
Stars: ✭ 139 (-9.15%)
Mutual labels:  data
Fiware Orion
An implementation of the Publish/Subscribe Context Broker GE, providing NGSI interfaces.
Stars: ✭ 144 (-5.88%)
Mutual labels:  data
Geodev Hackerlabs
A place to learn how to build geo apps with the ArcGIS Platform.
Stars: ✭ 151 (-1.31%)
Mutual labels:  data
Audioowl
Fast and simple music and audio analysis using RNN in Python 🕵️‍♀️ 🥁
Stars: ✭ 151 (-1.31%)
Mutual labels:  data
Datacompy
Pandas and Spark DataFrame comparison for humans
Stars: ✭ 147 (-3.92%)
Mutual labels:  data

HOTTBOX: Higher Order Tensors ToolBOX

|Travis|_ |Appveyor|_ |Coveralls|_ |PyPi|_ |Binder|_

.. |Travis| image:: https://img.shields.io/travis/hottbox/hottbox/master.svg?label=TravisCI .. _Travis: https://travis-ci.org/hottbox/hottbox/

.. |Appveyor| image:: https://ci.appveyor.com/api/projects/status/sh2rk41gpn26h7a7/branch/master?svg=true .. _Appveyor: https://ci.appveyor.com/project/IlyaKisil/hottbox-6jq6a

.. |Coveralls| image:: https://coveralls.io/repos/github/hottbox/hottbox/badge.svg?branch=master .. _Coveralls: https://coveralls.io/github/hottbox/hottbox?branch=master

.. |PyPi| image:: https://badge.fury.io/py/hottbox.svg .. _PyPi: https://badge.fury.io/py/hottbox

.. |Binder| image:: https://mybinder.org/badge.svg .. _Binder: https://mybinder.org/v2/gh/hottbox/hottbox-tutorials/master?urlpath=lab/

Welcome to the toolbox for tensor decompositions, statistical analysis, visualisation, feature extraction, regression and non-linear classification of multi-dimensional data. Not sure you need this toolbox? Give it a try on mybinder.org <https://mybinder.org/v2/gh/hottbox/hottbox-tutorials/master?urlpath=lab/>_ without installation.

.. contents:: Table of Contents :local: :depth: 1

Installing HOTTBOX

There are two options available:

  1. Install hottbox as it is from pypi.org <https://pypi.org/project/hottbox/>_ by executing:

    .. code-block:: bash

    # Create virtual environment based on python 3.7
    pipenv --python 3.7
    
    # Install hottbox from pypi
    pipenv install hottbox
    
  2. Alternatively, you can clone the source code which you can find on our GitHub repository <https://github.com/hottbox/hottbox>_ and install hottbox in editable mode:

    .. code-block:: bash

    # Clone source code and cd into it
    git clone https://github.com/hottbox/hottbox.git
    cd hottbox
    
    # Create virtual environment based on python 3.7
    pipenv --python 3.7
    
    # Install hottbox from source
    pipenv install -e .
    

    This will allow you to modify the source code in the way it will suit your needs. Additionally, you will be on top of the latest changes and will be able to start using new stable features which are located on develop <https://github.com/hottbox/hottbox/tree/develop>_ branch until the official release. The list of provisional changes for the next release (and the CI status) can be also be found on develop branch in CHANGELOG <https://github.com/hottbox/hottbox/blob/develop/CHANGELOG.md>_ file.

    **NOTE:** To manage working environment, we use `pipenv <https://pipenv.kennethreitz.org/en/latest/>`_. This tools is thought of as a successor of ``pip`` and essentially uses ``pip`` and ``virtualenv`` under the hood. If you haven't made a switch yet (or don't want to) then:
    
    * Instead of ``pipenv install`` simply use ``pip install``
    * Instead of ``pipenv run ...`` make sure that you are in correct virtual environment
    

Running tests

hottbox is under active development, therefore, if you have chosen the second installation option, it is advisable to run tests in order to make sure that your current version of hottbox is stable. First, you will need to install pytest and pytest-cov packages:

.. code-block:: bash

pipenv install -e '[.tests]'

To run tests, simply execute inside the main directory:

.. code-block:: bash

# Runs pytest within a virtual environment
pipenv run pytest -v --cov hottbox

HOTTBOX tutorials

Please check out our repository <https://github.com/hottbox/hottbox-tutorials>_ with tutorials on hottbox api and theoretical background on multi-linear algebra and tensor decompositions.

Development

We welcome new contributors of all experience levels. Detailed guidelines can be found on our web site <https://hottbox.github.io/stable/development_guide/index.html>_.

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].