https://github.com/orderandch4os/ml-tensorflow-experiments
Image and text classification scripts, plus some time series stuff using Tensorflow
https://github.com/orderandch4os/ml-tensorflow-experiments
image-classification machine-learning python statistical-forecasting tensorflow text-classification text-generation
Last synced: 3 months ago
JSON representation
Image and text classification scripts, plus some time series stuff using Tensorflow
- Host: GitHub
- URL: https://github.com/orderandch4os/ml-tensorflow-experiments
- Owner: OrderAndCh4oS
- Created: 2023-02-18T09:09:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-05T21:43:37.000Z (about 3 years ago)
- Last Synced: 2025-02-15T16:49:08.681Z (over 1 year ago)
- Topics: image-classification, machine-learning, python, statistical-forecasting, tensorflow, text-classification, text-generation
- Language: Jupyter Notebook
- Homepage:
- Size: 797 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Experimental TensorFlow Machine Learning Scripts
This repository contains a collection of experimental machine-learning scripts written using TensorFlow. These scripts demonstrate various machine-learning techniques and applications, ranging from image classification to time series forecasting.
These scripts were created as a part of my journey in picking up TensorFlow and deepening my understanding of its functionalities. Feel free to use, modify or experiment with any of these scripts for your own projects or learning purposes.
## Requirements
- Python 3.x
- Tensorflow
- Numpy
- Jupyter Notebook (optional if you wish to run the .ipynb files)
## Scripts Overview
Here's a brief summary of each script included in this repository:
1. **hello_world.py**: A basic demonstration that serves as an introductory TensorFlow "Hello World" example.
2. **activation_demos.py**: This script demonstrates different activation functions used in neural networks.
3. **classify-images.py**: A simple image classification script that uses Convolutional Neural Networks (CNNs).
4. **classify-text.py**: Implements text classification using Recurrent Neural Networks (RNNs).
5. **fashion_mnist_classification.py**: An implementation that classifies images from the Fashion MNIST dataset.
6. **statistical-forecasting-with-synthetic-data.ipynb**: A Jupyter Notebook that showcases statistical forecasting techniques using synthetic data.
7. **time-series.ipynb**: A Jupyter Notebook that demonstrates time series predictions with TensorFlow and LSTM layers.
8. **train-text-lstm.py**: A script that trains an LSTM network for text generation.