Spaces:
Runtime error
Runtime error
File size: 534 Bytes
e25eb00 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
from PIL import Image
def run():
# Add Picture
image = Image.open('mechanical_parts.jpg')
st.image(image, caption='Mechanical Parts')
# Title
st.title('About This Project')
st.markdown('---')
st.write('###### The main objective of this project is implementing a machine learning model, namely Convolutional Neural Networks (CNN), to classify four categories of mechanical parts: bolt, locatingpin, nut, and washer')
st.markdown('---')
if __name__ == '__main__':
run() |