eqcctpro 0.4.1__py3-none-any.whl → 0.4.3__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.

Potentially problematic release.


This version of eqcctpro might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: eqcctpro
3
- Version: 0.4.1
3
+ Version: 0.4.3
4
4
  Description-Content-Type: text/markdown
5
5
  Requires-Dist: numpy==1.26.4
6
6
  Requires-Dist: pandas==2.2.3
@@ -39,27 +39,56 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
39
39
  - Efficient handling of large-scale seismic data
40
40
 
41
41
  ## Installation
42
- To install the necessary dependencies, create a conda environment using:
42
+ To install `EQCCTPro`, there are two installation approaches:
43
+ 1. Install **EQCCTPro** out the box with no sample waveform data to test the application with (experts)
44
+ 2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder (first-time users)
43
45
 
46
+ It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and code to help you get acquainted with **EQCCTPro** and its capabilites.
47
+
48
+ However, if you wish to install **only the EQCCTPro Python package and use it out of the box** (method 1), run:
44
49
  ```sh
45
- [skevofilaxc] conda env create -f environment.yml
46
- [skevofilaxc] conda activate eqcctpro
50
+ **`pip install eqcctpro`**
51
+ ```
52
+ **You must have at least Python verison 3.10.14 for the application to run**.
53
+
54
+ You can install Python 3.10.14 using either traditional methods or do the following commands:
55
+ ```sh
56
+ [skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
57
+ [skevofilaxc] conda activate yourenvironemntname
58
+ [skevofilaxc] python3 --version
59
+ Python 3.10.14 (it should return)
60
+ [skevofilaxc] pip install eqcctpro
61
+ ```
62
+ You will have access to **EQCCTPro** and its capabilities, however, it is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data to help you get acquainted with **EQCCTPro's** functionality.
63
+ You can pull the `EQCCTPro` folder by running the following commands:
64
+
65
+ ```sh
66
+ [skevofilaxc] mkdir my_work_directory
67
+ [skevofilaxc] cd my_work_directory
68
+ [skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
69
+ [skevofilaxc] cd eqcct
70
+ [skevofilaxc] git sparse-checkout set eqcctpro
47
71
  ```
48
72
 
49
- You can get the `environment.yml` file from the `eqcct` repository. You can download the entire eqcct repository or download only the `eqcctpro` repository using the following command:
73
+ If you wish to install **EQCCTPro** with the sample waveform data as **originally intended for first-time users**, and or are having trouble installing Python 3.10.14, there has been a precreated conda environment under the `EQCCTPro` folder that will install the necessary packages
74
+ and dependencies needed for **EQCCTPro** to run (method 2).
50
75
 
76
+ You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it as originally intended for first-time users using the following commands:
51
77
  ```sh
52
78
  [skevofilaxc] mkdir my_work_directory
53
79
  [skevofilaxc] cd my_work_directory
54
80
  [skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
55
81
  [skevofilaxc] cd eqcct
56
82
  [skevofilaxc] git sparse-checkout set eqcctpro
83
+ [skevofilaxc] conda env create -f environment.yml
84
+ [skevofilaxc] conda activate eqcctpro
57
85
  ```
58
- After creating and activating the conda environment, install the **eqcctpro Python package** using the following command:
86
+
87
+ After creating and activating the conda environment, install the **EQCCTPro Python package** using the following command:
59
88
  ```sh
60
89
  [skevofilaxc] pip install eqcctpro
61
90
  ```
62
- More information on the package can be found at our PyPi project link [eqcctpro](https://pypi.org/project/eqcctpro/).
91
+ The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the eqcctpro pip package can be found at our PyPi project link here [(EQCCTPro)](https://pypi.org/project/eqcctpro/).
63
92
 
64
93
  ## Creating a Test Workspace Environment
65
94
  It's highly suggested to create a workspace environment to first understand how eqcctpro works.
@@ -299,7 +328,7 @@ Both **OptimalCPUConfigurationFinder** and **OptimalGPUConfigurationFinder** eac
299
328
 
300
329
  1. **`find_best_overall_usecase`**
301
330
  - Returns the best overall usecase configuration
302
- - Uses middel 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
331
+ - Uses middle 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
303
332
  2. **`find_optimal_for`**
304
333
  - Return the paralleliztion configurations (EX. concurrent predictions, intra/inter thread counts, vram, etc.) for a given number of CPU(s)/GPU(s) and stations
305
334
  - Enables users to quickly identify which input parameters should be used for the given amount of resources and workload they have for the minimum runtime possible on their computer
@@ -336,5 +365,5 @@ The `environment.yml` file specifies the dependencies required to run EQCCTPro.
336
365
  EQCCTPro is provided under an open-source license. See LICENSE for details.
337
366
 
338
367
  ## Contact
339
- For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu.
368
+ For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu or victor.salles@beg.utexas.edu.
340
369
 
@@ -0,0 +1,5 @@
1
+ eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
2
+ eqcctpro-0.4.3.dist-info/METADATA,sha256=8eqWW6sZA3jryXFPqqr6pHLjAauzIoNto7rJQUWgQnI,20949
3
+ eqcctpro-0.4.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
4
+ eqcctpro-0.4.3.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
5
+ eqcctpro-0.4.3.dist-info/RECORD,,
@@ -1,5 +0,0 @@
1
- eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
2
- eqcctpro-0.4.1.dist-info/METADATA,sha256=k-sQCltdzJcX3TtDiPH-Fr2GEiSwPTKk6xYopcQn-_A,18996
3
- eqcctpro-0.4.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
4
- eqcctpro-0.4.1.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
5
- eqcctpro-0.4.1.dist-info/RECORD,,