Instructions to use DataScienceProject/Resnet with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use DataScienceProject/Resnet with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://DataScienceProject/Resnet") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,7 +10,7 @@ library_name: keras
|
|
| 10 |
This project provides a ResNet50 pre-trained model for classifying images as either 'real art' or 'fake art'.
|
| 11 |
ResNet50 is a deep convolutional neural network with 50 layers, known for its "residual connections" that help mitigate the vanishing gradient problem.
|
| 12 |
It allows training of very deep networks by adding shortcut connections that skip one or more layers, making it highly effective for image classification tasks.
|
| 13 |
-
Our goal is to accurately classify the source of the image with at least 85% accuracy and achieve at least 80% in the
|
| 14 |
|
| 15 |
***Installation instructions***
|
| 16 |
|
|
|
|
| 10 |
This project provides a ResNet50 pre-trained model for classifying images as either 'real art' or 'fake art'.
|
| 11 |
ResNet50 is a deep convolutional neural network with 50 layers, known for its "residual connections" that help mitigate the vanishing gradient problem.
|
| 12 |
It allows training of very deep networks by adding shortcut connections that skip one or more layers, making it highly effective for image classification tasks.
|
| 13 |
+
Our goal is to accurately classify the source of the image with at least 85% accuracy and achieve at least 80% in the recall test.
|
| 14 |
|
| 15 |
***Installation instructions***
|
| 16 |
|