All Projects → zhengze → sklearn-predict

zhengze / sklearn-predict

Licence: MIT License
机器学习数据,预测趋势并画图

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to sklearn-predict

Machine Learning Projects
This repository consists of all my Machine Learning Projects.
Stars: ✭ 135 (+743.75%)
Mutual labels:  numpy, sklearn, pandas
Data-Analyst-Nanodegree
Kai Sheng Teh - Udacity Data Analyst Nanodegree
Stars: ✭ 42 (+162.5%)
Mutual labels:  numpy, sklearn, pandas
Lambda Packs
Precompiled packages for AWS Lambda
Stars: ✭ 997 (+6131.25%)
Mutual labels:  numpy, sklearn, pandas
Ml Cheatsheet
A constantly updated python machine learning cheatsheet
Stars: ✭ 136 (+750%)
Mutual labels:  numpy, sklearn, pandas
Data Analysis
主要是爬虫与数据分析项目总结,外加建模与机器学习,模型的评估。
Stars: ✭ 142 (+787.5%)
Mutual labels:  numpy, sklearn, pandas
Data Science Notebook
📖 每一个伟大的思想和行动都有一个微不足道的开始
Stars: ✭ 196 (+1125%)
Mutual labels:  numpy, sklearn, pandas
Tensorflow Ml Nlp
텐서플로우와 머신러닝으로 시작하는 자연어처리(로지스틱회귀부터 트랜스포머 챗봇까지)
Stars: ✭ 176 (+1000%)
Mutual labels:  numpy, sklearn, pandas
ml-workflow-automation
Python Machine Learning (ML) project that demonstrates the archetypal ML workflow within a Jupyter notebook, with automated model deployment as a RESTful service on Kubernetes.
Stars: ✭ 44 (+175%)
Mutual labels:  numpy, sklearn, pandas
valinvest
A value investing tool based on Warren Buffett, Joseph Piotroski and Benjamin Graham thoughts
Stars: ✭ 84 (+425%)
Mutual labels:  numpy, pandas
MachineLearning
机器学习教程,本教程包含基于numpy、sklearn与tensorflow机器学习,也会包含利用spark、flink加快模型训练等用法。本着能够较全的引导读者入门机器学习。
Stars: ✭ 23 (+43.75%)
Mutual labels:  numpy, sklearn
neworder
A dynamic microsimulation framework for python
Stars: ✭ 15 (-6.25%)
Mutual labels:  numpy, pandas
object-detection-with-deep-learning
demonstrating use of convolution neural networks to detect objects in a video
Stars: ✭ 17 (+6.25%)
Mutual labels:  numpy, sklearn
Information-Retrieval
Information Retrieval algorithms developed in python. To follow the blog posts, click on the link:
Stars: ✭ 103 (+543.75%)
Mutual labels:  numpy, pandas
Machine-Learning
This repository contains notebooks that will help you in understanding basic ML algorithms as well as basic numpy excercise. 💥 🌈 🌈
Stars: ✭ 15 (-6.25%)
Mutual labels:  numpy, pandas
Python-for-data-analysis
No description or website provided.
Stars: ✭ 18 (+12.5%)
Mutual labels:  numpy, pandas
spyndex
Awesome Spectral Indices in Python.
Stars: ✭ 56 (+250%)
Mutual labels:  numpy, pandas
gcf-packs
Library packs for google cloud functions
Stars: ✭ 48 (+200%)
Mutual labels:  numpy, pandas
UDACITY-Deep-Learning-Nanodegree-PROJECTS
These are the projects I did on my Udacity Deep Learning Nanodegree 🌟 💻 💻. 💥 🌈
Stars: ✭ 18 (+12.5%)
Mutual labels:  numpy, pandas
Dimensionality-reduction-and-classification-on-Hyperspectral-Images-Using-Python
In this repository, You can find the files which implement dimensionality reduction on the hyperspectral image(Indian Pines) with classification.
Stars: ✭ 63 (+293.75%)
Mutual labels:  numpy, pandas
Data-Scientist-In-Python
This repository contains notes and projects of Data scientist track from dataquest course work.
Stars: ✭ 23 (+43.75%)
Mutual labels:  numpy, pandas

sklearn-predict

机器学习数据,预测趋势并画图,里面有多种预测算法,需要有机器学习基础的人才能使用。

数据

  • 按powerdata.csv的格式组织,程序调用的是"powerdata.csv"文件,文件中数据每列为间隔15分钟的值,一天24小时,一共24乘4列。如果时间格式不是这样的,可以在svm-prediction中开头修改“96”这个值做调整

环境

  • ubuntu 18.04
  • python 3.7.*

安装

  • sudo chmod u+x install.sh
  • sudo bash ./install.sh
  • sudo vim ~/.bash_profile
   export PATH="$HOME/.pyenv/bin:$PATH"  
   eval "$(pyenv init -)" 
   eval "$(pyenv virtualenv-init -)"  
  • source ~/.bash_profile

python3.7.4 version virtualenv && install python libraries

   pyenv virtualenv 3.7.4 svm-prediction-venv
   pyenv activate svm-prediction-venv
   pipenv install

调用

  • python predict.py --help
Usage: predict.py [OPTIONS]

Options:
  --train INTEGER  train size(day).
  --test INTEGER   test size(day).
  --filepath TEXT  file path
  --help           Show this message and exit.

效果图

  • SVR chart
    SVR chart
  • GradientBoostingRegressor chart
    GradientBoostingRegressor chart
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].