prabinpanta0
commited on
Commit
•
dfb7514
1
Parent(s):
1afd416
Update README.md
Browse files
README.md
CHANGED
@@ -26,7 +26,7 @@ To use this model, you can load it with TensorFlow and make predictions as shown
|
|
26 |
```python
|
27 |
import tensorflow as tf
|
28 |
|
29 |
-
model = tf.keras.models.load_model('
|
30 |
prediction = model.predict([100.0])
|
31 |
print(f"Prediction for 100°C in Fahrenheit: {prediction[0][0]}")
|
32 |
```
|
@@ -42,6 +42,8 @@ Metrics
|
|
42 |
The model was evaluated based on the Mean Squared Error loss during training.
|
43 |
```
|
44 |
|
|
|
|
|
45 |
## Datasets
|
46 |
The model was trained on the [prabinpanta0/celsius-to-fahrenheit](https://huggingface.co/datasets/prabinpanta0/celsius-to-fahrenheit) dataset.
|
47 |
|
|
|
26 |
```python
|
27 |
import tensorflow as tf
|
28 |
|
29 |
+
model = tf.keras.models.load_model('celsius-to-fahrenheit')
|
30 |
prediction = model.predict([100.0])
|
31 |
print(f"Prediction for 100°C in Fahrenheit: {prediction[0][0]}")
|
32 |
```
|
|
|
42 |
The model was evaluated based on the Mean Squared Error loss during training.
|
43 |
```
|
44 |
|
45 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/662ccaab9d047b3700b1d4cd/aPPjPSv_W-OQfpYlnxnwB.png)
|
46 |
+
|
47 |
## Datasets
|
48 |
The model was trained on the [prabinpanta0/celsius-to-fahrenheit](https://huggingface.co/datasets/prabinpanta0/celsius-to-fahrenheit) dataset.
|
49 |
|