All Projects → loretoparisi → tensorflow-node-examples

loretoparisi / tensorflow-node-examples

Licence: other
Tensorflow Node.js Examples

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to tensorflow-node-examples

LSTM-sentiment-analysis
LSTM sentiment analysis. Please look at my another repo for SVM and Naive algorithem
Stars: ✭ 19 (-9.52%)
Mutual labels:  sentiment, lstm
Pytorch Sentiment Classification
LSTM and CNN sentiment analysis
Stars: ✭ 89 (+323.81%)
Mutual labels:  sentiment, lstm
Tess4Android
A new fork base on tess-two and Tesseract 4.0.0
Stars: ✭ 31 (+47.62%)
Mutual labels:  lstm
Hierarchical-Word-Sense-Disambiguation-using-WordNet-Senses
Word Sense Disambiguation using Word Specific models, All word models and Hierarchical models in Tensorflow
Stars: ✭ 33 (+57.14%)
Mutual labels:  lstm
GroupDocs.Classification-for-.NET
GroupDocs.Classification-for-.NET samples and showcase (text and documents classification and sentiment analysis)
Stars: ✭ 38 (+80.95%)
Mutual labels:  sentiment
LSTM-Time-Series-Analysis
Using LSTM network for time series forecasting
Stars: ✭ 41 (+95.24%)
Mutual labels:  lstm
pose2action
experiments on classifying actions using poses
Stars: ✭ 24 (+14.29%)
Mutual labels:  lstm
ArrayLSTM
GPU/CPU (CUDA) Implementation of "Recurrent Memory Array Structures", Simple RNN, LSTM, Array LSTM..
Stars: ✭ 21 (+0%)
Mutual labels:  lstm
MachineLearning
Implementations of machine learning algorithm by Python 3
Stars: ✭ 16 (-23.81%)
Mutual labels:  lstm
sentiment-analysis-using-python
Large Data Analysis Course Project
Stars: ✭ 23 (+9.52%)
Mutual labels:  sentiment
Audio Classification using LSTM
Classification of Urban Sound Audio Dataset using LSTM-based model.
Stars: ✭ 47 (+123.81%)
Mutual labels:  lstm
turbofan failure
Aircraft engine failure prediction model
Stars: ✭ 23 (+9.52%)
Mutual labels:  lstm
stansent
No description or website provided.
Stars: ✭ 16 (-23.81%)
Mutual labels:  sentiment
korean ner tagging challenge
KU_NERDY 이동엽, 임희석 (2017 국어 정보 처리 시스템경진대회 금상) - 한글 및 한국어 정보처리 학술대회
Stars: ✭ 30 (+42.86%)
Mutual labels:  lstm
PCPM
Presenting Collection of Pretrained Models. Links to pretrained models in NLP and voice.
Stars: ✭ 21 (+0%)
Mutual labels:  sentiment
RNNPoet TensorFlow
使用LSTM训练生成古诗模型,其中生成器可以指定生成风格进行输出
Stars: ✭ 27 (+28.57%)
Mutual labels:  lstm
learningspoons
nlp lecture-notes and source code
Stars: ✭ 29 (+38.1%)
Mutual labels:  lstm
emoji-sentiment
Emoji sentiment data
Stars: ✭ 14 (-33.33%)
Mutual labels:  sentiment
sarcasm-detection-for-sentiment-analysis
Sarcasm Detection for Sentiment Analysis
Stars: ✭ 21 (+0%)
Mutual labels:  lstm
Emotion and Polarity SO
An emotion classifier of text containing technical content from the SE domain
Stars: ✭ 74 (+252.38%)
Mutual labels:  sentiment

tensorflow-node-examples

Tensorflow.js Node.js Examples. Inspired from official tfjs-examples.

Disclaimer

Tensorflow.js for Node.js (namely tfjs-node) is currently in development status, see here.

Why?

Because officiale Tensorflow.js examples are mostly written in TypeScript or use the async/await ES2017 paradigma, while the most of node modules are not.

Node.js Examples

Getting Started

Tf.js Hello World for Node.js: training and predict.

Sentiment

Load and predict sentiment from a pre-trained sentiment model with tf.loadModel.

LSTM

A simple LSTM train example that shows accuracy, loss, while training.

Translation

A bilinear LSTM (bi-LSTM) for EN-FR translation with a local hosted saved model. Full examples: load model, translate sentences.

LSTM Text Generation

A bi-LSTM model that learns to write as Nietzsche or your favorite text. Work in progress, so far it loads the saved model only.

Object Detection :🆕:

An example that show how to load a Tensorflow SavedModel, without any conversion, using tf.node.loadSavedModel. It loads the model, predict the bounding boxes of detection objects and write to an image using a canvas.

Can I use async/await without ECMA2017

Yes! Definitively you can. See async2promise.js. You have here defined two function the __awaiter and the __generator, that mimic the async and await using a Promise. Enjoy ECMA5.

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].