all kinds of text classification models and more with deep learning
-
Updated
Oct 22, 2020 - Python
{{ message }}
all kinds of text classification models and more with deep learning
Image Polygonal Annotation with Python (polygon, rectangle, circle, line, point and image-level flag annotation).
Build your neural network easy and fast
Curated list of Machine Learning, NLP, Vision, Recommender Systems Project Ideas
Statistical Machine Intelligence & Learning Engine
Accompanying source code for Machine Learning with TensorFlow. Refer to the book for step-by-step explanations.
Tensorflow tutorial from basic to hard
Natural language detection
CNN-RNN中文文本分类,基于TensorFlow
PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation
Sandbox for training convolutional networks for computer vision
PointNet++: Deep Hierarchical Feature Learning on Point Sets in a Metric Space
An easy to use PyTorch to TensorRT converter
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Master the essential skills needed to recognize and solve complex real-world problems with Machine Learning and Deep Learning by leveraging the highly popular Python Machine Learning Eco-system.
Implementation of EfficientNet model. Keras and TensorFlow Keras.
Deep neural network to extract intelligent information from invoice documents.
Alias is a teachable “parasite” that is designed to give users more control over their smart assistants, both when it comes to customisation and privacy. Through a simple app the user can train Alias to react on a custom wake-word/sound, and once trained, Alias can take control over your home assistant by activating it for you.
Machine Learning in R
Caffe models (including classification, detection and segmentation) and deploy files for famouse networks
ThunderSVM: A Fast SVM Library on GPUs and CPUs
Documents, papers and codes related to Natural Language Processing, including Topic Model, Word Embedding, Named Entity Recognition, Text Classificatin, Text Generation, Text Similarity, Machine Translation),etc. All codes are implemented intensorflow 2.0.
《深度学习与计算机视觉》配套代码
An open source framework for deep learning on satellite and aerial imagery.
MLBox is a powerful Automated Machine Learning python library.
PointCNN: Convolution On X-Transformed Points (NeurIPS 2018)
Add a description, image, and links to the classification topic page so that developers can more easily learn about it.
To associate your repository with the classification topic, visit your repo's landing page and select "manage topics."
Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))