wyzdic

Results 11 comments of wyzdic

Did you mining monero? You can try intensity 1792 and worksize 16.

I know the cause of this problem. I just want to know the specific meaning of this GPU ID. "AMD Invalid Result GPU ID 3". Is GPUID3 the index number...

My typical usage: 1. Use the app.py as the entry file to handle the login and menu menus 2. Create a new folder in the app.py file directory and assign...

Thank you for your reply, I found other problems besides that If I put some other elements after if not st.session_state["authentication_status"]: , when I refresh the page, the elements of...

Here is a snippet of code that reproduces the issue `if not st.session_state["authentication_status"]: with open("Animation - 1707212136085.json", 'r') as f: login_main = json.load(f) login_page_columns = st.columns([2.5, 3, 2.5]) with login_page_columns[1]:...

Additional note: I use edge and have tried multiple versions with the same issue

After testing, it was found that the problem was caused by extra_streamlit_components component. If you are also using Streamlit-Authenticator and streamlit==1.37, you can use the following code to fix it...

https://discuss.streamlit.io/t/after-installing-streamlit-authenticator-and-logging-in-sidebar-menu-desappears-when-reloading-browser-other-components-remain/65304 Same issue here, using streamlit-option-menu

After actual testing, I found out that it was extra_streamlit_components component that caused the problem, I tried to comment out the extra_streamlit_components related code in Streamlit-Authenticator, the problem never happened...

Update: I found a temporary solution Modify Streamlit_Authenticator/models/cookie_model.py Comment: # self.token = self.cookie_manager.get(self.cookie_name) Modified to (streamlit==1.37) if st.context.cookies.get("stauth_cookie"): self.token = st.context.cookies["stauth_cookie"] It's working fine now