Stijn
Stijn
The following code throws an exception. ```python import kernel_tuner source = """ __global__ void foo() { } """ problem_size = 100 args = [] tune_params = dict( block_size_x=[1, 64], block_size_y=[1,...
WoS (Web of Science) is a very popular database for scientific literature. There exists an Python wrapper for their API (https://pypi.org/project/wos/). It would be great if this was supported in...
Currently, the topic modeling methods require the user to select the number of topics. It would be great if the optimal number of topics was selected automatically. For example, this...
Currently, there is no way to export results after loading them into memory. On possibility would be to add the ability to export a `DocumentSet` to a RIS file.
Currently, there is no way to export results after loading them into memory. On possibility would be to add the ability to export a `DocumentSet` to a bibtex file.
Calculating the statistics requires fuzzy matching of names. Currently, this matching is not too aggressive since we do want to avoid incorrectly matching two different names. The matching algorithm should...
pyvis is very slow if the network being visualized is large (ie, >1000 nodes). The current solution is to disable interactivity in pyvis for large graph and calculate the graph...
The following code is missing the f-prefix on the string, resulting in the error printing a literal `{k}` https://github.com/KernelTuner/kernel_tuner/blob/b3ff4cdecb12655009b356e3b1840e25b1dd1421/kernel_tuner/util.py#L615
Some users are reporting that a `Document` can sometimes have a title that is `None`. Many of the internal functions in LitStudy assume that documents always have valid title and...
According to the website of [OpenAlex](https://docs.openalex.org/): The OpenAlex dataset describes scholarly and how those entities are connected to each other. There is an open web API available. It would be...