-
Notifications
You must be signed in to change notification settings - Fork 2
/
NEWS
50 lines (23 loc) · 1.75 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Changes in version 0.1.6
o ADD: `sentence_similarity` to apply {sentence-transformers} to get similarity between texts
o FIX: error in `transformer_scores` when the argument 'device_map' does not exist (solution: ignore device)
# Changes in version 0.1.5
o ADD: basic retrieval-augmented generation in the `rag` function (includes LLAMA-2, Mistral-7B, Orca-2, Phi-2, TinyLLAMA)
o ADD: sentiment analysis for images and videos with faces in `image_scores` and `video_scores` (respectively)
o ADD: function to delete models off computer (saves storage): `delete_transformer`
# Changes in version 0.1.2
o CHANGE: uses *googledrive* rather than *osfr* to import semantic spaces for `nlp_scores`
o CHANGE: uses `LSAfun::costring` to compute `nlp_scores` rather than `LSAfun::multicostring`
# Changes in version 0.1.1
o CHANGE: default `preprocess` set to `FALSE`; working out current issues that appear with non-standard ASCII text
o CHANGE: miniconda + modules are now installed as standalone for the package (replaces the need for Python and avoids conflicting versions)
o UPDATE: vignette reflects miniconda + module installation change
# Changes in version 0.1.0
o ADD: default options to `transformer_scores`: Cross-Encoder's RoBERTa and distillRoBERTa as well as Facebook's BART Large
o ADD: ability to specify any zero-shot classification pipeline by using specified pipeline's name (see Examples in `transformer_scores`)
o ADD: package startup message
o ADD: `utils-transforEmotion` for internal functions
o ADD: `nlp_scores` to compute semantic similarities using Natural Language Processing with word embeddings
o ADD: basic preprocessing functions (internally handled)
o ADD: `stop_words` from the *tm* package for preprocessing
# Initial commit version 0.0.1