halib 0.1.73__py3-none-any.whl → 0.1.75__py3-none-any.whl

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.
@@ -1,189 +1,195 @@
1
- Metadata-Version: 2.1
2
- Name: halib
3
- Version: 0.1.73
4
- Summary: Small library for common tasks
5
- Author: Hoang Van Ha
6
- Author-email: hoangvanhauit@gmail.com
7
- License: UNKNOWN
8
- Platform: UNKNOWN
9
- Classifier: Programming Language :: Python :: 3
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.8
13
- Description-Content-Type: text/markdown
14
- License-File: LICENSE.txt
15
- Requires-Dist: arrow
16
- Requires-Dist: click
17
- Requires-Dist: enlighten
18
- Requires-Dist: kaleido (==0.1.*)
19
- Requires-Dist: loguru
20
- Requires-Dist: more-itertools
21
- Requires-Dist: moviepy
22
- Requires-Dist: networkx
23
- Requires-Dist: numpy
24
- Requires-Dist: omegaconf
25
- Requires-Dist: opencv-python
26
- Requires-Dist: pandas
27
- Requires-Dist: Pillow
28
- Requires-Dist: Pyarrow
29
- Requires-Dist: pycurl
30
- Requires-Dist: python-telegram-bot
31
- Requires-Dist: requests
32
- Requires-Dist: rich
33
- Requires-Dist: scikit-learn
34
- Requires-Dist: matplotlib
35
- Requires-Dist: seaborn
36
- Requires-Dist: plotly
37
- Requires-Dist: pygwalker
38
- Requires-Dist: tabulate
39
- Requires-Dist: itables
40
- Requires-Dist: timebudget
41
- Requires-Dist: tqdm
42
- Requires-Dist: tube-dl
43
- Requires-Dist: wandb
44
- Requires-Dist: dataclass-wizard
45
-
46
- Helper package for coding and automation
47
-
48
- **Version 0.1.73**
49
-
50
- + `research/base_exp`: add base experiment class to handle common experiment tasks, including performance calculation and saving results.
51
-
52
- **Version 0.1.67**
53
-
54
- + now use `uv` for venv management
55
- + `research/perfcalc`: support both torchmetrics and custom metrics for performance calculation
56
-
57
- **Version 0.1.61**
58
-
59
- + add `util/video`: add `VideoUtils` class to handle common video-related tasks
60
- + add `util/gpu_mon`: add `GPUMonitor` class to monitor GPU usage and performance
61
-
62
- **Version 0.1.59**
63
-
64
- + add `util/perfcalc`: abstract class for performance calculation. This class need to be inherited and implemented with specific performance calculation logic.
65
-
66
- **Version 0.1.55**
67
-
68
- + add `util/dataclass_util` to help dynamically create `dataclass` classes from dictionary or YAML file, including support for nested dataclasses. From there, we can use `dataclass_wizard` to create a list of `dataclass` classes with the help from ChatGPT.
69
-
70
- **Version 0.1.52**
71
-
72
- + add `research/perftb` module to allow creating and managing performance tables for experiments, including filtering by datasets, metrics, and experiments.
73
-
74
- **Version 0.1.50**
75
-
76
- + add `pprint_local_path` to print local path (file/directory) in clickable link (as file URI)
77
-
78
- + add `research` package to help with research tasks, including `benchquery` for benchmarking queries from dataframe
79
- + add `wandb` module to allow easy sync offline data to Weights & Biases (wandb) and batch clear wandb runs.
80
-
81
- **Version 0.1.47**
82
- + add `pprint_box` to print object/string in a box frame (like in `inspect`)
83
-
84
- **Version 0.1.46**
85
- + filter the warning message of `UserWarning: Unable to import Axes3D.`
86
- + auto_wrap_text for `fn_display_df` to avoid long text in the table
87
-
88
- **Version 0.1.42**
89
- + add <rich_color.py>: add basic color list (for easy usage)
90
-
91
- **Version 0.1.41**
92
- + add <rich_color.py> to display rich color information in <rich> python package (rcolor_str, rcolor_pallet_all, etc.)
93
-
94
- **Version 0.1.40**
95
-
96
- + update <csvfile.py> to use `itables` and `pygwalker` to display dataframe in jupyter notebook.
97
-
98
- **Version 0.1.38**
99
-
100
- + add <torchloader.py> to search for best cfg for torch dataloader (num_workers, batch_size, pin_memory, et.)
101
-
102
- **Version 0.1.37**
103
-
104
- + add <dataset.py> to help split classification dataset into train/val(test)
105
- ---
106
- **Version 0.1.33**
107
-
108
- + add `plot.py` module to plot DL model training history (with columlns: epoch, train_accuracy, val_accuracy, train_loss, val_loss) using `seaborn` and `matplotlib`
109
- ---
110
- **Version 0.1.29**
111
-
112
- + for `tele_noti` module, `kaleido==0.1.*` is required for plotly since `kaleido 0.2.*` is not working (taking for ever to generate image)
113
- ---
114
- **Version 0.1.24**
115
-
116
- + rename `sys` to `system` to avoid conflict with built-in `sys` module
117
- + add `tele_noti` module to send notification to telegram after a specific interval for training progress monitoring
118
- ---
119
- **Version 0.1.22**
120
-
121
- + add `cuda.py` module to check CUDA availability (for both pytorch and tensorflow)
122
- ---
123
- **Version 0.1.21**
124
-
125
- + using `networkx` and `omegaconf` to allow yaml file inheritance and override
126
- ---
127
- **Version 0.1.15**
128
-
129
- + `__init__.py`: add common logging library; also `console_log` decorator to log function (start and end)
130
-
131
- ---
132
-
133
- **Version 0.1.10**
134
-
135
- + filesys: fix typo on "is_exit" to "is_exist"
136
- + gdrive: now support uploading file to folder and return direct link (shareable link)
137
-
138
- **Version 0.1.9**
139
-
140
- + add dependencies requirement.txt
141
-
142
- **Version 0.1.8**
143
-
144
- Fix bugs:
145
-
146
- + [performance] instead of inserting directly new rows into table dataframe, first insert it into in-memory `row_pool_dict`, that fill data in that dict into the actual dataframe when needed.
147
-
148
- ---
149
-
150
- **Version 0.1.7**
151
-
152
- Fix bugs:
153
-
154
- + fix insert into table so slow by allowing insert multiple rows at once
155
-
156
- ---
157
-
158
- **Version 0.1.6**
159
-
160
- New features:
161
-
162
- + add DFCreator for manipulating table (DataFrame) - create, insert row, display, write to file
163
-
164
- ---
165
-
166
- **Version 0.1.5**
167
-
168
- New Features
169
-
170
- + add cmd module
171
- + new package structure
172
-
173
- ---
174
-
175
- **Version 0.1.4**
176
-
177
- New Features
178
-
179
- + add support to create Bitbucket Project from template
180
-
181
- ---
182
-
183
- **Version 0.1.2**
184
-
185
- New Features
186
-
187
- + add support to upload local to google drive.
188
-
189
-
1
+ Metadata-Version: 2.4
2
+ Name: halib
3
+ Version: 0.1.75
4
+ Summary: Small library for common tasks
5
+ Author: Hoang Van Ha
6
+ Author-email: hoangvanhauit@gmail.com
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE.txt
13
+ Requires-Dist: arrow
14
+ Requires-Dist: click
15
+ Requires-Dist: enlighten
16
+ Requires-Dist: loguru
17
+ Requires-Dist: more-itertools
18
+ Requires-Dist: moviepy
19
+ Requires-Dist: networkx
20
+ Requires-Dist: numpy
21
+ Requires-Dist: omegaconf
22
+ Requires-Dist: opencv-python
23
+ Requires-Dist: pandas
24
+ Requires-Dist: Pillow
25
+ Requires-Dist: Pyarrow
26
+ Requires-Dist: pycurl
27
+ Requires-Dist: python-telegram-bot
28
+ Requires-Dist: requests
29
+ Requires-Dist: rich
30
+ Requires-Dist: scikit-learn
31
+ Requires-Dist: matplotlib
32
+ Requires-Dist: seaborn
33
+ Requires-Dist: plotly
34
+ Requires-Dist: pygwalker
35
+ Requires-Dist: tabulate
36
+ Requires-Dist: itables
37
+ Requires-Dist: timebudget
38
+ Requires-Dist: tqdm
39
+ Requires-Dist: tube_dl
40
+ Requires-Dist: wandb
41
+ Requires-Dist: dataclass-wizard
42
+ Requires-Dist: kaleido==0.1.*; sys_platform == "win32"
43
+ Requires-Dist: kaleido; sys_platform == "linux"
44
+ Dynamic: author
45
+ Dynamic: author-email
46
+ Dynamic: classifier
47
+ Dynamic: description
48
+ Dynamic: description-content-type
49
+ Dynamic: license-file
50
+ Dynamic: requires-dist
51
+ Dynamic: requires-python
52
+ Dynamic: summary
53
+
54
+ Helper package for coding and automation
55
+
56
+ **Version 0.1.74**
57
+
58
+ + `research/base_exp`: add base experiment class to handle common experiment tasks, including performance calculation and saving results.
59
+
60
+ **Version 0.1.67**
61
+
62
+ + now use `uv` for venv management
63
+ + `research/perfcalc`: support both torchmetrics and custom metrics for performance calculation
64
+
65
+ **Version 0.1.61**
66
+
67
+ + add `util/video`: add `VideoUtils` class to handle common video-related tasks
68
+ + add `util/gpu_mon`: add `GPUMonitor` class to monitor GPU usage and performance
69
+
70
+ **Version 0.1.59**
71
+
72
+ + add `util/perfcalc`: abstract class for performance calculation. This class need to be inherited and implemented with specific performance calculation logic.
73
+
74
+ **Version 0.1.55**
75
+
76
+ + add `util/dataclass_util` to help dynamically create `dataclass` classes from dictionary or YAML file, including support for nested dataclasses. From there, we can use `dataclass_wizard` to create a list of `dataclass` classes with the help from ChatGPT.
77
+
78
+ **Version 0.1.52**
79
+
80
+ + add `research/perftb` module to allow creating and managing performance tables for experiments, including filtering by datasets, metrics, and experiments.
81
+
82
+ **Version 0.1.50**
83
+
84
+ + add `pprint_local_path` to print local path (file/directory) in clickable link (as file URI)
85
+
86
+ + add `research` package to help with research tasks, including `benchquery` for benchmarking queries from dataframe
87
+ + add `wandb` module to allow easy sync offline data to Weights & Biases (wandb) and batch clear wandb runs.
88
+
89
+ **Version 0.1.47**
90
+ + add `pprint_box` to print object/string in a box frame (like in `inspect`)
91
+
92
+ **Version 0.1.46**
93
+ + filter the warning message of `UserWarning: Unable to import Axes3D.`
94
+ + auto_wrap_text for `fn_display_df` to avoid long text in the table
95
+
96
+ **Version 0.1.42**
97
+ + add <rich_color.py>: add basic color list (for easy usage)
98
+
99
+ **Version 0.1.41**
100
+ + add <rich_color.py> to display rich color information in <rich> python package (rcolor_str, rcolor_pallet_all, etc.)
101
+
102
+ **Version 0.1.40**
103
+
104
+ + update <csvfile.py> to use `itables` and `pygwalker` to display dataframe in jupyter notebook.
105
+
106
+ **Version 0.1.38**
107
+
108
+ + add <torchloader.py> to search for best cfg for torch dataloader (num_workers, batch_size, pin_memory, et.)
109
+
110
+ **Version 0.1.37**
111
+
112
+ + add <dataset.py> to help split classification dataset into train/val(test)
113
+ ---
114
+ **Version 0.1.33**
115
+
116
+ + add `plot.py` module to plot DL model training history (with columlns: epoch, train_accuracy, val_accuracy, train_loss, val_loss) using `seaborn` and `matplotlib`
117
+ ---
118
+ **Version 0.1.29**
119
+
120
+ + for `tele_noti` module, `kaleido==0.1.*` is required for plotly since `kaleido 0.2.*` is not working (taking for ever to generate image)
121
+ ---
122
+ **Version 0.1.24**
123
+
124
+ + rename `sys` to `system` to avoid conflict with built-in `sys` module
125
+ + add `tele_noti` module to send notification to telegram after a specific interval for training progress monitoring
126
+ ---
127
+ **Version 0.1.22**
128
+
129
+ + add `cuda.py` module to check CUDA availability (for both pytorch and tensorflow)
130
+ ---
131
+ **Version 0.1.21**
132
+
133
+ + using `networkx` and `omegaconf` to allow yaml file inheritance and override
134
+ ---
135
+ **Version 0.1.15**
136
+
137
+ + `__init__.py`: add common logging library; also `console_log` decorator to log function (start and end)
138
+
139
+ ---
140
+
141
+ **Version 0.1.10**
142
+
143
+ + filesys: fix typo on "is_exit" to "is_exist"
144
+ + gdrive: now support uploading file to folder and return direct link (shareable link)
145
+
146
+ **Version 0.1.9**
147
+
148
+ + add dependencies requirement.txt
149
+
150
+ **Version 0.1.8**
151
+
152
+ Fix bugs:
153
+
154
+ + [performance] instead of inserting directly new rows into table dataframe, first insert it into in-memory `row_pool_dict`, that fill data in that dict into the actual dataframe when needed.
155
+
156
+ ---
157
+
158
+ **Version 0.1.7**
159
+
160
+ Fix bugs:
161
+
162
+ + fix insert into table so slow by allowing insert multiple rows at once
163
+
164
+ ---
165
+
166
+ **Version 0.1.6**
167
+
168
+ New features:
169
+
170
+ + add DFCreator for manipulating table (DataFrame) - create, insert row, display, write to file
171
+
172
+ ---
173
+
174
+ **Version 0.1.5**
175
+
176
+ New Features
177
+
178
+ + add cmd module
179
+ + new package structure
180
+
181
+ ---
182
+
183
+ **Version 0.1.4**
184
+
185
+ New Features
186
+
187
+ + add support to create Bitbucket Project from template
188
+
189
+ ---
190
+
191
+ **Version 0.1.2**
192
+
193
+ New Features
194
+
195
+ + add support to upload local to google drive.
@@ -51,8 +51,8 @@ halib/utils/gpu_mon.py,sha256=vD41_ZnmPLKguuq9X44SB_vwd9JrblO4BDzHLXZhhFY,2233
51
51
  halib/utils/listop.py,sha256=Vpa8_2fI0wySpB2-8sfTBkyi_A4FhoFVVvFiuvW8N64,339
