All Projects → cognoma → Machine Learning

cognoma / Machine Learning

Licence: other
Machine learning for Project Cognoma

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Machine Learning

Tensorflow Ml Nlp
텐서플로우와 머신러닝으로 시작하는 자연어처리(로지스틱회귀부터 트랜스포머 챗봇까지)
Stars: ✭ 176 (+486.67%)
Mutual labels:  jupyter-notebook, sklearn
Sklearn Evaluation
Machine learning model evaluation made easy: plots, tables, HTML reports, experiment tracking and Jupyter notebook analysis.
Stars: ✭ 294 (+880%)
Mutual labels:  jupyter-notebook, sklearn
Auto ts
Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.
Stars: ✭ 195 (+550%)
Mutual labels:  jupyter-notebook, sklearn
Machine Learning Projects
This repository consists of all my Machine Learning Projects.
Stars: ✭ 135 (+350%)
Mutual labels:  jupyter-notebook, sklearn
Hate Speech And Offensive Language
Repository for the paper "Automated Hate Speech Detection and the Problem of Offensive Language", ICWSM 2017
Stars: ✭ 543 (+1710%)
Mutual labels:  jupyter-notebook, classifier
Data Analysis
主要是爬虫与数据分析项目总结,外加建模与机器学习,模型的评估。
Stars: ✭ 142 (+373.33%)
Mutual labels:  jupyter-notebook, sklearn
Mozart
An optical music recognition (OMR) system. Converts sheet music to a machine-readable version.
Stars: ✭ 241 (+703.33%)
Mutual labels:  jupyter-notebook, sklearn
Pancancer
Building classifiers using cancer transcriptomes across 33 different cancer-types
Stars: ✭ 84 (+180%)
Mutual labels:  jupyter-notebook, classifier
Sklearn Classification
Data Science Notebook on a Classification Task, using sklearn and Tensorflow.
Stars: ✭ 518 (+1626.67%)
Mutual labels:  jupyter-notebook, sklearn
Cryptocurrencyprediction
Predict Cryptocurrency Price with Deep Learning
Stars: ✭ 453 (+1410%)
Mutual labels:  jupyter-notebook, sklearn
Aws Machine Learning University Accelerated Nlp
Machine Learning University: Accelerated Natural Language Processing Class
Stars: ✭ 1,695 (+5550%)
Mutual labels:  jupyter-notebook, sklearn
Computer Vision Action
computer vision learning, include python machine learning action; computer vision based on deep learning ;coursera deeplearning.ai and other cv learning materials collect ...
Stars: ✭ 19 (-36.67%)
Mutual labels:  jupyter-notebook, sklearn
Keras transfer cifar10
Object classification with CIFAR-10 using transfer learning
Stars: ✭ 120 (+300%)
Mutual labels:  jupyter-notebook, classifier
Mlmodels
mlmodels : Machine Learning and Deep Learning Model ZOO for Pytorch, Tensorflow, Keras, Gluon models...
Stars: ✭ 145 (+383.33%)
Mutual labels:  jupyter-notebook, sklearn
Url Classification
Machine learning to classify Malicious (Spam)/Benign URL's
Stars: ✭ 95 (+216.67%)
Mutual labels:  jupyter-notebook, classifier
Machine Learning
从零基础开始机器学习之旅
Stars: ✭ 209 (+596.67%)
Mutual labels:  jupyter-notebook, sklearn
My Journey In The Data Science World
📢 Ready to learn or review your knowledge!
Stars: ✭ 1,175 (+3816.67%)
Mutual labels:  jupyter-notebook, sklearn
Mlatimperial2017
Materials for the course of machine learning at Imperial College organized by Yandex SDA
Stars: ✭ 71 (+136.67%)
Mutual labels:  jupyter-notebook, sklearn
The Elements Of Statistical Learning Python Notebooks
A series of Python Jupyter notebooks that help you better understand "The Elements of Statistical Learning" book
Stars: ✭ 405 (+1250%)
Mutual labels:  jupyter-notebook, sklearn
Aws Machine Learning University Accelerated Tab
Machine Learning University: Accelerated Tabular Data Class
Stars: ✭ 718 (+2293.33%)
Mutual labels:  jupyter-notebook, sklearn

Machine learning for Project Cognoma

This repository hosts machine learning code and discussion (see Issues) for Project Cognoma.

NOTE: This repository is no longer up-to-date with the web application

The production notebook that is served to website users can be found in the ml-workers repository. This repository will be used for continued data exploration and new modeling approaches.

Notebooks

The following notebooks implement the primary machine learning workflow for Cognoma:

If you've modified a notebook and are submitting a pull request, then export the notebooks to scripts:

jupyter nbconvert --to=script --FilesWriter.build_directory=scripts *.ipynb

Environment

This repository uses conda to manage its environment and install packages. If you don't have conda installed on your system, you can download it here. You can install the Python 2 or 3 version of Miniconda (or Anaconda), which determines the Python version of your root environment. Since we create a dedicated environment for this project, named cognoma-machine-learning whose explicit dependencies are specified in environment.yml, the version of your root environment will not be relevant.

With conda, you can create the cognoma-machine-learning environment by running the following from the root directory of this repository:

# Create or overwrite the cognoma-machine-learning conda environment
conda env create --file environment.yml

If environment.yml has changed since you created the environment, run the following update command:

conda env update --file environment.yml

Activate the environment by running source activate cognoma-machine-learning on Linux or OS X and activate cognoma-machine-learning on Windows. Once this environment is active in a terminal, run jupyter notebook to start a notebook server.

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