Search found 34 matches: neural

Return to advanced search

Re: Understanding how autoGPT works...

This code works quite fine using Vicuna:

improve this code "int main()" to build an ERP


completa este codigo "int main()" para obtener un ERP


Write the python code for a neural network example
by Antonio Linares
Mon Apr 10, 2023 9:31 pm
 
Forum: latest AI news
Topic: Understanding how autoGPT works...
Replies: 6
Views: 538

Enlaces interesantes / Interesting links

... TEXTO A MOVIMIENTO (T2M) https://lnkd.in/dMw7_Bci https://tree.industries IMAGEN A TEXTO (I2T) https://neural.love https://gpt3demo.com AUDIO A TEXTO(A2T) https://descript.com https://assemblyai.com https://whisper.ai ...
by Baxajaun
Fri Dec 16, 2022 9:31 pm
 
Forum: latest AI news
Topic: Enlaces interesantes / Interesting links
Replies: 0
Views: 339

Re: New FTDN October/Octure (FWH 22.10)

... en una versión previa. Corregido el error. * Nueva: Clase TNeuralNetwork. Implementa redes neuronales en FWH. Por favor, revise el ejemplo samples\neural.prg para un ejemplo funcional entrenando operaciones XOR usando Inteligencia Artificial. * Nueva: Nuevas funciones dbRollBack() y dbRollBackAll() ...
by Antonio Linares
Mon Nov 07, 2022 9:38 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octure (FWH 22.10)
Replies: 2
Views: 871

New FTDN October/Octure (FWH 22.10)

... INCHES * XBROWSER oAdoRecordset was giving runtime error due to a bug in the previous version. Fixed now. * New: Class TNeuralNetwork implements neural networks on FWH. Please review samples\neural.prg for a working example traininig Xor operations using AI. * New: New functions dbRollBack() ...
by Antonio Linares
Wed Nov 02, 2022 11:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octure (FWH 22.10)
Replies: 2
Views: 871

The smallest neural network for Harbour

No need for classes. Really easy to understand code :-) #define INPUT_SIZE 2#define HIDDEN_SIZE 2#define OUTPUT_SIZE 1#define LEARNING_RATE 0.5function Main()   local aInput[ INPUT_SIZE ]   local aHidden[ HIDDEN_SIZE ]   local nOutput   local aWih[ INPUT_SIZE ][ H...
by Antonio Linares
Tue Sep 13, 2022 12:29 am
 
Forum: AI Introduction (Harbour code and samples)
Topic: The smallest neural network for Harbour
Replies: 1
Views: 676

Cómo hacer que el universo piense por nosotros ?

Gracias como siempre a Felix, por su instinto y olfato de encontrar lo mejor de lo mejor :-) https://www-quantamagazine-org.translate.goog/how-to-make-the-universe-think-for-us-20220531/?_x_tr_sl=auto&_x_tr_tl=es&_x_tr_hl=es&_x_tr_pto=wapp “Estamos reinventando no solo el har...
by Antonio Linares
Thu Jun 02, 2022 7:27 am
 
Forum: latest AI news
Topic: Cómo hacer que el universo piense por nosotros ?
Replies: 0
Views: 258

Google DeepMind Gato is improving a lot...

... Moreover, and impressively, Gato is not even close to the largest neural networks we have seen! With “only” 1.2 billion weights, it’s comparable to OpenAI’s GPT-2 language model, i.e. over 2 orders of magnitude smaller ...
by Antonio Linares
Tue May 31, 2022 6:32 am
 
Forum: latest AI news
Topic: Google DeepMind Gato is improving a lot...
Replies: 0
Views: 313

Re: Neural network

Good morning,
Thank you for the example. Would you be so kind as to give us some introductory explanations?
Best regards,
Otto
by Otto
Sun Aug 22, 2021 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Neural network
Replies: 1
Views: 490

Neural network

This is a very interesting sample created by Dan: // neural networkprocedure main  ogg:={{"dog",0},{"mouse",0},{"snake",0},{"sparrow",0}}  azi:={{"has ...
by MOISES
Sat Aug 21, 2021 10:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Neural network
Replies: 1
Views: 490

Re: matrices multiplication

Dear Silvio,

My interest in porting those 9 lines from Python to Harbour is in building a small and simple neural network to be used from Harbour and mainly for learning purposes :-)
by Antonio Linares
Tue Oct 13, 2020 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: matrices multiplication
Replies: 13
Views: 1063

Porting 9 lines of Python to Harbour

In this article, the author shows how to implement a Neural Network in 9 lines of Python: https://medium.com/technology-invention-and-more/how-to-build-a-simple-neural-network-in-9-lines-of-python-code-cc8f23647ca1 To easily test the Python ...
by Antonio Linares
Tue Oct 13, 2020 10:46 am
 
Forum: AI Introduction (Harbour code and samples)
Topic: Porting 9 lines of Python to Harbour
Replies: 1
Views: 948

Different neural networks

Image
by Antonio Linares
Tue Oct 13, 2020 9:00 am
 
Forum: latest AI news
Topic: Different neural networks
Replies: 0
Views: 252

Re: Artificial Intelligence - Class TNeuralNetwork

Testing the Neural Network once trained: #ifdef __PLATFORM__WINDOWS    #include "c:\harbour\include\hbclass.ch"#else   #include "/usr/include/harbour/hbclass.ch"#endif#define NUM_INPUTS               2#define ...
by Antonio Linares
Sat Oct 03, 2020 5:50 am
 
Forum: AI Introduction (Harbour code and samples)
Topic: Artificial Intelligence - Class TNeuralNetwork
Replies: 3
Views: 638
Next

Return to advanced search