1 write to _hiddenSize
Microsoft.ML.GenAI.Mistral (1)
MistralMLP.cs (1)
26this._hiddenSize = config.HiddenSize;
3 references to _hiddenSize
Microsoft.ML.GenAI.Mistral (3)
MistralMLP.cs (3)
29this.gate_proj = new QuantizedLinear(this._hiddenSize, this._intermediateSize, hasBias: false, dtype: config.DType); 30this.up_proj = new QuantizedLinear(this._hiddenSize, this._intermediateSize, hasBias: false, dtype: config.DType); 31this.down_proj = new QuantizedLinear(this._intermediateSize, this._hiddenSize, hasBias: false, dtype: config.DType);