All Projects → ChengjinLi → machine_learning

ChengjinLi / machine_learning

Licence: other
机器学习、深度学习、NLP实战项目

Programming Languages

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

Projects that are alternatives of or similar to machine learning

PFL-Non-IID
The origin of the Non-IID phenomenon is the personalization of users, who generate the Non-IID data. With Non-IID (Not Independent and Identically Distributed) issues existing in the federated learning setting, a myriad of approaches has been proposed to crack this hard nut. In contrast, the personalized federated learning may take the advantage…
Stars: ✭ 58 (-52.85%)
Mutual labels:  cv, rnn
awesome-libraries
😎 Libraries that are being shown in Sourcerer profiles.
Stars: ✭ 131 (+6.5%)
Mutual labels:  cv
Knockknock
🚪✊Knock Knock: Get notified when your training ends with only two additional lines of code
Stars: ✭ 2,304 (+1773.17%)
Mutual labels:  cv
Cv
🎓 Best in Class modern CV, Resume and Portfolio website template. All-in-One-Page site with simply customizable builder.
Stars: ✭ 232 (+88.62%)
Mutual labels:  cv
Resume
이력서 (RESUME)
Stars: ✭ 173 (+40.65%)
Mutual labels:  cv
Watermark Remover
Remove watermark automatically(Just can use for fixed position watermark till now). 自动水印消除算法的实现(目前只支持固定水印位置)。
Stars: ✭ 236 (+91.87%)
Mutual labels:  cv
Smartopencv
🔥 🔥 🔥 SmartOpenCV是一个OpenCV在Android端的增强库,解决了OpenCV Android SDK在图像预览方面存在的诸多问题,且无需修改OpenCV SDK源码,与OpenCV的SDK解耦
Stars: ✭ 1,869 (+1419.51%)
Mutual labels:  cv
danifojo-2018-repeatrnn
Comparing Fixed and Adaptive Computation Time for Recurrent Neural Networks
Stars: ✭ 32 (-73.98%)
Mutual labels:  rnn
deep-learning-notes
🧠👨‍💻Deep Learning Specialization • Lecture Notes • Lab Assignments
Stars: ✭ 20 (-83.74%)
Mutual labels:  rnn
Best Resume Ever
👔 💼 Build fast 🚀 and easy multiple beautiful resumes and create your best CV ever! Made with Vue and LESS.
Stars: ✭ 15,124 (+12195.93%)
Mutual labels:  cv
Bbox Visualizer
Make drawing and labeling bounding boxes easy as cake
Stars: ✭ 225 (+82.93%)
Mutual labels:  cv
Awesome Cv
📄 Awesome CV is LaTeX template for your outstanding job application
Stars: ✭ 14,957 (+12060.16%)
Mutual labels:  cv
Gordon cnn
A small convolution neural network deep learning framework implemented in c++.
Stars: ✭ 241 (+95.93%)
Mutual labels:  cv
Yolo V3 Tensorflow
👷 👷👷 YOLO V3(Tensorflow 1.x) 安全帽 识别 | 提供数据集下载和与预训练模型
Stars: ✭ 173 (+40.65%)
Mutual labels:  cv
deeplearning.ai notes
📓 Notes for Andrew Ng's courses on deep learning
Stars: ✭ 73 (-40.65%)
Mutual labels:  rnn
Awesome Pytorch List
A comprehensive list of pytorch related content on github,such as different models,implementations,helper libraries,tutorials etc.
Stars: ✭ 12,475 (+10042.28%)
Mutual labels:  cv
Simplecv
Stars: ✭ 2,522 (+1950.41%)
Mutual labels:  cv
Ailearners
机器学习、深度学习、自然语言处理、计算机视觉、各种算法等AI领域相关技术的路线、教程、干货分享。笔记有:机器学习实战、剑指Offer、cs231n、cs131、吴恩达机器学习、cs224n、python自然语言处理实战
Stars: ✭ 234 (+90.24%)
Mutual labels:  cv
Selected Stories
An experimental web text editor that runs a LSTM model while you write to suggest new lines
Stars: ✭ 39 (-68.29%)
Mutual labels:  rnn
Online-Signature-Verification
Online Handwriting Signature Verification using CNN + RNN.
Stars: ✭ 16 (-86.99%)
Mutual labels:  rnn

文档

* Created on 2017年10月01日
* author: MJ
* project: machine_learning
* 本人会陆续将自己使用过的机器学习算法示例进行整理,欢迎各位读者挑错指正,如果对你有帮助,请给个star哦!
  如果你对此项目有任何疑问, 可以申请加入以下几个QQ群给予答疑解惑:
  TensorFlow深度学习交流:299814789
  Scikit-learn机器学习交流群:397163918
  个人博客:chengjin.li

项目依赖

* 1、IDE PyCharm Community Edition 2017.1
* 2、安装 python 2.7 (没有请自行网上查找)
* 3、安装 pip
    sudo easy_install pip
* 4、安装 virtualenv
    pip install virtualenv
* 5、创建项目的虚拟环境(需要先切换到machine_learning下)
    sh scripts/env_prepare.sh
* 6、安装依赖包
    sh scripts/env_update.sh
    备注: 如果是GPU环境,需要将requiremens.txt中的tensorflow替换成tensorflow-gpu
    未安装成功的依赖包,可以使用pip install xxx方式安装

项目结构说明

* CV(计算机视觉)
    * image_classification(图像分类)
    * image_generation(图像生成)
* NLP(自然语言处理)
    * IR(信息检索)
    * NER(命名实体识别)
    * text_classification(文本分类)
        * ml_method(基于传统机器学习的方法)
        * dp_method(基于深度学习的方法)
            * cnn(基于卷积神经网络的方法)
                * text_cnn(用于文本分类的TextCNN模型)
            * rnn(基于循环神经网络的方法)
                * text_rnn(用于文本分类的TextRNN模型)
    * text_matching(文本匹配)
    * text_similarity(文本相关性)
    * translation(翻译)
* numpy_use_tutorial(numpy使用示例)
* tensorflow_use_tutorial(tensorflow使用示例)
* scripts(shell脚本文件)
* utils(基础工具)
    * word2vec(词向量工具)
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].