projects VS spacy-experimental

Compare projects vs spacy-experimental and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
projects spacy-experimental
6 5
1,246 94
1.1% -
4.7 4.2
about 1 month ago 11 days ago
Python Python
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

projects

Posts with mentions or reviews of projects. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-07.
  • Identify custom labels as well as existing labels with Spacy v3
    1 project | /r/LanguageTechnology | 12 Mar 2023
    When I was doing the same task, I used their `spacy project` command-line interface and extended their `ner_drugs` project, made things pretty easy. https://spacy.io/usage/projects https://github.com/explosion/projects/tree/v3/tutorials/ner_drugs
  • Build Spacy NER Loop for Dataframe
    1 project | /r/LanguageTechnology | 17 Dec 2022
    You could check out https://github.com/explosion/projects/tree/v3/tutorials for some sample code (this is the official spacy github)
  • Newbie question with Spacy Coreference Resolution
    3 projects | /r/LanguageTechnology | 7 Oct 2022
    I used this example: https://github.com/explosion/projects/tree/v3/experimental/coref
  • Using pre-trained BERT embeddings for multi-class text classification
    1 project | /r/LanguageTechnology | 10 Jan 2022
    spaCy has an example project that uses BERT that you could use as a reference. It's multilabel but it should be easy to tweak the config to be just multiclass instead.
  • SpaCy v3.0 Released (Python Natural Language Processing)
    9 projects | news.ycombinator.com | 1 Feb 2021
    The improved transformers support is definitely one of the main features of the release. I'm also really pleased with how the project system and config files work.

    If you're always working with exactly one task model, I think working directly in transformers isn't that different from using spaCy. But if you're orchestrating multiple models, spaCy's pipeline components and Doc object will probably be helpful. A feature in v3 that I think will be particularly useful is the ability to share a transformer model between multiple components, for instance you can have an entity recogniser, text classifier and tagger all using the same transformer, and all backpropagating to it.

    You also might find the projects system useful if you're training a lot of models. For instance, take a look at the project repo [here](https://github.com/explosion/projects/tree/v3/benchmarks/ner...). Most of the readme there is actually generated from the project.yml file, which fully specifies the preprocessing steps you need to build the project from the source assets. The project system can also push and pull intermediate or final artifacts to a remote cache, such as an S3 bucket, with the addressing of the artifacts calculated based on hashes of the inputs and the file itself.

    The config file is comprehensive and extensible. The blocks refer to typed functions that you can specify yourself, so you can substitute any of your own layer (or other) functions in, to change some part of the system's behaviour. You don't _have_ to specify your models from the config files like this --- you can instead put it together in code. But the config system means there's a way of fully specifying a pipeline and all of the training settings, which means you can really standardise your training machinery.

    Overall the theme of what we're doing is helping you to line up the workflows you use during development with something you can actually ship. We think one of the problems for ML engineers is that there's quite a gap between how people are iterating in their local dev environment (notebooks, scrappy directories etc) and getting the project into a state that you can get other people working on, try out in automation, and then pilot in some sort of soft production (e.g. directing a small amount of traffic to the model).

    The problem with iterating in the local state is that you're running the model against benchmarks that are not real, and you hit diminishing returns quite quickly this way. It also introduces a lot of rework.

    All that said, there will definitely be usage contexts where it's not worth introducing another technology. For instance, if your main goal is to develop a model, run an experiment and publish a paper, you might find spaCy doesn't do much that makes your life easier.

spacy-experimental

Posts with mentions or reviews of spacy-experimental. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-07.
  • Newbie question with Spacy Coreference Resolution
    3 projects | /r/LanguageTechnology | 7 Oct 2022
    Trying to work with the newly released coreference resolution pipeline
  • spaCy just got an experimental feature to detect co-references
    1 project | /r/learnmachinelearning | 7 Oct 2022
    I think the details are mentioned here: https://github.com/explosion/spacy-experimental/releases/tag/v0.6.0
  • SpanFinder is a new experimental spaCy component that identifies span boundaries
    1 project | news.ycombinator.com | 21 Jun 2022
  • Cython Is 20
    9 projects | news.ycombinator.com | 4 Apr 2022
    I can't speak for the parent commenter, but there is ofte. code 'around' the machine learning code that benefits from high-performance implementations. To give two examples:

    1. We recently implemented an edit tree lemmatizer for spaCy. The machine learning model predicts labels that map to edit trees. However, in order to lemmatize tokens, the trees need to be applied. I implemented all the tree wrangling in Cython to speed up processing and save memory (trees can be encoded as compact C unions):

    https://github.com/explosion/spaCy/blob/master/spacy/pipelin...

    2. I am working on a biaffine parser for spaCy. Most implementations of biaffine parsing use a Python implementation of MST decoding, which is unfortunately quite slow. Some people have reported it to dominate parsing time (rather than a rather expensive transformer + biaffine layer). I have implemented MST decoding in Cython and it barely shows up in profiles:

    https://github.com/explosion/spacy-experimental/blob/master/...

  • Utilizando Neural edit-tree lemmatization para o português
    1 project | dev.to | 26 Mar 2022
    Nós iremos utilizar o template do edit_tree_lemmatizer contido da pasta de projetos do repositório https://github.com/explosion/spacy-experimental e modificaremos para treinar um modelo em português em vez de alemão.

What are some alternatives?

When comparing projects and spacy-experimental you can also consider the following projects:

syntaxdot - Neural syntax annotator, supporting sequence labeling, lemmatization, and dependency parsing.

neuralcoref - ✨Fast Coreference Resolution in spaCy with Neural Networks

duckling - Language, engine, and tooling for expressing, testing, and evaluating composable language rules on input strings.

sentence-splitter - Text to sentence splitter using heuristic algorithm by Philipp Koehn and Josh Schroeder.

spaCy - 💫 Industrial-strength Natural Language Processing (NLP) in Python

word_forms - Accurately generate all possible forms of an English word e.g "election" --> "elect", "electoral", "electorate" etc.

laserembeddings - LASER multilingual sentence embeddings as a pip package

nanobind - nanobind: tiny and efficient C++/Python bindings

rules - Durable Rules Engine

warp - A Python framework for high performance GPU simulation and graphics

Kornia - Geometric Computer Vision Library for Spatial AI

sentimental-onix - sentiment analysis for spacy pipeline in python