robinroy03 commited on
Commit
5698dd2
·
1 Parent(s): e226db7

script to make finetuned models publicly available

Browse files
Files changed (1) hide show
  1. add_finetuned_model.ipynb +55 -0
add_finetuned_model.ipynb ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": null,
6
+ "metadata": {},
7
+ "outputs": [],
8
+ "source": [
9
+ "\"\"\"\n",
10
+ "To add a fine-tuned model, you'll have to grant additional permissions (due to fine-tuned models using personal data).\n",
11
+ "The Google Gemini API currently does not support this feature (https://github.com/google-gemini/cookbook/blob/main/quickstarts/Authentication_with_OAuth.ipynb), therefore ping the REST endpoint to grant access. Just make it EVERYONE cause FURY data isn't something sensitive.\n",
12
+ "\n",
13
+ "To setup gcloud refer: https://ai.google.dev/gemini-api/docs/oauth\n",
14
+ "\n",
15
+ "RESOURCES\n",
16
+ "https://ai.google.dev/gemini-api/docs/model-tuning\n",
17
+ "https://ai.google.dev/api/tuning/permissions\n",
18
+ "\n",
19
+ "\"\"\"\n",
20
+ "\n",
21
+ "import requests\n",
22
+ "\n",
23
+ "model_name = 'tunedModels/model_name' # @param {type:\"string\"}\n",
24
+ "emailAddress = '' # @param {type:\"string\"}\n",
25
+ "\n",
26
+ "\n",
27
+ "access_token = !gcloud auth application-default print-access-token\n",
28
+ "\n",
29
+ "headers = {\n",
30
+ " 'Content-Type': 'application/json',\n",
31
+ " 'Authorization': f'Bearer {access_token[0]}',\n",
32
+ "}\n",
33
+ "\n",
34
+ "body = {\n",
35
+ " 'granteeType': 'EVERYONE',\n",
36
+ " 'role': 'READER'\n",
37
+ "}\n",
38
+ "\n",
39
+ "# Construct correct URL with model name\n",
40
+ "url = f'https://generativelanguage.googleapis.com/v1beta/{model_name}/permissions'\n",
41
+ "\n",
42
+ "response = requests.post(url, json=body, headers=headers)\n",
43
+ "\n",
44
+ "print(response.json())\n"
45
+ ]
46
+ }
47
+ ],
48
+ "metadata": {
49
+ "language_info": {
50
+ "name": "python"
51
+ }
52
+ },
53
+ "nbformat": 4,
54
+ "nbformat_minor": 2
55
+ }