Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c > #382702 > unrolled thread

simple AI in c

Started byfir <fir@grunge.pl>
First post2024-02-18 19:38 +0100
Last post2024-02-19 18:05 +0100
Articles 10 — 4 participants

Back to article view | Back to comp.lang.c


Contents

  simple AI in c fir <fir@grunge.pl> - 2024-02-18 19:38 +0100
    Re: simple AI in c Richard Harnden <richard.nospam@gmail.invalid> - 2024-02-18 18:53 +0000
      Re: simple AI in c fir <fir@grunge.pl> - 2024-02-18 20:45 +0100
      Re: simple AI in c Kaz Kylheku <433-929-6894@kylheku.com> - 2024-02-18 21:42 +0000
    Re: simple AI in c Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-02-18 14:29 -0800
      Re: simple AI in c fir <fir@grunge.pl> - 2024-02-18 23:43 +0100
        Re: simple AI in c Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-02-18 15:03 -0800
      Re: simple AI in c fir <fir@grunge.pl> - 2024-02-19 00:12 +0100
        Re: simple AI in c Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-02-18 15:57 -0800
          Re: simple AI in c fir <fir@grunge.pl> - 2024-02-19 18:05 +0100

#382702 — simple AI in c

Fromfir <fir@grunge.pl>
Date2024-02-18 19:38 +0100
Subjectsimple AI in c
Message-ID<uqtiql$343oa$1@i2pn2.org>
by AI i understand something like 'neural network ' i guess

this is a 'trendy topic' recantly and i dont know nearly nothing about
it - what i know comes form 25 year agoe when i studied phisics and 
somewhere possibly i leafed by the book on some article on this, or 
maybe it was some student seminar on this? i dont remember

i guess it is something like big decision tree with some coeeficients 
(weights) and probably the large amount of thsi weights you need to keep 
in an array

the question is how olng it would to code such simple piece of this and 
what it could be used for? whiat input for example and what task?

[toc] | [next] | [standalone]


#382703

FromRichard Harnden <richard.nospam@gmail.invalid>
Date2024-02-18 18:53 +0000
Message-ID<uqtjmi$1d365$1@dont-email.me>
In reply to#382702
On 18/02/2024 18:38, fir wrote:
> by AI i understand something like 'neural network ' i guess
      ^^

It's good to see that you do, in fact, have a shift key.


[toc] | [prev] | [next] | [standalone]


#382704

Fromfir <fir@grunge.pl>
Date2024-02-18 20:45 +0100
Message-ID<uqtmpb$349m9$1@i2pn2.org>
In reply to#382703
Richard Harnden wrote:
> On 18/02/2024 18:38, fir wrote:
>> by AI i understand something like 'neural network ' i guess
>       ^^
>
> It's good to see that you do, in fact, have a shift key.
>
>
>
if you say so,

in fact i probabbly wpuld prefer write all in uppercase - from
some kind of nostalgia for early computer world (which i maybe
not exactly remember but it fellt like i would remember some things,
dont know from where)

[toc] | [prev] | [next] | [standalone]


#382706

FromKaz Kylheku <433-929-6894@kylheku.com>
Date2024-02-18 21:42 +0000
Message-ID<20240218134121.450@kylheku.com>
In reply to#382703
On 2024-02-18, Richard Harnden <richard.nospam@gmail.invalid> wrote:
> On 18/02/2024 18:38, fir wrote:
>> by AI i understand something like 'neural network ' i guess
>       ^^
>
> It's good to see that you do, in fact, have a shift key.

Inconclusive; he might have no means for writing capitals other than
Caps Lock, and copy-paste.

-- 
TXR Programming Language: http://nongnu.org/txr
Cygnal: Cygwin Native Application Library: http://kylheku.com/cygnal
Mastodon: @Kazinator@mstdn.ca

[toc] | [prev] | [next] | [standalone]


#382713

FromKeith Thompson <Keith.S.Thompson+u@gmail.com>
Date2024-02-18 14:29 -0800
Message-ID<878r3h76ev.fsf@nosuchdomain.example.com>
In reply to#382702
fir <fir@grunge.pl> writes:
> by AI i understand something like 'neural network ' i guess
>
> this is a 'trendy topic' recantly and i dont know nearly nothing about
> it - what i know comes form 25 year agoe when i studied phisics and
> somewhere possibly i leafed by the book on some article on this, or 
> maybe it was some student seminar on this? i dont remember
>
> i guess it is something like big decision tree with some coeeficients
> (weights) and probably the large amount of thsi weights you need to
> keep in an array
>
> the question is how olng it would to code such simple piece of this
> and what it could be used for? whiat input for example and what task?

