All Projects → BigDataRepublic → Bdr Analytics Py

BigDataRepublic / Bdr Analytics Py

Licence: apache-2.0
Common data science and data engineering utilities to help us perform analytics. Our toolbox for data scientists, licensed under Apache-2.0

Projects that are alternatives of or similar to Bdr Analytics Py

Ukbiobank deep pretrain
Pretrained neural networks for UK Biobank brain MRI images. SFCN, 3D-ResNet etc.
Stars: ✭ 29 (-3.33%)
Mutual labels:  jupyter-notebook
Pytorch Course
JULYEDU PyTorch Course
Stars: ✭ 947 (+3056.67%)
Mutual labels:  jupyter-notebook
Stock2vec
Variational Reccurrent Autoencoder for Embedding stocks to vectors based on the price history
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Ensemble Machine Learning Cookbook
Ensemble Machine Learning Cookbook, published by Packt
Stars: ✭ 29 (-3.33%)
Mutual labels:  jupyter-notebook
Deep Chemometrics
Using deep learning approaches and convolutional neural networks (CNN) for spectroscopical data (deep chemometrics)
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Tech Terms
A repository of technical terms and definitions. As flashcards.
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Kaggle rsna 2nd place solution
Notebooks to accompany the blog posts about the 2nd place Kaggle RSNA winners: https://github.com/darraghdog/rsna
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Qa Rankit
QA - Answer Selection (Rank candidate answers for a given question)
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Deep Learning Book Chapter Summaries
Attempting to make the Deep Learning Book easier to understand.
Stars: ✭ 952 (+3073.33%)
Mutual labels:  jupyter-notebook
Datahacksummit 2017
Apache Zeppelin notebooks for Recommendation Engines using Keras and Machine Learning on Apache Spark
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Stock price trend fft
Stock price trend analysis using Fourier transform
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Pytorch projects
A collection of Machine Learning Google_Colab_Notebooks
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Quantumcircuitbornmachine
gradient based training of Quantum Circuit Born Machine
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Datenguide Python
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Docker Iocaml Datascience
Dockerfile of Jupyter (IPython notebook) and IOCaml (OCaml kernel) with libraries for data science and machine learning
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Deep Hedging
Deep Hedging Demo - An Example of Using Machine Learning for Derivative Pricing.
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Sparkmagic
Jupyter magics and kernels for working with remote Spark clusters
Stars: ✭ 954 (+3080%)
Mutual labels:  jupyter-notebook
Udacity Ml Nanodegree
Projects for Udacity's Machine Learning Engineer Nanodegree
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Machine Learning Alpine
Alpine Container for Machine Learning
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook
Poi2vec
POI2Vec: Geographical Latent Representation for Predicting Future Visitors
Stars: ✭ 30 (+0%)
Mutual labels:  jupyter-notebook

PyPI version Build Status

BigData Republic Analytics (python)

Our analytics library to quickly get our data scientists up to speed, on the python platform

User documentation can be found at https://bigdatarepublic.github.io/bdr-analytics-py/

Installation

Installation is done through the pip command line utility.

pip install bdranalytics

Using the Spark notebooks

Some notebooks in the notebooks folder use spark. Check the spark documentation for running jupyter with a spark contet.

But in short, for windows

set PYSPARK_DRIVER_PYTHON_OPTS=notebook
set PYSPARK_DRIVER_PYTHON=jupyter
[spark_install_dir]\bin\pyspark

And for nix

export PYSPARK_DRIVER_PYTHON_OPTS=notebook
export PYSPARK_DRIVER_PYTHON=jupyter
[spark_install_dir]/bin/pyspark

Contributing

To contribute, please fork or branch from master and submit a pull-request. Guidelines for an acceptable pull-request:

  • PEP8 compliant code
  • At least one line of documentation per class, function and method.
  • Tests covering edge cases of your code.

Development environment

To create the development environment with conda, run:

conda env create -f environment-dev.yml

source activate bdranalytics-dev

Running the test

To run all tests:

source activate bdranalytics-dev python setup.py test

Creating a package dist

To create a dist from a local checkout (when developing on this module):

source activate bdranalytics-dev python setup.py sdist

Running the installation script

This uses the setup.py script directly, useful for testing how the dist will be installed without creating the dist.

To just install the package and main dependencies from a local checkout (when going to use this module):

python setup.py install

Creating the sphinx documentation

To update html files:

source activate bdranalytics-dev
cd doc
make clean && make source && make 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].