You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We updated the docstrings for all of the functions, with new and improved descriptions and usages. We also added new functions to replication and similarity.
An open source Python library for text formatting, augmentation, and similarity calculation tasks in NLP, the package now also includes additional methods for image augmentation.
9
9
10
-
## Changes to DupliPy
10
+
## Changes to DupliPy 0.2.0
11
11
12
-
DupliPy now offers support for image augmentation, with functions to rotate, resize and crop images. These are available through:
13
-
```python
14
-
from duplipy.replication import flip_horizontal, flip_vertical, rotate, random_rotation, resize, crop, random_crop
15
-
```
12
+
DupliPy now includes useful method descriptions in docstrings, allowing anyone to quickly see what a method does and why it is used. DupliPy also now includes a few extra methods in `replication` and `similarity`, including `shuffle_words()` and `jaccard_similarity_score()` .
16
13
17
14
## Installation
18
15
@@ -32,6 +29,7 @@ DupliPy supports the following Python versions:
32
29
- Python 3.9
33
30
- Python 3.10
34
31
- Python 3.11
32
+
- Python 3.12
35
33
36
34
Please ensure that you have one of these Python versions installed before using DupliPy. DupliPy may not work as expected on lower versions of Python than the supported.
37
35
@@ -42,6 +40,9 @@ Please ensure that you have one of these Python versions installed before using
42
40
- Sentiment Analysis: Find impressions within sentences.
43
41
- Similarity Calculation: Calculate text similarity using various metrics.
44
42
- BLEU Score Calculation: Calculate how well your text-based NLP model performs.
43
+
- Image Augmentation Tasks **(NEW)**
44
+
45
+
*For full reference documentation view [DupliPy's official documentation](https://infinitode-docs.gitbook.io/documentation/package-documentation/duplipy-package-documentation).*
0 commit comments