AI is not specific to C.  You clearly don't know enough about it for an
answer to your question to be useful.

There are plenty of resources (books, articles, etc.) for learning about
AI.  I suggest you consult them.  This is not the best place for that.

-- 
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Medtronic
void Void(void) { Void(); } /* The recursive call of the void */

[toc] | [prev] | [next] | [standalone]


#382718

Fromfir <fir@grunge.pl>
Date2024-02-18 23:43 +0100
Message-ID<uqu16e$34o8a$1@i2pn2.org>
In reply to#382713
Keith Thompson wrote:
> fir <fir@grunge.pl> writes:
>> by AI i understand something like 'neural network ' i guess
>>
>> this is a 'trendy topic' recantly and i dont know nearly nothing about
>> it - what i know comes form 25 year agoe when i studied phisics and
>> somewhere possibly i leafed by the book on some article on this, or
>> maybe it was some student seminar on this? i dont remember
>>
>> i guess it is something like big decision tree with some coeeficients
>> (weights) and probably the large amount of thsi weights you need to
>> keep in an array
>>
>> the question is how olng it would to code such simple piece of this
>> and what it could be used for? whiat input for example and what task?
>
> AI is not specific to C.  You clearly don't know enough about it for an
> answer to your question to be useful.
>
> There are plenty of resources (books, articles, etc.) for learning about
> AI.  I suggest you consult them.  This is not the best place for that.
>

thats what you think and i think not... one thing is most groups are 
probably dead and i dont know them but im 99% sure it would be most 
probably waste of time to ask there..second programming in c belongs
to c, unlike of what you think - you probabbkly think that c is what is
in c standard and imo c standard is such boring and useless thing
(not even usefull for compiler writers as im the one to incuidentaly)
that you could better move out from here than i stating questions on 
coding in c

quite possibly no one knows the answer but it is also not a big problem 
for me, this topic can be ignored then..and i more think it as an 
opportunity for few post of discussion than solid research for me - as 
for now im not even sure hiow much im interested in this (as im usually
interesyed in few things at once and what i go into more is depending
on ciricumstances - you probably got his own lifestyle thats why you 
dont remember and you tray to enforce your views and lifestyle on 
others, but it dont work this way... note i agree that discussing jesus 
or some other things here is not aproppriate *except as exceptions for
fun but as not a regular content) but this one topic os okay

[toc] | [prev] | [next] | [standalone]


#382723

FromKeith Thompson <Keith.S.Thompson+u@gmail.com>
Date2024-02-18 15:03 -0800
Message-ID<87zfvx5q9s.fsf@nosuchdomain.example.com>
In reply to#382718
fir <fir@grunge.pl> writes:
> Keith Thompson wrote:
>> fir <fir@grunge.pl> writes:
>>> by AI i understand something like 'neural network ' i guess
>>>
>>> this is a 'trendy topic' recantly and i dont know nearly nothing about
>>> it - what i know comes form 25 year agoe when i studied phisics and
>>> somewhere possibly i leafed by the book on some article on this, or
>>> maybe it was some student seminar on this? i dont remember
>>>
>>> i guess it is something like big decision tree with some coeeficients
>>> (weights) and probably the large amount of thsi weights you need to
>>> keep in an array
>>>
>>> the question is how olng it would to code such simple piece of this
>>> and what it could be used for? whiat input for example and what task?
>>
>> AI is not specific to C.  You clearly don't know enough about it for an
>> answer to your question to be useful.
>>
>> There are plenty of resources (books, articles, etc.) for learning about
>> AI.  I suggest you consult them.  This is not the best place for that.
>
> thats what you think and i think not... one thing is most groups are
> probably dead and i dont know them but im 99% sure it would be most 
> probably waste of time to ask there..second programming in c belongs
> to c, unlike of what you think - you probabbkly think that c is what is
> in c standard and imo c standard is such boring and useless thing
> (not even usefull for compiler writers as im the one to incuidentaly)
> that you could better move out from here than i stating questions on
> coding in c

