Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bioinf-jku/FCD Loading
base: v1.2
Choose a base ref
...
head repository: bioinf-jku/FCD Loading
compare: master
Choose a head ref
  • 3 commits
  • 10 files changed
  • 1 contributor

Commits on Apr 1, 2024

  1. Add multiple fixes

    1. Changes to `get_one_hot`
    Problems are given in:
    - #14
    - #17
    - #13
    
    I discarded the changes in the PRs and and added more comprehensive handling of the input data in the
    `SmilesDataset` class and the `get_one_hot` function.
    
    2. Imaginary components
    Frechet distance calculation fails to work for some cases because of badly conditioned matrices,
    as described here #15.
    
    Could not reproduce the error locally, but could do so on colab.
    
    Fixed it in `calculate_frechet_distance` by checking if the first `covmean` computation  is real add a small value to the diagonal.
    This made it work for me and I got the same result as the original implementation run locally.
    
    3. Added some more tests and changed to pytest
    
    4. As described in #16
    I changed the data type of the activations to float32 in the `get_predictions` function,
    which saves memory for larger datasets.
    
    5. Change to pyproject.toml
    renzph committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    bf69345 View commit details
    Browse the repository at this point in the history
  2. Add GitHub workflows

    Change version number
    
    Add two workflows that run tests on the dev and master branches
    and added some shields to the README.md file.
    renzph committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    2c45937 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #19 from bioinf-jku/dev

    Fix numerical issues and efficiency issues
    renzph committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    375216c View commit details
    Browse the repository at this point in the history
Loading