AuE 8930 Course Repository
- Use of Numpy library
- Use of Pandas Library
This data was collected in 1978 and each of the 506 entries represents aggregate information about homes from various suburbs located in Boston. Once you get a good fit, you can use this model to predict the monetary value of a house located at the Boston’s area. A model like this would be very valuable for a real state agent who could make use of the information provided in a dayly basis.
- Train-Test Split
- Minmax scale
epochs = 200 lr = 0.001 batch_size = 64 hidden_layer_size = 13 input_layer_size = 13 output_layer_size = 1
epochs = 200 lr = 0.001 batch_size = 64 layer_sizes = [15, 13, 8, 1] input_size = 13
TensorFlow 2.x is use to implement NNs. Code should follow PEP 8 with necessary comments.
Build a Convolutional Neural Network to classify objects and tune hyperparameters to optimize your model.
TensorFlow 2.x is allowed to implement models. Code should follow PEP 8 with necessary comments.
Build an RNN model to classify text and an LSTM model for anomaly detection (also outlier detection) on the temperature sensor data.
This task aims to train a sentiment analysis model to classify given sentences as positive or negative, based on the Recurrent Neural Network.
Train Data
Test Data
Result -
Predicted labels and texts saved in .csv format.
In manufacturing industries, the anomaly detection technique is applied to predict the abnormal activities of machines based on the data read from sensors. In machine learning and data mining, anomaly detection is the task of identifying the rare items, events, or observations that are suspicious and seem different from the majority of the data. In this task, you will predict the possible failure of the system based on the temperature data. And this failure can be detected by check if they follow the trend of the majority of the data.
The given dataset (ambient_temperature_system_failure.csv) is a part of Numenta Anomaly Benchmark (NAB) dataset, which is a novel benchmark for evaluating machine learning algorithms in anomaly detection.
Input Timeseries Data -
This reconstruction error threshold value then we will label this data point as an anomaly
Visualizing anomalies (Red Dots)