On the omniscience of God

Right Divider

Body part
100%

A.I. is 100% just math, it's the machine being programmed to transform all manner of data, including visuals and video, sounds, and texts, into math, ones and zeroes, so that it can make math models, which generate new content, that didn't go into making the math models.
No, computers use logic as well as math.

It seems like you are pontificating on something that you don't really know that much about.
 
Last edited:

Derf

Well-known member
It's funny that you mentioned random number generators. I was going to use that as an example of simple code that gets complicated.

In Python, you can call random() many times and get different outputs every time.

Much code these days is what is called "data driven". So the code is the same, but the output varies based on other factors (i.e., the data [input]).
Random number generators aren't even random. They are randomized by picking a different seed (starting point), which is often a time hack, because it would approximate randomness. Use the same seed, and you get the same answer.
 

Idolater

"Matthew 16:18-19" Dispensationalist (Catholic) χρ
Random number generators aren't even random. They are randomized by picking a different seed (starting point), which is often a time hack, because it would approximate randomness. Use the same seed, and you get the same answer.
But if you run multiple quasi- or pseudo-random number generators simultaneously you get all different results, is this because at the micro-second level they're not all actually running simultaneously?
 

Derf

Well-known member
But if you run multiple quasi- or pseudo-random number generators simultaneously you get all different results, is this because at the micro-second level they're not all actually running simultaneously?
If you run the same generator with the same seed, you get the same result. There are different generators that will give a different result with the same seed, or same generators with a different seed, like the microsecond difference, as you said.
 

Right Divider

Body part
If you run the same generator with the same seed, you get the same result. There are different generators that will give a different result with the same seed, or same generators with a different seed, like the microsecond difference, as you said.
The point was... that regardless of the seed or the generator (algorithm) used... repeated calls to the SAME function return DIFFERENT results.

That is by design, just like AI producing different results with the same input is by design.
 

Idolater

"Matthew 16:18-19" Dispensationalist (Catholic) χρ
Soul is not the same as mind. When God breathed into man the breath of life, he became a living soul. When the breath of life leaves us, we die and return to dust. The "soul" appears to be the whole man, at least in Genesis 2.
The soul is the most plausible solution to the problem of identity. Turns out Catholicism has believed in a soul from the beginning, because the predecessor of Catholicism (Second Temple Levantine and Diasporan Judaism) was fertile soil for the idea. The New Testament alternates between a tri-partite and a bi-partite anthropology, although one verse suggests even a four-part model isn't impossible, heart, mind, soul, etc. Catholicism teaches it's bi-partite; body-and-soul, together, is the whole person.

Hinduism believes the soul is the whole person. That's why Hinduism believes in reincarnation, it's what reincarnation logically requires in order to have any initial plausibility. As a result, Hinduism doesn't consider morality to be as urgent as Catholicism does, because Hinduism believes that we're just on an endless treadmill of reincarnation, and if we really want to get off of it (which is fine but not obligatory), then we have to perfect our soul, because it's the imperfections in our soul, which shows itself in the moral imperfections of the body, which are the seeds of karma. We need to get rid of that, to perfect the soul, and get off the treadmill. But there's no urgency to do it. There's endless time to do it. Whenever we get around to it is fine. Never is fine too.

Catholicism believes in the soul, and in the Resurrection. Catholicism believes our soul and body are one, like two sides of the same coin, except even more intimately integrated than a coin's two sides are. Our soul projects on our body, and our body [reveals] something about our soul. What our body does indicates what's on our mind, under the Catholic model of anthropology, but under Hinduism, our soul needn't have anything to do with our body at all, it can be considered 100% separate and independent even, but this is only possible under Catholicism in the case of physical mental defect and injury. In such a case then the soul is very separated from the body, but apart from that exception, we believe the soul and the body are intimately united, the one does and is, what the other wants, and vice versa. It's a two-way street, a give-and-take. I scratch your back, you scratch mine. Cooperation.

If we are able to create a being that has a mind and body and lives, we will have created a living soul, just not a human one.
Every interaction with a human is an interaction with another soul. I don't think that with A.I.
 

Derf

Well-known member
The soul is the most plausible solution to the problem of identity. Turns out Catholicism has believed in a soul from the beginning, because the predecessor of Catholicism (Second Temple Levantine and Diasporan Judaism) was fertile soil for the idea. The New Testament alternates between a tri-partite and a bi-partite anthropology, although one verse suggests even a four-part model isn't impossible, heart, mind, soul, etc. Catholicism teaches it's bi-partite; body-and-soul, together, is the whole person.

