utilities-nlp 6.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ This is proprietary code.
2
+
3
+ Its copying, alteration and distribution outside official media is strictly prohibited.
@@ -0,0 +1 @@
1
+ recursive-include utilities_nlp *.py *.ttf *.bin *.cfg *.names *.weights *.json *.pt *.txt
@@ -0,0 +1,58 @@
1
+ Metadata-Version: 2.2
2
+ Name: utilities_nlp
3
+ Version: 6.0.1
4
+ Home-page: https://github.com/sapiens-technology/utilities_nlp
5
+ Author: SAPIENS TECHNOLOGY
6
+ License: Proprietary Software
7
+ License-File: LICENSE.txt
8
+ Requires-Dist: TTS==0.22.0
9
+ Requires-Dist: sapiens-transformers
10
+ Requires-Dist: sapiens-infinite-context-window
11
+ Requires-Dist: paddleocr==2.7.3
12
+ Requires-Dist: paddlepaddle
13
+ Requires-Dist: pillow
14
+ Requires-Dist: cloudinary
15
+ Requires-Dist: count-tokens
16
+ Requires-Dist: tiktoken
17
+ Requires-Dist: opencv-python
18
+ Requires-Dist: opencv-python-headless
19
+ Requires-Dist: ffmpeg-python
20
+ Requires-Dist: gTTS
21
+ Requires-Dist: pydub
22
+ Requires-Dist: noisereduce
23
+ Requires-Dist: yt-dlp
24
+ Requires-Dist: httpx<0.28.0
25
+ Requires-Dist: youtube-search-python
26
+ Requires-Dist: youtube-transcript-api
27
+ Requires-Dist: moviepy
28
+ Requires-Dist: certifi
29
+ Requires-Dist: beautifulsoup4
30
+ Requires-Dist: numpy
31
+ Requires-Dist: fasttext
32
+ Requires-Dist: langid
33
+ Requires-Dist: langdetect
34
+ Requires-Dist: requests
35
+ Requires-Dist: mutagen
36
+ Requires-Dist: openai-whisper
37
+ Requires-Dist: setuptools-rust
38
+ Requires-Dist: fpdf
39
+ Requires-Dist: reportlab
40
+ Requires-Dist: python-docx
41
+ Requires-Dist: docx
42
+ Requires-Dist: openpyxl
43
+ Requires-Dist: pandas
44
+ Requires-Dist: XlsxWriter
45
+ Requires-Dist: python-pptx
46
+ Requires-Dist: matplotlib
47
+ Requires-Dist: seaborn
48
+ Requires-Dist: graphviz
49
+ Requires-Dist: networkx
50
+ Requires-Dist: wordcloud
51
+ Requires-Dist: rembg
52
+ Requires-Dist: onnxruntime
53
+ Requires-Dist: super-image
54
+ Requires-Dist: huggingface-hub
55
+ Dynamic: author
56
+ Dynamic: home-page
57
+ Dynamic: license
58
+ Dynamic: requires-dist
@@ -0,0 +1,7 @@
1
+ [metadata]
2
+ license_file = LICENSE.txt
3
+
4
+ [egg_info]
5
+ tag_build =
6
+ tag_date = 0
7
+
@@ -0,0 +1,67 @@
1
+ # This is a library of utility codes with features to facilitate the development and programming of language model algorithms from Sapiens Technology®.
2
+ # All code here is the intellectual property of Sapiens Technology®, and any public mention, distribution, modification, customization, or unauthorized sharing of this or other codes from Sapiens Technology® will result in the author being legally punished by our legal team.
3
+ # --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
4
+ from setuptools import setup, find_packages
5
+ package_name = 'utilities_nlp'
6
+ version = '6.0.1'
7
+ setup(
8
+ name=package_name,
9
+ version=version,
10
+ author='SAPIENS TECHNOLOGY',
11
+ packages=find_packages(),
12
+ include_package_data=True,
13
+ install_requires=[
14
+ 'TTS==0.22.0',
15
+ 'sapiens-transformers',
16
+ 'sapiens-infinite-context-window',
17
+ 'paddleocr==2.7.3',
18
+ 'paddlepaddle',
19
+ 'pillow',
20
+ 'cloudinary',
21
+ 'count-tokens',
22
+ 'tiktoken',
23
+ 'opencv-python',
24
+ 'opencv-python-headless',
25
+ 'ffmpeg-python',
26
+ 'gTTS',
27
+ 'pydub',
28
+ 'noisereduce',
29
+ 'yt-dlp',
30
+ 'httpx<0.28.0',
31
+ 'youtube-search-python',
32
+ 'youtube-transcript-api',
33
+ 'moviepy',
34
+ 'certifi',
35
+ 'beautifulsoup4',
36
+ 'numpy',
37
+ 'fasttext',
38
+ 'langid',
39
+ 'langdetect',
40
+ 'requests',
41
+ 'mutagen',
42
+ 'openai-whisper',
43
+ 'setuptools-rust',
44
+ 'fpdf',
45
+ 'reportlab',
46
+ 'python-docx',
47
+ 'docx',
48
+ 'openpyxl',
49
+ 'pandas',
50
+ 'XlsxWriter',
51
+ 'python-pptx',
52
+ 'matplotlib',
53
+ 'seaborn',
54
+ 'graphviz',
55
+ 'networkx',
56
+ 'wordcloud',
57
+ 'rembg',
58
+ 'onnxruntime',
59
+ 'super-image',
60
+ 'huggingface-hub'
61
+ ],
62
+ url='https://github.com/sapiens-technology/utilities_nlp',
63
+ license='Proprietary Software'
64
+ )
65
+ # This is a library of utility codes with features to facilitate the development and programming of language model algorithms from Sapiens Technology®.
66
+ # All code here is the intellectual property of Sapiens Technology®, and any public mention, distribution, modification, customization, or unauthorized sharing of this or other codes from Sapiens Technology® will result in the author being legally punished by our legal team.
67
+ # --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
@@ -0,0 +1,7 @@
1
+ # This is a library of utility codes with features to facilitate the development and programming of language model algorithms from Sapiens Technology®.
2
+ # All code here is the intellectual property of Sapiens Technology®, and any public mention, distribution, modification, customization, or unauthorized sharing of this or other codes from Sapiens Technology® will result in the author being legally punished by our legal team.
3
+ # --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
4
+ from .utilities_nlp import *
5
+ # This is a library of utility codes with features to facilitate the development and programming of language model algorithms from Sapiens Technology®.
6
+ # All code here is the intellectual property of Sapiens Technology®, and any public mention, distribution, modification, customization, or unauthorized sharing of this or other codes from Sapiens Technology® will result in the author being legally punished by our legal team.
7
+ # --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
File without changes
@@ -0,0 +1,9 @@
1
+ {
2
+ "data_parallel": true,
3
+ "model_type": "EDSR",
4
+ "n_colors": 3,
5
+ "n_feats": 64,
6
+ "n_resblocks": 16,
7
+ "res_scale": 1,
8
+ "rgb_range": 255
9
+ }