topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Array y NIL | Amigo,
Tenes razon con respecto al Next de columna.
Asi como pones el ejemplo si funciona, pero fijate que es diferente al mio, ya que uso un vector redimencionado, de ultima si me haces el favor, copia este codigo ( ahora le pongo el next que faltaba) y probalo.
Gracias.
[code:2a7c5tdh]function main()
... |
Array y NIL | Probado !!!
Asi como lo enviaste, ya salen todos los elementos en NIL !!!!
Acerca de lo otro, es igual, puedes cambiar el numero de elementos de cada nivel, segun lo necesites, el detalle seria, si lo vas a definir desde el inicio o sobre la marcha.
Te comento, por que yo uso en muchos browses, la informacion desde... |
Array y NIL | ok, gracias pibe.
No me da a mi, voy a ver que pasa. |
ArrayIncrFilter | How can I cancel the filter using ArrayIncrFilter and restore the standard view of xBrowse? |
ArrayIncrFilter | Did you try this?
[code=fw:1awglq6g]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">ArrayIncrFilter</span><span style="color: #000000;">(</span><span style="color: #ff0000;">''</span><span style="color: #000000;">)</span></div>[/code:1awglq6g]
then try this, [b:1awg... |
ArrayIncrFilter | I tried it, but it does not work.
Do you have other idea? |
ArrayIncrFilter | oBrw:Seek( "" ) clears the filter and displays the full array |
ArrayIncrFilter | Rao,
I tried it but does not work too. |
ArrayIncrFilter | You wrote little information.
What information are you filtering on the browse?
How did you define the browse lines? addRow or SetArray ...
if I'm not mistaken, you can not restore the rows because they have been removed (you can easily check this by debugging your system and browse instance).
Then you have to reassig... |
ArrayIncrFilter | [quote:10jdi9zz]if I'm not mistaken, you can not restore the rows because they have been removed (you can easily check this by debugging your system and browse instance).
Then you have to reassign with oBrw:setArray(...)
[/quote:10jdi9zz]
XBrowse's incremental filter does not remove any lines. They are all there. User ... |
ArrayIncrFilter | [quote="ORibeiro":3n10ec9m]Rao,
I tried it but does not work too.[/quote:3n10ec9m]
This has to work, if I understood your requirement correctly.
Here is a sample:
[code=fw:3n10ec9m]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Incfilter<span style="color: #000... |
ArrayIncrFilter | Rao,
What is wrong in this code?
[code=fw:1rxybe16]<div class="fw" id="{CB}" style="font-family: monospace;"><br />*********************************************************************************************<br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> Sample2<span ... |
ArrayIncrFilter | [code=fw:1cf8l9y3]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(</span><span style="color: #000000;">)</sp... |
ArrayIncrFilter | All this long code is not necessary.
I made a small modification to my earlier sample.
That is enough to handle all types |
ArrayIncrFilter | Thanks a lot Rao.
It´s completely fine with numeric and date field too.
[code=fw:1odxq26j]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />*********************************************************************************************<br /><span style="color: #00C800;">static</span> <span style="co... |
ArrayIncrFilter | Yes Rao, your code looks great. Thank you.
I noticed that with a large array, the get fields become messy when the User scrolls quickly. So, Is it possible to refresh the get line when you place the cursor or click on some get field?
Thanks. |
ArrayIncrFilter | Amigo tengo este codigo funciona bien en la busqueda, pero quiero mostrar lo q escribo y no me funciona
REDEFINE FOLDEREX oFld ID 99 OF oDlg ;
PROMPT &vTitulo; //aPrompt;
BITMAPS &vBitmap;
TAB HEIGHT 35 ;
DIALOGS &vDialogo; //aDialogo ;
ON CHANGE (oSuma... |
ArrayIncrFilter | [quote="jbrita":3jyr1umw]
*** ESTO 3 NO ME FUNCIONAN PARA MOSTRAR LO Q BUSCO SE CAE
* @ 20,20 SAY oBrw[I]:oSeek VAR oBrw[I]:cSeek SIZE 150,20 PIXEL OF oDlg COLOR CLR_HRED, CLR_YELLOW UPDATE
* REDEFINE SAY oBrw[oFld:nOption]:oSeek PROMPT oBrw[oFld:nOption]:cSeek ID 103 OF oDlg:aDialogs[ I ] PICTURE "@S6... |
ArrayIncrFilter | Tampoco asi resulta:
@ 11,150 SAY oBrw[I]:oSeek VAR oBrw[I]:cSeek SIZE 200,10 PIXEL OF oFld:aDialogs[ I ] COLOR CLR_BLACK,CLR_YELLOW PICTURE '@!'
saludos |
Arrays | Hola Amigos
Es esto un Bug?, o qué hago mal
Al 1er array “TabP” debo incluir algunos elementos, cada nueva linea esta basada en otro array “xTab”, con ciertas modificaciones.
Esta es la rutina que al parecer es muy simple.
#include "FiveWin.ch"
function main()
local TabP:={{"Z","Y","X","W"}}
local xTab:={"A","B","C","... |
Arrays | Hola Amigos:
A nadie le sucede esto? o hay algo que hago mal?
gracias.
Jorge Vargas |
Arrays | debes usar la funcion aClone
AADD(TabP,aclone(xTab) ) |
Arrays | Hola Patricio
Muchas gracias por tu respuesta y la solucion.
medio raro, pero funciona
saludos
Jorge <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
Arrays and tSBrowse | OK ... I found a work around, but still ....
Using tSBrowse with an array. Initially it has x number of elements ( for example 10) and browsing them is no problem. Now, I wish to add another element, so I use AADD( ) and increase the array by one element. I now need to reposition the highlight to the new element so... |
Arrays and tSBrowse | Tim,
may be this could work.
[code:8puvit2i]oBrw:bGoBottom := { || oBrw:nAt := len( oBrw:aArray ) }[/code:8puvit2i]
Regards,
Detlef |
Arrays and tSBrowse | [quote="TimStone":2j1bh7t2]using tSBrowse with an array. Initially it has x number of elements ( for example 10) and browsing them is no problem. Now, I wish to add another element, so I use AADD( ) and increase the array by one element. I now need to reposition the highlight to the new element so I do a oLbx:gobtto... |
Arrays en FastReport (SOLUCIONADO) | Amigos:
Alguien que me ayude a entender cómo ligar el siguiente array a FastReport, tanto para
diseñar el reporte como para la impresión ?
aRegs[nRegs,nCols]
Saludos |
Arrays en FastReport (SOLUCIONADO) | Hola Armando...
[code=fw:q4xerhl6]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oFr:<span style="color: #000000;">SetUserDataSet</span><span style="color: #000000;">(</span> <span style="color: #ff0000;">"aMiArray"</span>,<span style="color: #ff0000;">"COLUMNA1;COLUMNA2;COLUMNA3;COLUMNA4"</span>,... |
Arrays en FastReport (SOLUCIONADO) | Esteban:
Gracias por tu apoyo pero fijate que no doy pie con bola <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
mira tengo un array de la siguiente forma:
aRegs[nReg,nCol]
Imaginemos que tiene 5 registros (nReg = 5) y que cada registro
tiene 4 campos ... |
Arrays en FastReport (SOLUCIONADO) | Armando...
Es así como te lo escribí.
En lo que escribí anteriormente lo que para tí es: "aRegs" para mí es: "aMiArray"
Prueba y dime que resulta.
Saludos, Esteban. |
Arrays en FastReport (SOLUCIONADO) | Esteban:
Tienes razón, ya lo logré, es muy sencillo !.
Saludos y muchas gracias |
Arrays en FastReport (SOLUCIONADO) | Esteban:
He logrado incluir el ARRAY en FastReport y he usado sus elementos para
constuir el reporte, mejor dicho la etiqueta, son etiquetas !.
Perooo, no logro que me imprima más de una, lo que necesito es que me
imprima una etiqueta por cada elemento (nRegs) del array.
aRegs[nRegs,nCols]
Saludos |
Arrays en FastReport (SOLUCIONADO) | Hola Armando,
En las bandas (Master,Detail, etc.) hay una propiedad: "RowCount" donde puedes ponerle en número que equivale a las veces que quieres visualizar/imprimir dicha la banda, en tu caso la longitud del array. Es decir no asocias la banda a un origen de datos recordset ó DBF.
No se si te puede servir...
Un ... |
Arrays en FastReport (SOLUCIONADO) | Ernesto:
Gracias por tu respuesta.
Mira, tengo entendido que en el caso de una DBF o RecordSet la banda se imprime tantas
veces como registros haya en el DBF o RecordSet.
Tambien tengo entendido que en el caso de los Array sucede lo mismo, me parece que no
puedo utilizar el RowCount porque en cada impresión la longi... |
Arrays en FastReport (SOLUCIONADO) | Hola Armando,
Si la longitud del array varía, puedes ponerlo asi:
nLenArray:=len(aArray)
oFr:SetProperty("MasterData1", "RowCount",nLenArray)
Un saludo,
Ernesto. |
Arrays en FastReport (SOLUCIONADO) | Ernesto:
Fijate que sí pero no <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Con tu solución se imprime el primer elemento del array pero tantas veces
como longitud tenga el array.
Deduzco que algo me falta en el diseño, pero no se qué <!-- s:oops: --><img src="... |
Arrays en FastReport (SOLUCIONADO) | Amigos:
Muchas por sus respuestas y sugerencias, este problema ha quedado solucionado.
Saludos |
Arrays en FastReport (SOLUCIONADO) | Alguien sabe de esto necesito hacer una matriz para almacenar un total.
Usamos el "TStringList" de clase como una matriz para el almacenamiento de sumas ". Vamos a almacenar datos numéricos
valores como cadenas. Al mismo tiempo, la primera línea en la lista corresponde al valor de la
primer grupo, etc La variable de... |
Arreglo importante! | Por favor añadir este código al PRG principal de vuestra aplicación:
[code:9kb04jc3]
#pragma BEGINDUMP
#include <hbapi.h>
#include <windows.h>
LPSTR WideToAnsi( LPWSTR );
HB_FUNC( GETWINDOWTEXT )
{
HWND hWnd = ( HWND ) hb_parnl( 1 );
int iLen = GetWindowTextLength&#... |
Arreglo importante! | Antonio,
Q reporta este arreglo ? (tema de perdida de memoria ?)
Gracias. |
Arreglo importante! | Carles,
Se estaba corrompiendo la memoria! <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> y Harbour no podía liberarla luego. Ahora esta correcto.
De todas formas vamos a publicar en breve un nuevo build en el que se ha hecho una revisión a fondo del consumo... |
Arreglo importante! | Antonio
tengo Fwppc con las librerias de estas fechas
Fivece.lib 01/09/2006
fivecec.lib 30/08/2006
el parche que publicas me aplicaria a la version que yo tengo ?
Saludos
Att |
Arreglo importante! | Wilson,
Sí, tienes que incluirlo. |
Arreglo importante! | Me dio problemas al compilar.. sera q estoy haciendo algo mal? <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> (recien termine de instalar la actualizacion de fwppc)
[quote:2ubuni0e]
Compiling...
Harbour Compiler Alpha build 45.0 (Flex)
Copyright 1999-2005, ... |
Arreglo importante! | Luis,
Hay que extraer este módulo previamente:
lib /remove:objcec\GETTEXT.obj fivecec.lib |
Arreglo importante! | ahora me da otros errores <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? -->
[quote:2d5fo927]FiveCE.lib(MGET.obj) : error LNK2001: unresolved external symbol "void __cdecl HB_FUN_MGETREPLACE(void)" (?HB_FUN_MGETREPLACE@@YAXXZ)
FiveCE.lib(MGET.obj) : error LNK2001: unreso... |
Arreglo importante! | Luis,
Vamos a publicar un nuevo build de FWPPC en sólo unos dias. En cuanto salga lo tendrás y así no tienes que modificar nada. |
Arreglo importante! | vale, vale.. yo espero; de momento lo he solucionado agregando las funciones q faltan en blanco.. muchas gracias por su atencion Don Antonio. |
Arreglo importante! | antonio yo me quede sin actualizaciones en septiembre ( al caducar la version 1 ) ... si es un fix importante tendria que aplicarlo pero me salen los errores arriba indicados y no tengo manera de acceder a las ultimas actualizaciones ... pondras un fix completo para la version 1 o debemos quedarnos com estamos ? |
Arreglo importante! | Jose Luis,
No es sólo eso. El nuevo build de FWPPC que hemos publicado ya, usa el Harbour más reciente (46.2) y ha sido rediseñado interiormente para optimizar el uso de la memoria.
Además se han cambiado clases importantes, para hacerlo funcionar mejor. Y del Harbour anterior a este nuevo existen muchas diferencias.... |
Arreglo importante! | entonces ¿ lo dejo estar ? ... ( de momento no hemos tenido problemas, y actualizarse a la nueva version no se plantea hasta tener mas parque de aplicaciones instaladas .. )
Gracias por tu atencion |
Arreglo importante! | Jose Luis,
Sí, puedes dejarlo como está. Solo en aplicaciones que funcionan muchas horas seguidas es donde puede notarse el problema de la memoria, que ya está solucionado. |
Arrotondare un prezzo | E' possibile arrotondare un prezzo ?
per esempio io ho calcolato un prezzo di 8.57 come posso portarlo a 9.00
cioè non lo saprei io se ha decimali dovrebbe arrotondare automaticamente
tanto tempo fa qualcuno aveva fatto una funzione ma in fw+ clipper si poteva settare quanto arrotondare
ma adesso non ho trovato quel... |
Arrotondare un prezzo | Ciao Silvio,
devi usare la funzione ROUND(<nNumber>, <nDecimals>)
nDecimals è il numero di decimali a cui vuoi arrotondare
Ad esempio se vuoi arrotondare 8.57 a 9.00
[code=fw:giuvrmsa]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">ROUND</span><span style="color: #000000;">&... |
Arrotondare un prezzo | cercavo una funzione come roundup |
Arrotondare un prezzo | forse [url=https://harbour.github.io/doc/clct3.html#ceiling:2bk0fafw]Ceiling[/url:2bk0fafw]?
che poi è lo stesso di fare round(x+0.5,0) |
Arrow keys don't work in ListBox in FW24 and XP | Five Win,
We've hit a wall with arrow keys in some part of our POS. The Up and Down arrow keys is not working in a the List Box but in other part of the program like in popup menus it works fine.
Environment: XP, Clipper5.2, comix and FW24
Is there any FW update in the List box that may correct the this behavior?
... |
Arrow keys don't work in ListBox in FW24 and XP | Check that the listbox has the focus:
oListBox:SetFocus() |
Arrow keys don't work in ListBox in FW24 and XP | Antonio,
Thanks for the quick reply.
>Check that the listbox has the focus:
>oListBox:SetFocus()
The list box has focused. But somehow fivewin cannot process the up/down arrow keys.
Here's fragment of the code:
@ 0,0 listbox aObject[AO_JOURNALLIST] fields headers 'Journal xx' alias 'ARRAY' pixel
#define LINES_... |
Arrow keys don't work in ListBox in FW24 and XP | If you are using a DBF index, please rebuild it, in case it may be corrupted. |
Arrow keys don't work in ListBox in FW24 and XP | Test it this way:
aObject[AO_JOURNALLIST]:bKeyDown:={| nKey | MsgInfo( nKey ) } |
Arrow keys don't work in ListBox in FW24 and XP | Antonio,
I am using array not DBF file . What is the value o:nLastKey? It is the same as getAsynckey(i)? I am getting 255 on up, down, left, right, and some other keys on POS keyboard. Is there any fivewin function that can properly identify these POS keys?
TIA,
Jose |
Arrow keys don't work in ListBox in FW24 and XP | Jose,
Check the values that you get here:
aObject[AO_JOURNALLIST]:bKeyDown:={| nKey | MsgInfo( nKey ) } |
Arrow keys don't work in ListBox in FW24 and XP | >Check the values that you get here:
>aObject[AO_JOURNALLIST]:bKeyDown:={| nKey | MsgInfo( nKey ) }
That helps a lot!
I wonder why it is not mentioned in the documentation that it can receive two parameters (nKey, nFlags)? Or I just missed it?
nFlag value was the essential data in this particular case.
MUCHAS G... |
Arrow keys don't work in ListBox in FW24 and XP | Jose,
De la documentación de classes de FWH:
<bKeyDown> Whenever the window has focus and a NON-SYSTEM key is pressed (ie the <Alt> key was not pressed in conjunction with this key), this codeblock will be called. When <bKeyDown> is called it receives two parameters: <nKey> The virtual key code of the key. <nFlags> S... |
Articulo de Notacion Hungara | Buenas noches,
recuerdo que había un articulo sobre notación húngara enfocada en xBase, no estoy seguro pero creo que era del propio Antonio Linares, será que alguien puede facilitarme esta información.
Gracias
saludos
Marcelo |
Articulo de Notacion Hungara | Echale un oj a este link:
[url:26l5lkav]http://es.wikipedia.org/wiki/Notaci%C3%B3n_h%C3%BAngara[/url:26l5lkav]
Salu2 |
Articulo de Notacion Hungara | Willi,
gracias, ya vi muchos enlaces, pero no el que estoy buscando, encontre el articulo de Antonio en un sitio que no lo tengo ahora a mano, pero el zip esta truncado, ojala, alguien lo haya guardado por alli.
Ahora esta notacion tambien la puedes encontrar en el sitio de MS [url:1c7vy6ev]http://msdn.micro... |
Articulo de Notacion Hungara | Marcelo,
A que direccion de email te la envio?
Saludos
George |
Articulo de Notacion Hungara | George,
gracias, envíamela a marcelo.via < arroba > gmail <punto> com
muchas gracias
Marcelo |
Articulo de Notacion Hungara | Saludos George
Es muy largo el archive para ponerlo aca...? Si puedes enviamelo para colarlo en un link fijo gracias |
Articulo de Notacion Hungara | Que tal Daniel,
Ya te envie el documento, en formato PDF, a tu email.
Saludos,
George |
Articulo de Notacion Hungara | Por favor enviar tambien a <!-- e --><a href="mailto:compuin@gmail.com">compuin@gmail.com</a><!-- e --> |
Articulo de Notacion Hungara | [url:fs0f4bwg]http://books.google.com.mx/books?id=vrtI4i8kA4EC&pg=PA38&lpg=PA38&dq=Notacion+Hungara+Clipper&source=bl&ots=THyrfAEXCX&sig=2uPBuR-Wn-DF5f2WELiwABDyXXQ&hl=es&ei=1ah3TeXKNOO90QHUhPjeBg&sa=X&oi=book_result&ct=result&resnum=1&ved=0CBEQ6AEwAA#v=onepage&q&f=false[/url:fs0f4bwg][quote="Compuin":f... |
Articulo de Notacion Hungara | Daniel;
Esta cargado este documento?, donde?
muchas gracias |
Articulo de Notacion Hungara | Mario
Gracias por recordarme ya se me habia olvidado
[url:34nezi7b]http://www.sitasoft.net/fivewin/files/NotacionHungara_ALinares.pdf[/url:34nezi7b] |
Articulo de Notacion Hungara | <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
gracias a vos por ponerlo a disposición de todos |
Articulo interesante sobre Servicios Web... | Aquí:[url:4vd7e6xe]http://jhernandz.es/noticia/servicio-web-php[/url:4vd7e6xe] |
Articulo interesante sobre Servicios Web... | Gracias Manu,
muy buen artículo, parece que andamos sintonizando en algunas cosas.
Un saludo |
Artificial Intelligence - Class TNeuralNetwork | Work in progress:
[url:1rb32z3l]https://gist.github.com/espiritusanti/b7485c68a06ef2c8c76d8c62c8c39d8f[/url:1rb32z3l]
[img:1rb32z3l]https://images.squarespace-cdn.com/content/v1/5ccb715016b640627a1c2782/1586907440135-6INS2V3VS31ICY3TNUIW/ke17ZwdGBToddI8pDm48kM7Hgu4An2PrL1s4UDY39G9Zw-zPPgdn4jU... |
Artificial Intelligence - Class TNeuralNetwork | Testing the Neural Network once trained:
[code=fw:13bae19t]<div class="fw" id="{CB}" style="font-family: monospace;">#ifdef __PLATFORM__WINDOWS <br /> <span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"c:<span style="color: #000000;">\h</span>arbour<span style="color: #000000;">\i</span>ncl... |
Artificial Intelligence - Class TNeuralNetwork | Working version (just missing the multi hidden layer support)
[code=fw:u7k4bvot]<div class="fw" id="{CB}" style="font-family: monospace;">#ifdef __PLATFORM__WINDOWS <br /> <span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"c:<span style="color: #000000;">\h</span>arbour<span style... |
Artificial Intelligence - Class TNeuralNetwork | function Math_E() defined here:
<!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.php?p=203329&sid=822e8de1395f0174565c65850cc06770#p203329">viewtopic.php?p=203329&sid=822e8de1395f0174565c65850cc06770#p203329</a><!-- l --> |
Artificial Intelligence Pioneer Says We Need To Start Over | To All ... found this on SlashDot.org today ...
<!-- m --><a class="postlink" href="https://tech.slashdot.org/story/17/09/15/205202/artificial-intelligence-pioneer-says-we-need-to-start-over">https://tech.slashdot.org/story/17/09/1 ... start-over</a><!-- m -->
[quote:2t24ef4j]
Artificial Intelligence Pioneer Says W... |
Artificial Intelligence Pioneer Says We Need To Start Over | See this and you will get the whole idea <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[url:2sn1cpme]https://youtu.be/B8J4uefCQMc[/url:2sn1cpme] |
Artificial Intelligence: GPT with Harbour and FWH | Past July 2020, the company OpenAI released GPT3 (175 billions parameters) into private beta which has been a tremendous advance on AI natural language processing. GPT3 is the evolution of previous products and research like Microsoft Turing (17 billions parameters), NVidia Megatron (8 billions parameters), GPT2 (1.5 b... |
Artificial Intelligence: GPT with Harbour and FWH | Though OpenAI GPT3 is in closed private beta, there is an easy to way to start using it! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Go to [url:3d27peku]https://play.aidungeon.io/[/url:3d27peku] select option 6 and use these chat models with the historical c... |
Artificial Intelligence: GPT with Harbour and FWH | [url:4rcu1r46]https://github.com/elyase/awesome-gpt3[/url:4rcu1r46]
Request access to the beta here:
[url:4rcu1r46]https://onboard.openai.com/[/url:4rcu1r46] |
Artificial Intelligence: GPT with Harbour and FWH | [url:2gdzvj9j]https://app.inferkit.com/[/url:2gdzvj9j] |
Artificial Intelligence: GPT with Harbour and FWH | i tried also
[quote:wqnqwtot]You are Antonio Linares, a person trying to stay sane during a global quarantine. You have a ton of free time and a rubik's cube that you will never finish. You are bored out of your mind and have run out of things to do. But then you notice in the corner of your room something strange. T... |
Artificial Intelligence: GPT with Harbour and FWH | great! ;-D |
Artificial Intelligence: GPT with Harbour and FWH | Another site using GPT2
[url:2tm4pcf3]https://transformer.huggingface.co/[/url:2tm4pcf3] |
Artificial Intelligence: GPT with Harbour and FWH | Leyendo facebook terminé aca. no lo sabía.
bien ahi! |
Artificial intelligence - Class TPerceptron | This is a simple example to start learning the very basics of the Artificial Intelligence
In this example we create a TPerceptron object and we make it learn the behavior of the function nAnd(), then we check the results and they seem to be right.
Then we create a new TPerceptron object and we make it learn the behavi... |
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 some parameters (the inputs) and returning a result to know if ... |
Artificial intelligence - Class TPerceptron | [url:1izxle3h]https://github.com/RichardKnop/ansi-c-perceptron/blob/master/perceptron.c[/url:1izxle3h]
[url:1izxle3h]https://github.com/nsadawi/perceptron/blob/master/Perceptron.java[/url:1izxle3h] |
Artificial intelligence - Class TPerceptron | [img:16fgr2tq]https://bitbucket.org/fivetech/screenshots/downloads/traditional_vs_MachineLearning.JPG[/img:16fgr2tq]
Pedro Domingos: The Master Algorithm
[url:16fgr2tq]https://youtu.be/95XgpJAX6YE[/url:16fgr2tq]
[img:16fgr2tq]https://bitbucket.org/fivetech/screenshots/downloads/Where_does_... |
Artificial intelligence - Class TPerceptron | James,
That was a nice test of the practical use of my sample-collector
I included the sample from Antonio 1 : 1 to a free section.
I didn't change anything. NO errors ( just 5 minutes time to test it ) .
The xBrowse-results :
[img:3iyu5v4m]http://www.pflegeplus.com/IMAGES/Samples9.jpg[/img:3iyu5v4m]... |
Artificial intelligence - Class TPerceptron | Antonio,
I just tried compiling your TPerceptron example code and I am getting 66 errors. The first one is:
Perceptron.prg(40) Error E0016 Syntax error: ' '
At this line:
local oPerceptron := TPerceptron():New( 2 )
There are a lot of these same errors (on different lines).
I can't see anything wrong with the lin... |
Artificial intelligence - Class TPerceptron | Antonio,
There are only two other types of errors, "ambiguous reference..." and those like this:
Perceptron.prg(101) Error E0019 #error: 'Method "Learn( aInputs, nExpectedOutput )" not declared in class: TPerceptron'
None of the error messages are valid so I can't imagine what is triggering them.
James |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.