Hinduism believes the soul is the whole person. That's why Hinduism believes in reincarnation, it's what reincarnation logically requires in order to have any initial plausibility. As a result, Hinduism doesn't consider morality to be as urgent as Catholicism does, because Hinduism believes that we're just on an endless treadmill of reincarnation, and if we really want to get off of it (which is fine but not obligatory), then we have to perfect our soul, because it's the imperfections in our soul, which shows itself in the moral imperfections of the body, which are the seeds of karma. We need to get rid of that, to perfect the soul, and get off the treadmill. But there's no urgency to do it. There's endless time to do it. Whenever we get around to it is fine. Never is fine too.

Catholicism believes in the soul, and in the Resurrection. Catholicism believes our soul and body are one, like two sides of the same coin, except even more intimately integrated than a coin's two sides are. Our soul projects on our body, and our body [reveals] something about our soul. What our body does indicates what's on our mind, under the Catholic model of anthropology, but under Hinduism, our soul needn't have anything to do with our body at all, it can be considered 100% separate and independent even, but this is only possible under Catholicism in the case of physical mental defect and injury. In such a case then the soul is very separated from the body, but apart from that exception, we believe the soul and the body are intimately united, the one does and is, what the other wants, and vice versa. It's a two-way street, a give-and-take. I scratch your back, you scratch mine. Cooperation.
But the soul can exist, function, desire, worship, feel pain, inhabit places without the body?
Every interaction with a human is an interaction with another soul. I don't think that with A.I.
I'm not talking about AI, but about a potential future step. Perhaps man could create a real intelligence...if a soul is a body and breath of life, just like animals have (even if not in the image of God), might we create a creature that can think and feel and react with thought, and even be able to choose right vs wrong? And if so, wouldn't it be a soul, made in our image?
 

Derf

Well-known member
The point was... that regardless of the seed or the generator (algorithm) used... repeated calls to the SAME function return DIFFERENT results.
If that was your point, then it is incorrect. If the seed and generator are the same, you get the same result, repeatedly. Here's how you do it in Python:

Python Random seed() Method

This function generates a random number based on the seed value. It is used to initialize the base value of the pseudorandom number generator. If the seed value is 10, it will always generate 0.5714025946899135 as the first random number.

With the standard command, you don't know what the seed is, but there's a finite potential that you could get a repeat seed, giving you a repeat result.


That is by design, just like AI producing different results with the same input is by design.
Ok.
 

Right Divider

Body part
I'm not talking about AI, but about a potential future step. Perhaps man could create a real intelligence...if a soul is a body and breath of life, just like animals have (even if not in the image of God), might we create a creature that can think and feel and react with thought, and even be able to choose right vs wrong? And if so, wouldn't it be a soul, made in our image?
That is just pure fantasy.
 

Right Divider

Body part
If that was your point, then it is incorrect. If the seed and generator are the same, you get the same result, repeatedly. Here's how you do it in Python:
Boy are you dense and stubborn.

YES, the SEQUENCE is the same... but EACH call to the FUNCTION gives a DIFFERENT value.

I did a LOT a development in Python... so you're not going to "school" me on that topic.
 

Derf

Well-known member
Boy are you dense and stubborn.

YES, the SEQUENCE is the same... but EACH call to the FUNCTION gives a DIFFERENT value.

I did a LOT a development in Python... so you're not going to "school" me on that topic.
Each call only gives a different answer if the seed is different. I did absolutely no development in Python, but the concept is the same in all languages, in all pseudo-random sequence generators, which I spent 35 years working on. That's not to say someone can't come up with a true random number generator, but I don't think anyone has. Therefore, if the inputs are ALL the same, including random number generator seeds, you should get the same answer.
 

Derf

Well-known member
The soul is the most plausible solution to the problem of identity.
Rethinking this for a minute. If soul is the whole person, then of course the soul is the (an) answer, but not a useful one. It's like saying 1 is 1 and 2 is 2. Or like using a word in its own definition.
 

Right Divider

Body part
Each call only gives a different answer if the seed is different.
Not true. The "seed" is just a starting point of the cycles. The sequence gives a different result with each call to the function.
I did absolutely no development in Python, but the concept is the same in all languages, in all pseudo-random sequence generators, which I spent 35 years working on. That's not to say someone can't come up with a true random number generator, but I don't think anyone has. Therefore, if the inputs are ALL the same, including random number generator seeds, you should get the same answer.
Again, for the stubborn, the SEQUENCE is the same if the SEED is the same... but EACH time the function is called you get a DIFFERENT number for the output.

Code:
import random

print(random.random())
print(random.random())
print(random.random())
print(random.random())

Produces:
Code:
0.2848784782120367
0.04199978152652162
0.8775153931822224
0.14149849982802232

Four DIFFERENT values.

QED
 
Top