You didn't even mention C in your initial post.

I didn't suggest asking in another newsgroup.  (There is a comp.ai
hierarchy, but I don't know how active it is; you could at least take a
look.)  I said that there are other resources where you could learn
about AI.  <https://en.wikipedia.org/wiki/Artificial_intelligence>
is likely to be a decent starting point.  And there are plenty of books,
though this is not the place to ask which ones are appropriate.

Once you've learned enough to ask meaningful questions about AI *in C*,
you might have something worth posting here.

-- 
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Medtronic
void Void(void) { Void(); } /* The recursive call of the void */

[toc] | [prev] | [next] | [standalone]


#382725

Fromfir <fir@grunge.pl>
Date2024-02-19 00:12 +0100
Message-ID<uqu2tf$34qt6$1@i2pn2.org>
In reply to#382713
Keith Thompson wrote:
> fir <fir@grunge.pl> writes:
>> by AI i understand something like 'neural network ' i guess
>>
>> this is a 'trendy topic' recantly and i dont know nearly nothing about
>> it - what i know comes form 25 year agoe when i studied phisics and
>> somewhere possibly i leafed by the book on some article on this, or
>> maybe it was some student seminar on this? i dont remember
>>
>> i guess it is something like big decision tree with some coeeficients
>> (weights) and probably the large amount of thsi weights you need to
>> keep in an array
>>
>> the question is how olng it would to code such simple piece of this
>> and what it could be used for? whiat input for example and what task?
>
> AI is not specific to C.  You clearly don't know enough about it for an
> answer to your question to be useful.
>
> There are plenty of resources (books, articles, etc.) for learning about
> AI.  I suggest you consult them.  This is not the best place for that.
>

you think its not i think it is... i think it is place to discuss 
projects in c also 0 like raytracer for example and variuos sort of things

i fond you try to enforce you specific wiev as a kinda autistic - so 
maybe you got problem with that (i got soem colegue like that and he
is also trying to enforce his weir wiews) [btw i mistaken one word
in previous post should be "understand" instead of "remember")

i know i can check in soem sources but this group is one of possible 
channels to ask - more over talking a bit here on this would be
good for this goriup as i see some posts which seem a bit too much
boring for me.. i know most people here are possibly not the very young
and not to much eager to learn new things (like me also as i get
closer to age 50 and im much prone to learn new things
but if someone is boring and want to discuss some thing thjere are still 
some more interesting than thos boring ones)

[toc] | [prev] | [next] | [standalone]


#382731

FromKeith Thompson <Keith.S.Thompson+u@gmail.com>
Date2024-02-18 15:57 -0800
Message-ID<87o7cd5nqx.fsf@nosuchdomain.example.com>
In reply to#382725
fir <fir@grunge.pl> writes:
[...]
> i fond you try to enforce you specific wiev as a kinda autistic - so
> maybe you got problem with that (i got soem colegue like that and he
> is also trying to enforce his weir wiews) [btw i mistaken one word
> in previous post should be "understand" instead of "remember")
[...]

I'm not trying to enforce anything.  You say you want to learn about AI.
I'm advising you on how you can do that.

And with that, I won't be seeing any more of your posts here.  I saw
this one only because my killfile referred to your old email address.

-- 
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Medtronic
void Void(void) { Void(); } /* The recursive call of the void */

[toc] | [prev] | [next] | [standalone]


#382767

Fromfir <fir@grunge.pl>
Date2024-02-19 18:05 +0100
Message-ID<ur01pp$37efo$1@i2pn2.org>
In reply to#382731
Keith Thompson wrote:
> fir <fir@grunge.pl> writes:
> [...]
>> i fond you try to enforce you specific wiev as a kinda autistic - so
>> maybe you got problem with that (i got soem colegue like that and he
>> is also trying to enforce his weir wiews) [btw i mistaken one word
>> in previous post should be "understand" instead of "remember")
> [...]
>
> I'm not trying to enforce anything.  You say you want to learn about AI.
> I'm advising you on how you can do that.
>
> And with that, I won't be seeing any more of your posts here.  I saw
> this one only because my killfile referred to your old email address.
>
hah, good luck

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.c


csiph-web