From e667338fd1db60c8fc8dd50f9c70930919020570 Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Fri, 7 Apr 2023 18:56:09 +0200 Subject: [PATCH 1/2] Add gudhi release 3.8.0 --- _posts/2023-04-07-Gudhi-Release-3.8.0.md | 80 ++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 _posts/2023-04-07-Gudhi-Release-3.8.0.md diff --git a/_posts/2023-04-07-Gudhi-Release-3.8.0.md b/_posts/2023-04-07-Gudhi-Release-3.8.0.md new file mode 100644 index 0000000..ede3b3f --- /dev/null +++ b/_posts/2023-04-07-Gudhi-Release-3.8.0.md @@ -0,0 +1,80 @@ +--- +layout: page +# +# Content +# +subheadline: "New release" +title: "GUDHI version 3.8.0rc1" +teaser: "As a major new feature, the GUDHI library now offers Perslay, a Tensorflow model for the representations module, scikit-learn like interfaces for Cover Complexes, a new function to compute persistence of a function on ℝ and the possibility to build a Cubical Complex as a lower-star filtration from vertices." +author: GUDHI Editorial Board +categories: + - Release +tags: + - GUDHI release +# +# Use the call for action to show a button on the frontpage +# +# To make internal links, just use a permalink like this +# url: /getting-started/ +# +# To style the button in different colors, use no value +# to use the main color or success, alert or secondary. +# To change colors see sass/_01_settings_colors.scss +# +callforaction: + url: https://github.com/GUDHI/gudhi-devel/releases/download/tags%2Fgudhi-release-3.8.0rc1/gudhi.3.8.0rc1.tar.gz + text: Download GUDHI version 3.8.0rc1 + style: alert +--- +We are pleased to announce the release 3.8.0rc1 of the GUDHI library. + +As a major new feature, the GUDHI library now offers Perslay, a Tensorflow model for the representations module, scikit-learn like interfaces for Cover Complexes, a new function to compute persistence of a function on ℝ and the possibility to build a Cubical Complex as a lower-star filtration from vertices. + +We are now using GitHub to develop the GUDHI library, do not hesitate to [fork the GUDHI project on GitHub](https://github.com/GUDHI/gudhi-devel). From a user point of view, we recommend to download GUDHI user version (gudhi.3.X.X.tar.gz). + +Below is a list of changes made since GUDHI 3.7.1: + +- [Perslay](https://gudhi.inria.fr/python/latest/representations_tflow_itf_ref.html) + - a TensorFlow layer for persistence diagrams representations. + +- [Cover Complex](https://gudhi.inria.fr/python/latest/cover_complex_sklearn_user.html) + - New classes to compute Mapper, Graph Induced complex and Nerves with a scikit-learn like interface. + +- [Persistent cohomology](https://gudhi.inria.fr/doc/latest/group__persistent__cohomology.html) + - New linear-time `compute_persistence_of_function_on_line`, also available though `CubicalPersistence` in Python. + +- [Cubical complex](https://gudhi.inria.fr/doc/latest/group__cubical__complex.html) + - Add possibility to build a lower-star filtration from vertices instead of top-dimensional cubes. + - Naming the arguments is now mandatory in CubicalComplex python constructor. + - Remove `newshape` mechanism from [CubicalPersistence](https://gudhi.inria.fr/python/latest/cubical_complex_sklearn_itf_ref.html) + +- [Hera version of Wasserstein distance](https://gudhi.inria.fr/python/latest/wasserstein_distance_user.html#hera) + - now provides matching in its interface. + +- [Subsampling](https://gudhi.inria.fr/doc/latest/group__subsampling.html) + - New `choose_n_farthest_points_metric` as a faster alternative of `choose_n_farthest_points`. + +- [SimplexTree](https://gudhi.inria.fr/python/latest/simplex_tree_ref.html) + - `SimplexTree` can now be used with `pickle`. + - new `prune_above_dimension` method. + +- Installation + - CMake 3.8 is the new minimal standard to compile the library. + - Support for oneAPI TBB (instead of deprecated TBB) to take advantage of multicore performance. + +- [Python documentation](https://gudhi.inria.fr/python/latest/installation.html) + - [pydata-sphinx-theme](https://pydata-sphinx-theme.readthedocs.io/en/stable/) is the new sphinx theme of the python documentation. + +- Miscellaneous + - The [list of bugs that were solved since GUDHI-3.7.1](https://github.com/GUDHI/gudhi-devel/issues?q=label%3A3.8.0+is%3Aclosed) is available on GitHub. + +All modules are distributed under the terms of the MIT license. +However, there are still GPL dependencies for many modules. We invite you to check our [license dedicated web page]({{ site.officialurl }}/licensing/) for further details. + +We kindly ask users to cite the GUDHI library as appropriately as possible in their papers, and to mention the use of the GUDHI library on the web pages of their projects using GUDHI and provide us with links to these web pages. + +We provide [bibtex entries]({{ site.officialurl }}/doc/latest/_citation.html) for the modules of the User and Reference Manual, as well as for publications directly related to the GUDHI library. + +Feel free to [contact us]({{ site.officialurl }}/contact/) in case you have any questions or remarks. + +For further information about downloading and installing the library ([C++]({{ site.officialurl }}/doc/latest/installation.html) or [Python]({{ site.officialurl }}/python/latest/installation.html)), please visit the [GUDHI web site]({{ site.officialurl }}/). From c595b1aa157e9a0746cc9428ac6fecf4f2bfb99c Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Fri, 7 Apr 2023 19:03:29 +0200 Subject: [PATCH 2/2] sphinx theme is part of the installation --- _posts/2023-04-07-Gudhi-Release-3.8.0.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/_posts/2023-04-07-Gudhi-Release-3.8.0.md b/_posts/2023-04-07-Gudhi-Release-3.8.0.md index ede3b3f..4bf81e2 100644 --- a/_posts/2023-04-07-Gudhi-Release-3.8.0.md +++ b/_posts/2023-04-07-Gudhi-Release-3.8.0.md @@ -61,8 +61,6 @@ Below is a list of changes made since GUDHI 3.7.1: - Installation - CMake 3.8 is the new minimal standard to compile the library. - Support for oneAPI TBB (instead of deprecated TBB) to take advantage of multicore performance. - -- [Python documentation](https://gudhi.inria.fr/python/latest/installation.html) - [pydata-sphinx-theme](https://pydata-sphinx-theme.readthedocs.io/en/stable/) is the new sphinx theme of the python documentation. - Miscellaneous