Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -19,26 +19,28 @@ Model Description
|
|
19 |
The model is based on EfficientNet, a state-of-the-art Convolutional Neural Network (CNN) architecture. It is trained to classify embryo images into two categories, originally labeled as "0" and "1", which you can map to Low Quality and High Quality, respectively. The model utilizes advanced image processing techniques to analyze and predict the quality of embryos based on provided images.
|
20 |
|
21 |
Features
|
|
|
22 |
Predict the quality of embryos from uploaded images.
|
23 |
Provide confidence scores for each quality category.
|
24 |
User-friendly interface built with Streamlit for easy interaction.
|
25 |
Installation
|
|
|
26 |
Requirements
|
|
|
27 |
Python 3.x
|
28 |
TensorFlow
|
29 |
Streamlit
|
30 |
Pillow
|
31 |
NumPy
|
|
|
|
|
32 |
Setup
|
33 |
-
Install the required packages:
|
34 |
|
35 |
-
|
36 |
-
Copy code
|
37 |
pip install streamlit tensorflow pillow numpy
|
|
|
38 |
Clone the repository:
|
39 |
|
40 |
-
bash
|
41 |
-
Copy code
|
42 |
git clone https://github.com/yourusername/embryo-quality-assessment.git
|
43 |
cd embryo-quality-assessment
|
44 |
Ensure the trained model is saved in the saved_model/embryo_classifier directory:
|
@@ -48,9 +50,9 @@ If the model is not saved, you can save it using TensorFlow's tf.saved_model.sav
|
|
48 |
Usage
|
49 |
Run the Streamlit app:
|
50 |
|
51 |
-
|
52 |
-
Copy code
|
53 |
streamlit run app.py
|
|
|
54 |
Upload an Embryo Image:
|
55 |
|
56 |
Open your web browser and navigate to the provided URL (usually http://localhost:8501). Upload an embryo image in JPG, JPEG, or PNG format.
|
|
|
19 |
The model is based on EfficientNet, a state-of-the-art Convolutional Neural Network (CNN) architecture. It is trained to classify embryo images into two categories, originally labeled as "0" and "1", which you can map to Low Quality and High Quality, respectively. The model utilizes advanced image processing techniques to analyze and predict the quality of embryos based on provided images.
|
20 |
|
21 |
Features
|
22 |
+
|
23 |
Predict the quality of embryos from uploaded images.
|
24 |
Provide confidence scores for each quality category.
|
25 |
User-friendly interface built with Streamlit for easy interaction.
|
26 |
Installation
|
27 |
+
|
28 |
Requirements
|
29 |
+
|
30 |
Python 3.x
|
31 |
TensorFlow
|
32 |
Streamlit
|
33 |
Pillow
|
34 |
NumPy
|
35 |
+
|
36 |
+
|
37 |
Setup
|
|
|
38 |
|
39 |
+
Install the required packages:
|
|
|
40 |
pip install streamlit tensorflow pillow numpy
|
41 |
+
|
42 |
Clone the repository:
|
43 |
|
|
|
|
|
44 |
git clone https://github.com/yourusername/embryo-quality-assessment.git
|
45 |
cd embryo-quality-assessment
|
46 |
Ensure the trained model is saved in the saved_model/embryo_classifier directory:
|
|
|
50 |
Usage
|
51 |
Run the Streamlit app:
|
52 |
|
53 |
+
|
|
|
54 |
streamlit run app.py
|
55 |
+
|
56 |
Upload an Embryo Image:
|
57 |
|
58 |
Open your web browser and navigate to the provided URL (usually http://localhost:8501). Upload an embryo image in JPG, JPEG, or PNG format.
|