Search found 327 matches: model

Return to advanced search

IA y Harbour Conceptos básicos

Saludos al foro Agradecer especialmente a Antonio Linares por la charla del pasado viernes 12-4-2024 a la que no pude asistir Afortunadamente tenemos a Cristobal Navarro para grabarlo todo y subirlo al canal https://www.youtube.com/watch?v=3O_8pxw1wHc En la charla se expuso muchísima inf...
by Joaquim Ferrer
Sat Apr 13, 2024 10:57 am
 
Forum: Artificial Intelligence
Topic: IA y Harbour Conceptos básicos
Replies: 1
Views: 90

Re: Problem with valid email refresh btnbmp

Silvio, Master Nages' model, with few changes, works perfectly on Windows 7 32 bits with HARBOUR and XHARBOUR. Test it on Windows 10/11. Silvio, el modelo del Maestro Nages, con pocos cambios, funciona perfectamente en Windows 7 32 ...
by Silvio.Falconi
Tue Apr 09, 2024 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2435

Re: Problem with valid email refresh btnbmp

Silvio, Master Nages' model, with few changes, works perfectly on Windows 7 32 bits with HARBOUR and XHARBOUR. Test it on Windows 10/11. Silvio, el modelo del Maestro Nages, con pocos cambios, funciona perfectamente en Windows 7 32 bits ...
by karinha
Mon Apr 08, 2024 11:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2435

Re: Does anyone have an Envelope Printing module ?

... on the envelope, I never saw anything. Perhaps, if Mr. Rick had an image of how to print, it would help. Or maybe there is a specific printer model for this... Buenos días Maestro Otto. Estoy seguro de que tienes razón. Pero creo que es difícil ayudar al Sr. Rick, ya que nunca he visto nada ...
by karinha
Sat Mar 02, 2024 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have an Envelope Printing module ?
Replies: 10
Views: 578

Re: Problem with alignment in SAY command

... leave samples of others unchanged. Calm down Enrico. When you are the OWNER of the forum, you can tell me what I can or cannot do. I made a model honoring you, I don't know why you were so sensitive, and I didn't even use offensive colors. Tranquilo Enrique. Cuando seas PROPIETARIO del foro ...
by karinha
Fri Mar 01, 2024 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 841

datasets generator

Simple code to use an AI model to build a dataset: generate.py import jsonimport torchfrom transformers import AutoModelForCausalLM, AutoTokenizer# Load the pre-trained modelmodel_name = "mlabonne/phixtral-4x2_8"tokenizer = ...
by Antonio Linares
Thu Feb 08, 2024 11:01 am
 
Forum: Artificial Intelligence examples
Topic: datasets generator
Replies: 0
Views: 4452

tinyAstrology another AI training model example

... chatgpt to do it again without including previous responses Once we have the dataset then we train tinyLlama and we get our own specialized IA model :-)
by Antonio Linares
Fri Feb 02, 2024 10:57 am
 
Forum: Artificial Intelligence examples
Topic: tinyAstrology another AI training model example
Replies: 0
Views: 146

Re: more GGUF Model

Dear Jimmy, You may be able to use any GGUF file (Artificial Intelligence open source model) using llama64.dll with Harbour and FWH. Please follow these steps to build llama64.dll as it takes full advantage of your computer capabilities: https://forums.fivetechsupport.com/viewtopic.php?p=266316&sid=79f17f8ebda5b77d799c73fb2a39838c#p266316 ...
by Antonio Linares
Mon Jan 29, 2024 6:14 am
 
Forum: Artificial Intelligence
Topic: more GGUF Model
Replies: 1
Views: 171

more GGUF Model

hi,

under https://gpt4all.io/index.html i found differnet *.GGUF Model
not sure if we can use it with Fivewin
by Jimmy
Sun Jan 28, 2024 9:24 pm
 
Forum: Artificial Intelligence
Topic: more GGUF Model
Replies: 1
Views: 171

Training TinyLlama to build a medical AI model

Used code: https://github.com/FiveTechSoft/tinyMedical Trained model: https://huggingface.co/fivetech/tinyMedical-GGUF/tree/main used engine to run the resulting GGUF file: https://github.com/ggerganov/llama.cpp You can also use ...
by Antonio Linares
Thu Jan 25, 2024 6:07 am
 
Forum: Artificial Intelligence examples
Topic: Training TinyLlama to build a medical AI model
Replies: 0
Views: 229

Re: Steps to integrate AI

hi, the "Problem" is to train (fine tune) a base model for own Data as it need much PC-Power Question : is it possible to "rent" PC-Power to train own Model :?: Dear Jimmy, You can use Google Colab with T4. You have a certain amount ...
by Antonio Linares
Sat Jan 20, 2024 4:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Steps to integrate AI
Replies: 4
Views: 639

Re: Steps to integrate AI

hi,

the "Problem" is to train (fine tune) a base model for own Data as it need much PC-Power

Question : is it possible to "rent" PC-Power to train own Model :?:
by Jimmy
Sat Jan 20, 2024 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Steps to integrate AI
Replies: 4
Views: 639

Steps to integrate AI

Dear Leandro, The first step is to create a dataset with questions and answers to train (fine tune) a base model such as Microsoft phi-2, TinyLlama, etc. Once trained, a GGUF file is generated, which can be used with FWH using the llama64.dll. This is the free and private way. ...
by Antonio Linares
Sat Jan 20, 2024 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Steps to integrate AI
Replies: 4
Views: 639

Re: Fine tune Phi2 from Microsoft with your own data

... https://medium.com/@yernenip/optimizing-phi-2-a-deep-dive-into-fine-tuning-small-language-models-9d545ac90a99 https://medium.aiplanet.com/fine-tune-small-model-micphi-2-to-convert-natural-language-to-sql-32fc4f6ed40c
by Antonio Linares
Thu Jan 18, 2024 6:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fine tune Phi2 from Microsoft with your own data
Replies: 11
Views: 1252

Re: Fine tune Phi2 from Microsoft with your own data

Locally using a fine tuned model with quantization: !pip install accelerate==0.25.0!pip install bitsandbytes==0.41.1!pip install datasets==2.14.6!pip install peft==0.6.2!pip install transformers==4.36.2!pip install torch==2.1.0!pip install ...
by Antonio Linares
Wed Jan 17, 2024 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fine tune Phi2 from Microsoft with your own data
Replies: 11
Views: 1252
Next

Return to advanced search