In this video it shows the steps to develop a flutter app in which it uses a fine tuned model of Gemini AI tool. In this video it writes the dart code for the curl command in the below link:https://ai.google.dev/gemini-api/docs/model-tuning/tutorial?lang=rest#run_inference For steps to create a fine tune model, refer below…
Tag: fine
How to upload a file in OpenAI(ChatGPT) for Fine Tuning?
Steps to upload the file is provided in the below URL: https://platform.openai.com/docs/api-reference/files/create The sample curl command provided in this page is: One will have to update this curl command with one’s details. Below is my example: Then run it in Windows command prompt as below: =========== To get the files…
How to control the size of the text using the seekbar in the floating window in your Android App?
In this video it shows how one can implement a pop-up floating window and control certain elements, such as text size, using the seekbar. It uses the progress attribute of the seekbar to set the respective size of the text in the text view. I hope you like this video….
How to get the device last location (using GPS/ Network) without using Map Layout in your Android App?
This video shows how to implement the FusedLocationProviderClient from the Google’s play-services-location to get the last location of the device. In this approach it need not to use the google maps layout or use the Google Maps API key required to get the google map information. This approach uses the…