
Healthsea
This spaCy project trains an NER model and a custom Text Classification model with Clause Segmentation and Blinding capabilities to analyze supplement reviews and their potential effects on health.
Example
import spacy nlp = spacy.load("en_healthsea") doc = nlp("This is great for joint pain.") # Clause Segmentation & Blinding print(doc._.clauses) > { > "split_indices": [0, 7], > "has_ent": true, > "ent_indices": [4, 6], > "blinder": "_CONDITION_", > "ent_name": "joint pain", > "cats": { > "POSITIVE": 0.9824668169021606, > "NEUTRAL": 0.017364952713251114, > "NEGATIVE": 0.00002889777533710003, > "ANAMNESIS": 0.0001394189748680219 > "prediction_text": ["This", "is", "great", "for", "_CONDITION_", "!"] > } # Aggregated results > { > "joint_pain": { > "effects": ["POSITIVE"], > "effect": "POSITIVE", > "label": "CONDITION", > "text": "joint pain" > } > }
GitHubexplosion/healthsea
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.