Arch Train Generator 24/10/2023 11:35, TODO 3.1 --- [Zotero] 1. Deep Residual Learning for Image Recognition [Pytorch Doc] 2.1 Resnet18 https://pytorch.org/vision/main/models/generated/torchvision.models.resnet18.html --- 2.2 [Core] TORCHVISION.MODELS.RESNET https://pytorch.org/vision/main/_modules/torchvision/models/resnet.html#ResNet18_Weights --- 2.3 [Accuracy and Function] https://pytorch.org/vision/main/models/generated/torchvision.models.wide_resnet50_2.html#torchvision.models.Wide_ResNet50_2_Weights --- 2.4 TORCHSCRIPT SUPPORT https://pytorch.org/vision/main/auto_examples/others/plot_scripted_tensor_transforms.html#sphx-glr-auto-examples-others-plot-scripted-tensor-transforms-py --- 3.1 Streamlit Sidebar twice [It works!] Stream lit sidebar with column test succeed ```python import time import streamlit as st def main(): st.title("Streamlit Gallery") with st.sidebar: col1, col2, col3 = st.columns(3) with col1: st.header("A cat") st.image("https://static.streamlit.io/examples/cat.jpg") with col2: st.header("A dog") st.image("https://static.streamlit.io/examples/dog.jpg") with col3: st.header("An owl") st.image("https://static.streamlit.io/examples/owl.jpg") if __name__ == "__main__": st.set_page_config(page_title="Streamlit Gallery by Okld", page_icon="🎈", layout="wide") main() ``` --- 3.2 [Optional && Either tow columns are okay enough] Streamlit elements features insert into the sidebar https://github.com/okld/streamlit-gallery/tree/main/streamlit_gallery/components/elements --- 3.3 The second column with 2.1-2.4 pytorch specific Train Resnet