Jannes Magnusson

Results 9 issues of Jannes Magnusson

# Feature Request Save which filters / toggles (like log Scale or include pruned trials) were selected and reload it on tab change.

enhancement
contribution-welcome
no-stale

### Description When I try to deselect the first trail in the intermediate values plot, I can only click on the plotly buttons. Same applies for the timeline plot. Maybe...

bug
contribution-welcome

Hi, I just refactored your project to use vuejs. Now the code should be more cleaner and easier to extend by contribution. Also I added buttons to add and remove...

## Describe the bug The [documentation](https://pytorch.org/rl/reference/trainers.html#checkpointing) doesn't match its [implementation](https://github.com/pytorch/rl/blob/main/torchrl/_utils.py#L197). When using the trainer as described, the trainer cannot save a checkpoint since the provided path is a directory and...

bug

Sadly, I am not able to open your documentation link in the `README.rst` file. Am I the only one?

## Motivation 1. When dealing with logging, I found it hard to grasp how to use different loggers and classes. Especially, the Recorder makes it difficult to grasp the idea...

enhancement

is_pretokenized doesnt seem to be respected in some cases. The same code given below works in 0.20.0 ## Code ```python from tokenizers import Tokenizer, pre_tokenizer from tokenizers.models import WordPiece m...

Hey, you have uploaded the clustered data. but for preprocessing the pickles are also required. Could you either add the original lstrings or the pickles! Thank you!

The data is processed twice in `preprocessing.py` at line 663, correct? ```python p = mp.Pool(mp.cpu_count()) for path in sorted_files: p.apply_async(process_file_cluster, args=(path,)) p.close() p.join() with Pool(mp.cpu_count()) as p: p.map(process_file_cluster, files) ```