snipsco / snips-nlu-rs

Snips NLU rust implementation
https://snips.ai
Other
340 stars 56 forks source link

Use snips-nlu-parsers crate #109

Closed adrienball closed 5 years ago

adrienball commented 5 years ago

Description This PR introduces the snips-nlu-parsers dependency, which used to be included in snips-nlu-ontology. On top of that, the files have been reorganized in the following way:

Before:

$ tree -L 2 -P *.toml
.
├── Cargo.toml
├── data
│   └── tests
├── snips-nlu-ffi
│   ├── Cargo.toml
│   ├── c
│   ├── kotlin
│   ├── python
│   ├── src
│   └── swift
├── snips-nlu-lib
│   ├── Cargo.toml
│   ├── benches
│   ├── examples
│   └── src
└── target
    └── debug

After:

$ tree -L 2 -P *.toml
.
├── Cargo.toml
├── benches
├── data
│   └── tests
├── examples
├── ffi
│   ├── Cargo.toml
│   └── src
├── platforms
│   ├── c
│   ├── kotlin
│   ├── python
│   └── swift
├── src
│   ├── entity_parser
│   ├── injection
│   ├── intent_classifier
│   ├── intent_parser
│   ├── models
│   ├── resources
│   └── slot_filler
└── target
    └── debug