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, 莫烦Python中文教学
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, 莫烦Python 中文AI教学
Natural language detection
CNN-RNN中文文本分类,基于TensorFlow
PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation
deep learning for image processing including classification and object-detection etc.
What's wrong?
An easy to use PyTorch to TensorRT converter
PaddlePaddle End-to-End Development Toolkit(『飞桨』深度学习全流程开发工具)
Sandbox for training deep learning networks
PointNet++: Deep Hierarchical Feature Learning on Point Sets in a Metric Space
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Implementation of EfficientNet model. Keras and TensorFlow Keras.
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.
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
Open Source Pre-training Model Framework in PyTorch & Pre-trained Model Zoo
Add a way to change the sample id output in the annotation process to a specific number (see picture).
Reason: I want to annotate large text and the app don't like it when the documents to annotate are too large, so I spitted in a sentence the document but I would like to be able to
A high-level machine learning and deep learning library for the PHP language.
Weaviate is a cloud-native, modular, real-time vector search engine
An open source framework for deep learning on satellite and aerial imagery.
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.
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)))