Search found 19 matches: approximate

Return to advanced search

Google DeepMind Gato is improving a lot...

... have said any of this, especially not that AI could someday be real. Now, I’m not so sure, and the community sentiment is similar: they now approximate that we could have machine-based systems with the same general-purpose reasoning and problem-solving tasks of humans by 2030. The projected ...
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: 311

How AI should be implemented and regulated

... language processing, knowledge representation, automated reasoning, and learning. D) A set of techniques, including machine learning, that seek to approximate some cognitive task. E) Systems that act rationally, such as intelligent software agents and embodied robots that achieve goals via perception, ...
by Rick Lipkin
Wed Dec 13, 2017 1:59 pm
 
Forum: latest AI news
Topic: How AI should be implemented and regulated
Replies: 0
Views: 611

Re: XBROWSE exclude or control ARROW keys in edit mode

Hi Mr.Rao (a) what would the approximate size of products dbf ( max possible records) Usual 5000-10000 In bigger companies i hope not more than 50000 (b) after entering product id, should the user move to quantity column and enter quantity? ...
by avista
Wed Nov 26, 2014 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE exclude or control ARROW keys in edit mode
Replies: 13
Views: 5329

Re: XBROWSE exclude or control ARROW keys in edit mode

I shall try to make a sample program for this.
Meanwhile can you give me an idea as to
(a) what would the approximate size of products dbf ( max possible records)
(b) after entering product id, should the user move to quantity column and enter quantity?
by nageswaragunupudi
Wed Nov 26, 2014 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE exclude or control ARROW keys in edit mode
Replies: 13
Views: 5329

Re: help with xbrowse

Wanderson Don't know if you can make the Tab bar transparent, but you can go into your resource editor and shorten the length of the bar to the approximate length of your of your tabs. Curious myself if anyone has an answer.... Rick Lipkin Thanks Rick, like your tip but I use the same dialog/xbrowse ...
by Wanderson
Tue Sep 17, 2013 12:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: help with xbrowse
Replies: 2
Views: 672

Re: help with xbrowse

Wanderson

Don't know if you can make the Tab bar transparent, but you can go into your resource editor and shorten the length of the bar to the approximate length of your of your tabs.

Curious myself if anyone has an answer....

Rick Lipkin
by Rick Lipkin
Mon Sep 16, 2013 8:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help with xbrowse
Replies: 2
Views: 672

Re: Como enumerar un xBrowse

Por cierto.... ¿alguien sabe por qué esto no funciona con ADS y si hay alguna manera de hacerlo andar? For ADS, XBrowse uses an approximate logic "ADSGetRelKeyPos()/ADSKeyCount()" for tables larger than 200 rows. This approximate logic is good enough for Vertical Scrollbar but ...
by nageswaragunupudi
Wed May 12, 2010 1:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como enumerar un xBrowse
Replies: 13
Views: 1752

Re: Xbrowse with Ads

i have experienced this problem too. XBrowse uses Round( AdsGerRelKeyPos() * AdsGetKeyCount(,,1) , 0 ) to know the current AdsKeyNo. This gives an approximate result and at times goes wrong by one row. After defining xbrowse try overriding the default codeblock like this : oBrw:bKeyNo := { || (youralias)->( ...
by nageswaragunupudi
Tue May 05, 2009 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse with Ads
Replies: 1
Views: 638

Re: How to compare two values

... either 5.4999999 or 5.50000001 will round differently from 5.5000000 ! Also, although I haven't tested it, I would be pretty sure that testing approximate equality by comparing rounded values would require substantially more CPU clocks.
by xProgrammer
Sat Jan 17, 2009 11:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to compare two values
Replies: 13
Views: 2589

Re: How to compare two values

I compare this way for approximate equality:
Code: Select all  Expand view
#define TOLERANCE 0.0001   // your value


if ABS( n1 - n2 ) < TOLERANCE
   // approximately equal
else
  // not even approx equal
endif

by nageswaragunupudi
Thu Jan 15, 2009 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to compare two values
Replies: 13
Views: 2589

Re: ISO 8601 Week Numbers

... m, and d. Getting rid of the division. The calculation of SWN3 still contains an division by 7, which is not a standard operation on the 6805. We approximate this division with a formula taken from [BLINN95], which states that for division of an integer i by a number n = 2^k-1, we can use the ...
by ukoenig
Tue Dec 30, 2008 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ISO 8601 Week Numbers
Replies: 20
Views: 6449

Advice on image capture needed.

... output which is now available for your own purpose of inserting a cameo onto the Weighbridge data. This output is terminated with a BNC plug on an approximate three metre lead in preparation to connect to a composite video card that would be required on the PC for this purpose. Has anyone else ...
by PeterHarmes
Fri Nov 14, 2008 12:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advice on image capture needed.
Replies: 2
Views: 710

DBU-Util

... such as the output from the execution of scripts. DBRegEx ----------- DBRegEx now give the user of dBA the power of Regular Expression,Soundex and Approximate searching. This is a very powerful way of searching for data in large files. Complex search expressions can be built and saved for repeated ...
by ukoenig
Wed Sep 17, 2008 6:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WinDBU - Interesting script !!!
Replies: 10
Views: 8825

Clipper Errors

... point approximation problem. If you add SET DECIMALS TO 15 and SET FIXED ON to your test program you will see that the numbers involved are approximated. They are not what they look. :-) Try to make with dclip utility what you said (fixed on and so on). If my field dec is 2 and the i sum ...
by Antonio Linares
Wed Aug 27, 2008 7:44 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 65383

... too. But xbrowse does not use AdsKeyNo(). Instead it uses AdsGetRelKeyPos and AdsSetRelKeyPos functions which are faster versions though approximate. Even on large tables the performance is not bad. ( My experience is with tables contation more than 500,000 rows with complex serverside ...
by nageswaragunupudi
Sat Jan 12, 2008 8:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrowse - Refresh() - Some Issues
Replies: 5
Views: 1147
Next

Return to advanced search