Search found 58 matches: inputs

Return to advanced search

Re: Artificial Intelligence - Class TNeuralNetwork

... nilCLASS TNeuralNetwork   DATA   oInputLayer      DATA   aHiddenLayers INIT {}          DATA   oOutputLayer      METHOD New( nInputs, aHiddenLayersNeurons, nOutputs )   METHOD Learn( aInputs, aOutputs, lDebug )   METHOD Propagation( aInputs, aOutputs )  ...
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: 634

Re: trying with tdatabase

... FWH TDatabase class. As we keep enhancing all other classes, we keep enhancing TDatabase also. Some of the enhancements are based on user inputs and requests as well as our own experiences with our own commercial applications. However, it is not necessary to recode sections to eliminate ...
by nageswaragunupudi
Thu Jan 24, 2019 7:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: trying with tdatabase
Replies: 34
Views: 4858

Re: Infield Top Aligned Form Labels

Silvio.Falconi wrote:Iconography can indicate both valid and invalid inputs, making error states clear for colorblind users.


This is very important
by cnavarro
Sun Nov 04, 2018 6:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Infield Top Aligned Form Labels
Replies: 34
Views: 9732

Re: Infield Top Aligned Form Labels

... For example, a calendar icon may be tapped to reveal a date picker. 2. Valid or error icon Iconography can indicate both valid and invalid inputs, making error states clear for colorblind users. 3. Clear icon Clear icons let users clear an entire input field. They appear only when input ...
by Silvio.Falconi
Sun Nov 04, 2018 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Infield Top Aligned Form Labels
Replies: 34
Views: 9732

Re: ERROR in GET Control when use MDI Window

... flags "/w1 /es2" while compiling. Had you used these flags you would not have made this posting. But oGet3 should get enabled when oGet1 inputs gets value 5 for variable v1. This is NOT working. Unfortunately, this is due to a bug introduced in version 18.07. I request you to make this ...
by nageswaragunupudi
Sat Oct 13, 2018 11:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR in GET Control when use MDI Window
Replies: 10
Views: 2460

Re: ERROR in GET Control when use MDI Window

Dear Rao Sir ,

Thanks ...! Now error is gone , But oGet3 should get enabled when oGet1 inputs gets value 5 for variable v1. This is NOT working.

Thanks
Shridhar
by shri_fwh
Sat Oct 13, 2018 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR in GET Control when use MDI Window
Replies: 10
Views: 2460

Re: Test for Vertical Scroll hits EOF xBrowse ( rao )

... than creating 30 new rows .. What ultimately I wanted to do is be able to trap the down arrow key only at the Eof code-block and ignore any other inputs such as the vertical scroll bar. Inspired by your code I made two changes .. one to xBrowse.prg and the other to your code .. Please consider ...
by Rick Lipkin
Fri Feb 09, 2018 6:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test for Vertical Scroll hits EOF xBrowse ( rao )
Replies: 14
Views: 6173

Re: Test for Vertical Scroll hits EOF xBrowse ( rao )

... ..same for the mouse wheel and I end up with a mess. If there was only a way to trap the down arrow key .. I could ignore all the other random inputs.... interested to see your idea and I am not in any big hurry. I appreciate your help! Rick Lipkin
by Rick Lipkin
Sat Jan 20, 2018 4:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test for Vertical Scroll hits EOF xBrowse ( rao )
Replies: 14
Views: 6173

Re: TGraph 2 Y-axis for different's scales

Thank you Mr James

As always your inputs are very valuable.
by nageswaragunupudi
Wed Aug 09, 2017 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGraph 2 Y-axis for different's scales
Replies: 20
Views: 3567

Re: Building TensorFlow using Borland 7

c:\tensorflow>c:\bcc7\bin\bcc32 -c -Ithird_party/eigen3 tensorflow/c/c_api.cc Embarcadero C++ 7.00 for Win32 Copyright (c) 1993-2015 Embarcadero Technologies, Inc. tensorflow/c/c_api.cc: Warning W8105 tensorflow/c/c_api.h 946: Constant member 'TF_WhileParams::ninputs' in class without constructo...
by Antonio Linares
Fri Aug 04, 2017 9:40 am
 
Forum: TensorFlow.dll for Harbour and FWH
Topic: Building TensorFlow using Borland 7 32 bits
Replies: 5
Views: 1376

Re: Inteligencia artificial - Clase TPerceptron

... puede ser cero ó uno. El perceptrón imita (de una forma muy simple) el comportamiento de una neurona del cerebro. La neurona recibe varios "inputs", aplicándoles un "peso" (almacenado en la neurona) a cada input y la suma de todos esos inputs multiplicados por sus pesos, genera ...
by Antonio Linares
Fri May 19, 2017 6:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inteligencia artificial - Clase TPerceptron
Replies: 33
Views: 12910

Re: Artificial intelligence - Class TPerceptron

... comes from a bit, being zero or one. The perceptron mimics (in a very simple way) the behavior of a brain neuron. The neuron receives several inputs, each one has a weight (stored at the neuron) and the sum of all those inputs times their weights may fire or not an output. Backpropagation ...
by Antonio Linares
Fri May 19, 2017 10:35 am
 
Forum: AI Introduction (Harbour code and samples)
Topic: Artificial intelligence - Class TPerceptron
Replies: 29
Views: 8054

Re: Inteligencia artificial - Clase TPerceptron

Rafa, si, así es. Si comparamos un perceptrón y una función de Harbour, tenemos: El perceptrón recibe una serie de valores (inputs). Una función de Harbour recibe una serie de parámetros (inputs). El perceptrón mantiene una serie de pesos (weights) cuyos valores va modificando. Una función ...
by Antonio Linares
Tue May 02, 2017 3:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inteligencia artificial - Clase TPerceptron
Replies: 33
Views: 12910

Re: Artificial intelligence - Class TPerceptron

It is a very simple concept: A perceptron it is equivalent to a brain neuron. The perceptron receives "inputs" and each of these have more or less intensity ("weights"), and the perceptron acts as a Harbour function (method "CalculateOutputs") receiveing ...
by Antonio Linares
Wed Apr 19, 2017 10:14 am
 
Forum: AI Introduction (Harbour code and samples)
Topic: Artificial intelligence - Class TPerceptron
Replies: 29
Views: 8054

Re: Inteligencia artificial - Clase TPerceptron

La idea es muy simple: Un perceptrón es el equivalente a una neurona. El perceptrón recibe una serie de "inputs" y cada uno de estos tiene mayor ó menor intensidad ("pesos"), y el perceptron actúa como una función de Harbour ("CalculateOutputs") recibiendo ...
by Antonio Linares
Wed Apr 19, 2017 9:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inteligencia artificial - Clase TPerceptron
Replies: 33
Views: 12910
PreviousNext

Return to advanced search