diff --git a/README.md b/README.md index a42aeef..31bf484 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ PyNuML is a Python toolkit for processing machine learning (ML) inputs from neut ## Parallel Event IO -HDF5 files produced using the [NuML standard](https://github.com/vhewes/numl) contain tabular data structures representing events, simulated particles, energy depositions, detector hits and any other information defined by the user. For large datasets, accessing the rows of a table corresponding to a specific event based on event index can become prohibitively slow. PyNuML includes a metadata standard for efficient MPI parallel IO with large-scale physics event data. This approach enables very efficient processing of datasets using MPI parallel processing on HPC nodes, while also providing a simple and effective interface for interactive analysis. +HDF5 files produced using the [NuML standard](https://github.com/nugraph/numl) contain tabular data structures representing events, simulated particles, energy depositions, detector hits and any other information defined by the user. For large datasets, accessing the rows of a table corresponding to a specific event based on event index can become prohibitively slow. PyNuML includes a metadata standard for efficient MPI parallel IO with large-scale physics event data. This approach enables very efficient processing of datasets using MPI parallel processing on HPC nodes, while also providing a simple and effective interface for interactive analysis. ## Semantic and instance labelling @@ -51,7 +51,7 @@ pip install pynuml For those who wish to contribute to developing PyNuML, or work with the current development build, the repository can be cloned and installed in editable mode using pip: ``` -git clone https://github.com/vhewes/pynuml +git clone https://github.com/nugraph/pynuml pip install -e ./pynuml ``` diff --git a/docs/index.rst b/docs/index.rst index 10d4bef..5d8fe18 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,4 +1,4 @@ -:github_url: https://github.com/vhewes/pynuml +:github_url: https://github.com/nugraph/pynuml pynuml Documentation ==================== diff --git a/docs/install/installation.rst b/docs/install/installation.rst index 795137d..72f48d5 100644 --- a/docs/install/installation.rst +++ b/docs/install/installation.rst @@ -40,7 +40,7 @@ Installing for development If you're installing **pynuml** for development, you can install the numl Anaconda environment as outlined above, and then clone the repository directly and install it in editable mode:: - git clone https://github.com/vhewes/pynuml + git clone https://github.com/nugraph/pynuml pip install --no-deps -e ./pynuml This will uninstall the conda release of pynuml installed by default as part of the numl environment, and override it with your local repository. If installed in editable mode, any changes made to the package will instantaneously be reflected when the module is imported in Python. \ No newline at end of file diff --git a/pynuml/__init__.py b/pynuml/__init__.py index b3241b8..468a1f0 100644 --- a/pynuml/__init__.py +++ b/pynuml/__init__.py @@ -1,6 +1,6 @@ '''Standardised ML input processing for particle physics''' -__version__ = '23.11.dev' +__version__ = '24.6.dev0' from . import io from . import labels diff --git a/pyproject.toml b/pyproject.toml index 30f91c4..f6494ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,4 +25,4 @@ dependencies = [ dynamic = ["version", "description"] [project.urls] -Home = "https://github.com/vhewes/pynuml" +Home = "https://github.com/nugraph/pynuml"