HuSpaCy
HuSpaCy is a spaCy model and a library providing industrial-strength Hungarian language processing facilities.
View moreExample
# Load the model using huspacy import huspacy nlp = huspacy.load() # Load the mode using spacy.load() import spacy nlp = spacy.load("hu_core_news_lg") # Load the model directly as a module import hu_core_news_lg nlp = hu_core_news_lg.load() # Either way you get the same model and can start processing texts. doc = nlp("Csiribiri csiribiri zabszalma - négy csillag közt alszom ma.")
GitHubhuspacy/huspacy
Categories models
Found a mistake or something isn't working?
If you've come across a universe project that isn't working or is incompatible with the reported spaCy version, let us know by opening a discussion thread.
Submit your project
If you have a project that you want the spaCy community to make use of, you can suggest it by submitting a pull request to the spaCy website repository. The Universe database is open-source and collected in a simple JSON file. For more details on the formats and available fields, see the documentation. Looking for inspiration your own spaCy plugin or extension? Check out the project idea
label on the issue tracker.