⚙️Fine-tuning
Create tuned model
var baseModel = (await GenerativeAI.DefaultInstance.Models.List())
.FirstOrDefault(m => m.SupportedGenerationMethods.Contains("createTunedModel"));
Debug.Log(baseModel.ToString());
/* log
Model(name='models/gemini-1.0-pro-001',
base_model_id='',
version='001',
display_name='Gemini 1.0 Pro',
description=('The best model for scaling across a wide range of tasks. This is a stable '
'model that supports tuning.'),
input_token_limit=30720,
output_token_limit=2048,
supported_generation_methods=['generateContent', 'countTokens', 'createTunedModel'],
temperature=0.9,
top_p=1.0,
top_k=1)
*/base_model = [
m for m in genai.list_models()
if "createTunedModel" in m.supported_generation_methods][0]
base_modelEvaluate your model
Update the description
Delete the model
Last updated
