diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-12-17 05:20:05 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-17 05:20:05 -0600 |
commit | 1e86717bf274c6a0380f56f195727812e49f80a2 (patch) | |
tree | 10ced030940fa76dac22e86af8204b886ea352d3 /candle-nn | |
parent | c630622a071756860499ea7914d3a032a47be1b0 (diff) | |
download | candle-1e86717bf274c6a0380f56f195727812e49f80a2.tar.gz candle-1e86717bf274c6a0380f56f195727812e49f80a2.tar.bz2 candle-1e86717bf274c6a0380f56f195727812e49f80a2.zip |
Fix a couple typos (#1451)
* Mixtral quantized instruct.
* Fix a couple typos.
Diffstat (limited to 'candle-nn')
-rw-r--r-- | candle-nn/src/var_builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-nn/src/var_builder.rs b/candle-nn/src/var_builder.rs index 9d245f12..83c86a6f 100644 --- a/candle-nn/src/var_builder.rs +++ b/candle-nn/src/var_builder.rs @@ -40,7 +40,7 @@ struct TensorData<B: Backend> { /// A trait that defines how tensor data is retrieved. /// /// Typically this would use disk storage in some specific format, or random initialization. -/// Note that there is a speciliazed version of this trait (`SimpleBackend`) that can be used most +/// Note that there is a specialized version of this trait (`SimpleBackend`) that can be used most /// of the time. The main restriction is that it doesn't allow for specific args (besides /// initialization hints). pub trait Backend: Send + Sync { |