All Projects → fatchur → Simple-Tensor

fatchur / Simple-Tensor

Licence: MIT license
A simplification of Tensorflow Tensor Operations

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Simple-Tensor

object-tracking
Multiple Object Tracking System in Keras + (Detection Network - YOLO)
Stars: ✭ 89 (+423.53%)
Mutual labels:  lstm, yolov3
SpeakerDiarization RNN CNN LSTM
Speaker Diarization is the problem of separating speakers in an audio. There could be any number of speakers and final result should state when speaker starts and ends. In this project, we analyze given audio file with 2 channels and 2 speakers (on separate channels).
Stars: ✭ 56 (+229.41%)
Mutual labels:  lstm
tensorflow-node-examples
Tensorflow Node.js Examples
Stars: ✭ 21 (+23.53%)
Mutual labels:  lstm
datastories-semeval2017-task6
Deep-learning model presented in "DataStories at SemEval-2017 Task 6: Siamese LSTM with Attention for Humorous Text Comparison".
Stars: ✭ 20 (+17.65%)
Mutual labels:  lstm
tf2-yolo3
object detection using yolo3 with tensorflow-2.x
Stars: ✭ 38 (+123.53%)
Mutual labels:  yolov3
keras-malicious-url-detector
Malicious URL detector using keras recurrent networks and scikit-learn classifiers
Stars: ✭ 24 (+41.18%)
Mutual labels:  lstm
generate-thai-lyrics
Generate Thai Songs' lyrics using Deep Learning
Stars: ✭ 33 (+94.12%)
Mutual labels:  lstm
LearningMetersPoems
Official repo of the article: Yousef, W. A., Ibrahime, O. M., Madbouly, T. M., & Mahmoud, M. A. (2019), "Learning meters of arabic and english poems with recurrent neural networks: a step forward for language understanding and synthesis", arXiv preprint arXiv:1905.05700
Stars: ✭ 18 (+5.88%)
Mutual labels:  lstm
air writing
Online Hand Writing Recognition using BLSTM
Stars: ✭ 26 (+52.94%)
Mutual labels:  lstm
kaspersky hackathon
https://events.kaspersky.com/hackathon/
Stars: ✭ 25 (+47.06%)
Mutual labels:  lstm
vrpdr
Deep Learning Applied To Vehicle Registration Plate Detection and Recognition in PyTorch.
Stars: ✭ 36 (+111.76%)
Mutual labels:  yolov3
ScaledYOLOv4
Scaled-YOLOv4: Scaling Cross Stage Partial Network
Stars: ✭ 1,944 (+11335.29%)
Mutual labels:  yolov3
extkeras
Playground for implementing custom layers and other components compatible with keras, with the purpose to learn the framework better and perhaps in future offer some utils for others.
Stars: ✭ 18 (+5.88%)
Mutual labels:  lstm
Show and Tell
Show and Tell : A Neural Image Caption Generator
Stars: ✭ 74 (+335.29%)
Mutual labels:  lstm
TensorMONK
A collection of deep learning models (PyTorch implemtation)
Stars: ✭ 21 (+23.53%)
Mutual labels:  inceptionv4
MachineLearning
Implementations of machine learning algorithm by Python 3
Stars: ✭ 16 (-5.88%)
Mutual labels:  lstm
bert-squeeze
🛠️ Tools for Transformers compression using PyTorch Lightning ⚡
Stars: ✭ 56 (+229.41%)
Mutual labels:  lstm
novel writer
Train LSTM to writer novel (HongLouMeng here) in Pytorch.
Stars: ✭ 14 (-17.65%)
Mutual labels:  lstm
dnn-lstm-word-segment
Chinese Word Segmention Base on the Deep Learning and LSTM Neural Network
Stars: ✭ 24 (+41.18%)
Mutual labels:  lstm
voice zaloai
dentifying gender and regional accent from speech
Stars: ✭ 35 (+105.88%)
Mutual labels:  lstm

README

version platform python tensorflow

NEWS

Date News Version
Sept 2019 face recognition (insight face) was released for inferencing (STABLE), for training will available in the future version >= v0.7.4
August 2019 deeplab semantic segmentation (PREVIEW version)was released >= v0.6.10
Mei 2019 yolov3 object detection (STABLE version) was relesed > v0.5.1
April 2019 Unet-segmentation (PREVIEW version) v0.4.18

Tensorflow Compatibility

Tensorflow version Simple-Tensor Version
1.4.1 - 1.1 <=v0.4.0
1.13.1 and 1.15.0 >=v0.4.3

ABOUT PROJECT

This project is a simplification of tensorflow operations and related projects

DEPENDENCIES

  1. Tensorflow (1.4.1 - 1.15.0) pip3 install tensorflow-gpu
  2. Comdutils pip3 install comdutils
  3. opencv-python pip3 install opencv-python
  4. numpy

HOW TO USE

:shipit: Installing The Package

pip3 install simple-tensor

:shipit: Import The Package

Tensor Operations

import tensorflow as tf
# tensor operations
from simple_tensor.tensor_operations import *
# tensor losses
from simple_tensor.tensor_losses import *
# tensor metrics
from simple_tensor.tensor_metrics import *

This packages contains tensor operations (conv2d, conv1d, depthwise conv2d, fully connected, conv2d transpose), tensor losses (softmax & sigmoid cross entropy, MSE), and tensor metrics (accuracy). For more detail documentations about tensor operations, visit this page

Transfer Learning Package (Image Classification)

import tensorflow as tf
from simple_tensor.transfer_learning.inception_utils import *
from simple_tensor.transfer_learning.inception_v4 import *

This package contains a library of tensorflow implementation of Inception-v4 for image classification. Densenet, Resnet, and VGG will be added in the future version. For more detail documentations about transfer learning package, visit this page

alt text

(img source: link)

Object Detector Package

import tensorflow as tf
from simple_tensor.object_detector.detector_utils import *
from simple_tensor.object_detector.yolo import Yolo

This package contains a library of tensorflow implementation of Yolov3 (training and inferencing). You can customize your yolo detector with four types of network ("big", 'medium", "small", "very_small"). For more detail documentations about object detector package (yolov3), visit this page.

alt text

(img source: pjreddie)

Unet Segmentation Package

import tensorflow as tf
from simple_tensor.segmentation.unet import UNet

This package contains the tensorflow implementation of U-net for semantic segmentation. For more detail, visit this page

alt text

(img source: internal)

Face Recognition Package (Insightface)

import tensorflow as tf
from simple_tensor.face_recog.insight_face import *

This package contains the tensorflow implementation of insight face. This repo is refractoring this github link. For more detail documentation, visit this page

LSTM Package

still on progress ....

Convert Keras Model to Tensorflow Serving

import tensorflow as tf
from simple_tensor.convert import *

DOCKER

We already prepared the all in one docker for computer vision and deep learning libraries, including tensorflow 1.12, Opencv3.4.2 and contrib, CUDA 9, CUDNN 7, Keras, jupyter, numpy, sklearn, scipy, statsmodel, pandas, matplotlib, seaborn, flask, gunicorn etc. See the list of dockerfile below:

Docker: Ubuntu 16.04 with GPU (Cuda 9, cudnn 7.2) [TESTED]
Docker: Ubuntu 18.04 with GPU (Cuda 9, cudnn 7.2)
Docker: Ubuntu 16.04 without GPU (Cuda 9, cudnn 7.2) [TESTED]
Docker: Ubuntu 18.04 without GPU (Cuda 9, cudnn 7.2) [TESTED]
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].