52
52
  halib/utils/tele_noti.py,sha256=-4WXZelCA4W9BroapkRyIdUu9cUVrcJJhegnMs_WpGU,5928
53
53
  halib/utils/video.py,sha256=ZqzNVPgc1RZr_T0OlHvZ6SzyBpL7O27LtB86JMbBuR0,3059
54
- halib-0.1.73.dist-info/LICENSE.txt,sha256=qZssdna4aETiR8znYsShUjidu-U4jUT9Q-EWNlZ9yBQ,1100
55
- halib-0.1.73.dist-info/METADATA,sha256=rbQYLf3CgTFzNtQ66v6OCEHpE9yjNfT2Qf7LDd-II-g,5350
56
- halib-0.1.73.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
57
- halib-0.1.73.dist-info/top_level.txt,sha256=7AD6PLaQTreE0Fn44mdZsoHBe_Zdd7GUmjsWPyQ7I-k,6
58
- halib-0.1.73.dist-info/RECORD,,
54
+ halib-0.1.75.dist-info/licenses/LICENSE.txt,sha256=qZssdna4aETiR8znYsShUjidu-U4jUT9Q-EWNlZ9yBQ,1100
55
+ halib-0.1.75.dist-info/METADATA,sha256=Hic05vB3hcIpLbNKux1IsnlOUBMVa5smppGOdUQZUzQ,5778
56
+ halib-0.1.75.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
57
+ halib-0.1.75.dist-info/top_level.txt,sha256=7AD6PLaQTreE0Fn44mdZsoHBe_Zdd7GUmjsWPyQ7I-k,6
58
+ halib-0.1.75.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5