当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Streamlit st.experimental_singleton.clear用法及代码示例


清除所有单例缓存。

函数签名

st.experimental_singleton.clear()

示例

在下面的示例中,按下 "Clear All" 按钮将清除 all 单例缓存。即从所有用 @st.experimental_singleton 修饰的函数中清除缓存的单例对象。

import streamlit as st
from transformers import BertModel

@st.experimental_singleton
 def get_database_session(url):
     # Create a database session object that points to the URL.
     return session

@st.experimental_singleton
def get_model(model_type):
    # Create a model of the specified type.
    return BertModel.from_pretrained(model_type)

if st.button("Clear All"):
    # Clears all singleton caches:
    st.experimental_singleton.clear()

相关用法


注:本文由纯净天空筛选整理自streamlit.io大神的英文原创作品 st.experimental_singleton.clear。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。