Corey Lowman

Results 78 issues of Corey Lowman

_Originally posted by @coreylowman in https://github.com/coreylowman/cudarc/issues/132#issuecomment-1518721978_

This would involve filtering the results in the three `pick_algorithm` methods for only ones that are marked as deterministic. Since I don't want this to be a breaking change, let's...

enhancement

Blocking questions: 1. Is it safe to std::mem::forget the tensor? Is that all we need to do? What about the other fields of tensor? 2. Is the Vec::from_raw_parts_mut usage safe?

- llama is generation, so can't really be used with chat - vicuna is a chatbot - alpaca is instruction model If not able to determine "mode" a user could...

Alpaca 7b should be the exact same structure, so as long as you can convert the weights into the same format with `convert.py` it should be runnable out of the...

Use cases: 1. You can fit the whole model into GPU ram 2. You can fit part of the model into GPU ram 3. You need keep all the model...

Here is a running example of stable baselines 3 PPO agent. It requires more custom strategy class, so this does not inherit from the `RLBaseStrategy` in the avalanche-rl repo. Main...