Re: [Tutor] pointers or references to variables or sub-sets of variables query.

2019-07-07 Thread Alan Gauld via Tutor
On 07/07/2019 20:54, David L Neil wrote: > (However, some of us grew-up at a time when RAM was expensive and even > in our relaxed state, such 'costs' still impinge on our consciousness - Indeed, my first computer was at the local university and had 64KB. My second computer was a Sinclair ZX81

Re: [Tutor] pointers or references to variables or sub-sets of variables query.

2019-07-07 Thread David L Neil
On 8/07/19 2:48 AM, Alan Gauld via Tutor wrote: On 07/07/2019 09:19, David L Neil wrote: First-off, it has to be said that "100's of elements" suggests using an RDBMS - particularly if 'age' (eg 23 and 99) is not the only likely selection mechanism. Multiple selection mechanisms might suggest

Re: [Tutor] pointers or references to variables or sub-sets of variables query.

2019-07-07 Thread Mats Wichmann
On 7/6/19 8:39 PM, mhysnm1...@gmail.com wrote: > Hi all. > > In C, you can use pointers to reference variables, arrays, ETC. In python, I > do not recall anything specifically that refers to such a capability. What I > want to do is: > > I want to create different data structures such as dictiona

Re: [Tutor] pointers or references to variables or sub-sets of variables query.

2019-07-07 Thread Alan Gauld via Tutor
On 07/07/2019 09:19, David L Neil wrote: > First-off, it has to be said that "100's of elements" suggests using an > RDBMS - particularly if 'age' (eg 23 and 99) is not the only likely > selection mechanism. Multiple selection mechanisms might suggest an RDBMS but hundreds of items is chickenfee

Re: [Tutor] pointers or references to variables or sub-sets of variables query.

2019-07-07 Thread David L Neil
First-off, it has to be said that "100's of elements" suggests using an RDBMS - particularly if 'age' (eg 23 and 99) is not the only likely selection mechanism. On 7/07/19 2:39 PM, mhysnm1...@gmail.com wrote: Hi all. In C, you can use pointers to reference variables, arrays, ETC. In python, I

Re: [Tutor] Neutral Networks

2019-07-07 Thread Carlton Banks
perhaps something needs to be cleared? What do mean by identify, as in recognition or detection? what kind of network? What NN framework (Keras, tenser flow,caffee etc.) Are both people in the same frame? > Den 7. jul. 2019 kl. 04.49 skrev Rashmi Vimalendran > : > > Hi, > > I hope this email

Re: [Tutor] Neutral Networks

2019-07-07 Thread Alan Gauld via Tutor
On 07/07/2019 03:49, Rashmi Vimalendran wrote: > I have a python program for the project which is about developing an AI > program to identify persons. The program I have identities the first > person. It is not able to identify the 2nd person. When we run it, it is > not even showing an error. I

Re: [Tutor] pointers or references to variables or sub-sets of variables query.

2019-07-07 Thread Alan Gauld via Tutor
On 07/07/2019 03:39, mhysnm1...@gmail.com wrote: > In C, you can use pointers to reference variables, arrays, ETC. In python, I > do not recall anything specifically that refers to such a capability. In Python a variable is a name that refers to an object. Many names can refer to the same object.

[Tutor] Neutral Networks

2019-07-07 Thread Rashmi Vimalendran
Hi, I hope this email finds you well. I am writing to get help with the AI program I am currently working on. I have a python program for the project which is about developing an AI program to identify persons. The program I have identities the first person. It is not able to identify the 2nd per

[Tutor] pointers or references to variables or sub-sets of variables query.

2019-07-07 Thread mhysnm1964
Hi all. In C, you can use pointers to reference variables, arrays, ETC. In python, I do not recall anything specifically that refers to such a capability. What I want to do is: I want to create different data structures such as dictionaries which contain specific list elements based upo