Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 289de84

Browse files
authored
Remove old Rasa language model (#325)
* Only test using the small models * lightweight * removed-old-rasa-links * removed rasa tests * update-tests
1 parent 1982304 commit 289de84

34 files changed

+27
-492
lines changed

.github/workflows/croncheck.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
pip install -e ".[dev]"
2525
pip install flake8 pytest black
2626
python -m spacy download en_core_web_sm
27-
python -m spacy download en_core_web_md
2827
- name: Style Check
2928
run: |
3029
# stop the build if there are Python syntax errors or undefined names

.github/workflows/macos-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
python -m pip install --upgrade pip setuptools wheel
2828
pip install -e ".[dev]"
2929
python -m spacy download en_core_web_sm
30-
python -m spacy download en_core_web_md
3130
- name: Test with pytest
3231
run: |
3332
python tests/scripts/prepare_fasttext_tests.py

.github/workflows/pythonpackage.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
python -m pip install --upgrade pip setuptools wheel
2828
pip install -e ".[dev]"
2929
python -m spacy download en_core_web_sm
30-
python -m spacy download en_core_web_md
3130
- name: Test with pytest
3231
run: |
3332
python tests/scripts/prepare_fasttext_tests.py

.github/workflows/rasatest.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ develop:
1212
python tests/scripts/prepare_fasttext_tests.py
1313
python tests/scripts/prepare_gensim_kv.py
1414
python tests/scripts/prepare_floret.py
15-
mkdir tests/rasa-test-demo
16-
rasa init --init-dir tests/rasa-test-demo --no-prompt
1715

1816
flake:
1917
flake8 setup.py --count --statistics --max-complexity=10 --max-line-length=127

docs/examples/arabic/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ One of the goals of this package is to make it simple to explore embeddings.
66
This includes embeddings that are Non-English. In this guide we'll demonstrate how you might be
77
able to use this library to run simple Arabic classification benchmark
88
using scikit-learn and this library. This benchmark was part of discussion
9-
on [github](https://github.com/RasaHQ/whatlies/issues/262).
9+
on [github](https://github.com/koaning/whatlies/issues/262).
1010

1111
If you want to follow along, make sure that this tool is installed.
1212

docs/examples/lipstick-pig/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ emb_debias = e1.merge(e2) | (lang['man'] - lang['woman'])
186186
```
187187

188188
Next, we'll use the fasttext language backend as a scikit-learn featurizer.
189-
You can read more on this feature [here](https://rasahq.github.io/whatlies/tutorial/scikit-learn/).
189+
You can read more on this feature [here](https://koaning.github.io/whatlies/tutorial/scikit-learn/).
190190

191191
```python
192192
from sklearn.svm import SVC

docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ in using an [altair](https://altair-viz.github.io/) visualisation in a publicati
3434
details are listed on their [documentation page](https://altair-viz.github.io/user_guide/saving_charts.html?highlight=save%20svg#png-svg-and-pdf-format)
3535
in short you'll need to install the `altair_saver` package for this functionality.
3636

37-
To get this code to work you [may](https://github.com/RasaHQ/whatlies/issues/58) need to install some node
37+
To get this code to work you [may](https://github.com/koaning/whatlies/issues/58) need to install some node
3838
dependencies though. To install them locally in your project run;
3939

4040
```

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Please use the following citation when you found `whatlies` helpful for any of y
135135
url = "https://www.aclweb.org/anthology/2020.nlposs-1.8",
136136
doi = "10.18653/v1/2020.nlposs-1.8",
137137
pages = "52--60",
138-
abstract = "We introduce whatlies, an open source toolkit for visually inspecting word and sentence embeddings. The project offers a unified and extensible API with current support for a range of popular embedding backends including spaCy, tfhub, huggingface transformers, gensim, fastText and BytePair embeddings. The package combines a domain specific language for vector arithmetic with visualisation tools that make exploring word embeddings more intuitive and concise. It offers support for many popular dimensionality reduction techniques as well as many interactive visualisations that can either be statically exported or shared via Jupyter notebooks. The project documentation is available from https://rasahq.github.io/whatlies/.",
138+
abstract = "We introduce whatlies, an open source toolkit for visually inspecting word and sentence embeddings. The project offers a unified and extensible API with current support for a range of popular embedding backends including spaCy, tfhub, huggingface transformers, gensim, fastText and BytePair embeddings. The package combines a domain specific language for vector arithmetic with visualisation tools that make exploring word embeddings more intuitive and concise. It offers support for many popular dimensionality reduction techniques as well as many interactive visualisations that can either be statically exported or shared via Jupyter notebooks. The project documentation is available from https://koaning.github.io/whatlies/.",
139139
}
140140
```
141141

docs/tutorial/scikit-learn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ a `Pipeline`. You should assume that you cannot use `GridSearchCV` and that you
8383
to disk.
8484

8585
If you see a way to properly support this in general, let us know on github by
86-
creating an [issue](https://github.com/RasaHQ/whatlies/issues).
86+
creating an [issue](https://github.com/koaning/whatlies/issues).

0 commit comments

Comments
 (0)