Skip to content

Instantly share code, notes, and snippets.

View treuille's full-sized avatar

Adrien Treuille treuille

View GitHub Profile
@treuille
treuille / spacy_example.py
Created September 21, 2019 21:52
Provisional solution to @ines's Streamlit caching problem with Spacy
import streamlit as st
import spacy
from spacy import displacy
SPACY_MODEL_NAMES = ["en_core_web_sm", "de_core_news_sm"]
DEFAULT_TEXT = "Mark Zuckerberg is the CEO of Facebook."
HTML_WRAPPER = """<div style="overflow-x: auto; border: 1px solid #e6e9ef; border-radius: 0.25rem; padding: 1rem">{}</div>"""
@st.cache(ignore_hash=True)