Amir M. Mir

Results 9 issues of Amir M. Mir

## Description This is a tiny PR to ignore `ArrayIndexOutOfBoundsException` when deserializing `Exclusion` objects that contain malformed Maven coordinates. ## Motivation and context This issue currently makes the dependency graph...

bug

## Describe the bug The REST API is completely unresponsive when it's just launched. A simple query like `http://localhost/packages` does not work. ## Logs ``` 2022-06-07 10:08:21.062 DEBUG 1 ---...

## Description This PR makes the following changes to the FASTEN server: - Adds an optional argument `--pi`, which is a base directory for reading input records. E.g., the MetadataDBExtension...

## Description As discussed in #363, it is now possible to generate call graphs from local JARs in the `.m2` folder, created by `POMAnalyzer`. This PR makes the following changes:...

enhancement

As described in #338, we can optimize the network traffic of the FASTEN pipeline by: 1- Downloads should be cached in a configurable folder. 2- The download logic should be...

enhancement

## Description This is a small PR that makes the following changes: - creates a new method `asURIHierarchyParallel()` to create Fasten URIs in parallel. The speed up is 2 times,...

enhancement

## Description This is a tiny PR to add `exec` to `ENTRYPOINT` of Docker files of both the FASTEN server and REST API. This is recommended in the official Docker...

Before this PR, we had to compute triplets on the fly to obtain a training sample, slowing down training and making the GPU wait for data. This PR makes an...

enhancement

The speed of `preprocess` is quite significantly improved by using `parallel_apply()` for processing functions' arguments and reducing the depth of parametric types. `parallel_apply()` is used from [pandarallel](https://nalepae.github.io/pandarallel).