brendenc commited on
Commit
e7a5ea0
2 Parent(s): c2f467a 42ee490

Merge branch 'main' of https://huggingface.co/brendenc/ProbabalisticBayesianModel-Wine

Browse files
Files changed (1) hide show
  1. README.md +8 -9
README.md CHANGED
@@ -7,23 +7,22 @@ tags:
7
 
8
  ## Model description
9
 
10
- More information needed
11
 
12
- ## Intended uses & limitations
13
 
14
- More information needed
15
 
16
- ## Training and evaluation data
17
 
18
- More information needed
19
 
20
- ## Training procedure
 
 
21
 
22
  ### Training hyperparameters
23
 
24
  The following hyperparameters were used during training:
25
  - optimizer: {'name': 'RMSprop', 'learning_rate': 0.001, 'decay': 0.0, 'rho': 0.9, 'momentum': 0.0, 'epsilon': 1e-07, 'centered': False}
26
  - training_precision: float32
27
-
28
- ## Training Metrics
29
- Model history needed
 
7
 
8
  ## Model description
9
 
10
+ This repo contains model weights for the the probabilistic model from [Probabilistic Bayesian Neural Networks](https://keras.io/examples/keras_recipes/bayesian_neural_networks/). This example demonstrates how to build basic probabilistic Bayesian neural networks to account for these two types of uncertainty. We use TensorFlow Probability library, which is compatible with Keras API.
11
 
12
+ Taking a probabilistic approach to deep learning allows to account for uncertainty, so that models can assign less levels of confidence to incorrect predictions. Sources of uncertainty can be found in the data, due to measurement error or noise in the labels, or the model, due to insufficient data availability for the model to learn effectively.
13
 
14
+ **Full credits go to [Khalid Salama](https://www.linkedin.com/in/khalid-salama-24403144/)**
15
 
16
+ ## Training and evaluation data 🍷
17
 
18
+ We use the wine quality dataset found [here](https://www.tensorflow.org/datasets/catalog/wine_quality). Each wine was scored from 0-10 by wine experts, and includes 11 physicochemical features about the wine.
19
 
20
+ ## Versioning
21
+
22
+ The training was done using TensorFlow 2.8.0 and TensorFlow Probability 0.16.0. When working with TensorFlow Probability, it is encouraged to check out the [releases](https://github.com/tensorflow/probability/releases/tag/v0.17.0) to make sure you are using a stable TensorFlow counterpart.
23
 
24
  ### Training hyperparameters
25
 
26
  The following hyperparameters were used during training:
27
  - optimizer: {'name': 'RMSprop', 'learning_rate': 0.001, 'decay': 0.0, 'rho': 0.9, 'momentum': 0.0, 'epsilon': 1e-07, 'centered': False}
28
  - training_precision: float32