Machine learning in trading: theory, models, practice and algo-trading - page 1948

 
Aleksey Vyazmikin:

Without it, this whole direction is rubbish.

That's right, give it up)

elibrarius:

The main components?

The way of thinking is right
 
mytarmailS:

shaking hands

shakehands

shake hands



How long can you stand it, 5% of useful information is lost in the rubbish of imbeciles who can not even program, but prove something, criticize ... While mom cooks cabbage soup in the kitchen ...

They say they don't know how to program, but they prove their point by criticizing while their mother makes cabbage soup in the kitchen.)

 
Evgeny Dyuka:
There are several people here who are frightened by the thought "what if they succeed".
Peter, accept the fact that sooner or later they will. And (oh my God!) they'll make money on it.

Didn't notice the post.

Yes, apparently very scared)). It smells bad.)))

I'm probably wrong, trying to tell someone something. There are two sides to the market and the first always gives money to the second. I guess I was on the wrong side. I'll be gone forever...))))))

Mihail Marchukajtes
Mihail Marchukajtes
  • www.mql5.com
Добавил тему Коллеги Майл ру Групп теперь на МОЕКС Сегодня увидел новость что начались торги на фондовой бирже акций крупнейшей интернет компании в русском сегменте Майл ру групп. До этого акции торговались на лондонской фондовой бирже. Тикет инструмента MIAL налетай не скупись покупай живопись :-) Добавил тему Файловый указатель Коллеги...
 
Valeriy Yastremskiy:

In general, the standard task for the MO the person who does not know the choice of whipping molestation mockery get the person who knows the basics of MO)

The "experts" have poured mud on themselves with their rhetoric. Now, they are no longer perceived as before. But there was respect for them...

 
Tag Konow:

The "experts" have poured mud on themselves with their rhetoric. Now, they are no longer perceived as before. And there used to be respect for them...

It's already too much. I've had enough fun, I've got the likes, that's enough for today.
 
Evgeny Dyuka:
This is too much. I've had enough fun, I got the likes, that's enough for today.

I agree. That's enough for today).

 
Tag Konow:

I agree. That's enough for today).

It is better to make such generalizations about polymorphism in your own thread about AI. It's more appropriate there.

 
Valeriy Yastremskiy:

It is better to make such generalizations about polymorphism in your own AI branch. It is more appropriate there.

Yes, the topic there stimulates synapse connections responsible for higher forms of thinking, communication , andassociation. It is more appropriate there.

 

Finished this thread.

a=[1,2,3]
b=a
b[0]=10
print(a)
print(a is b)
print(id(a),id(b))

[10, 2, 3]

True

140431508149128 140431508149128

a=[1,2,3]
b=a[:]
b[0]=10
print(a)
print(a is b)
print(id(a),id(b))

[1, 2, 3]

False

140431508151240 140431508150344

a=[1,2,3]
a=np.asarray(a)
b=a[:]
b[0]=10
print(a)
print(a is b)
print(id(a),id(b))

[10 2 3]

False

140430235124800 140430235126320

And what do you call this? We are not connected, but we are connected.
 
Rorschach:

Finished this thread.

[10, 2, 3]

True

140431508149128 140431508149128

[1, 2, 3]

False

140431508151240 140431508150344

[10 2 3]

False

140430235124800 140430235126320

And what do you call this? We are not connected, but we are connected.

Representation or surface copy

Different array objects can use the same data. The view() method creates a new array object that is a representation of the same data.

>>> c = a.view()
>>> c is a
False
>>> c.base is a  # c это представление данных, принадлежащих a
True
>>> c.flags.owndata
False
>>>
>>> c.shape = (2,6)  # форма а не поменяется
>>> a.shape
(3, 4)
>>> c[0,4] = 1234  # данные а изменятся
>>> a
array([[  0, 1, 2, 3],
       [1234, 5, 6, 7],
       [ 8, 9, 10, 11]])

An array slice is a view:

>>> s = a[:,1:3]
>>> s[:] = 10
>>> a
array([[  0, 10, 10, 3],
       [1234, 10, 10, 7],
       [ 8, 10, 10, 11]])


https://pythonworld.ru/numpy/2.html
NumPy, часть 2: базовые операции над массивами
NumPy, часть 2: базовые операции над массивами
  • pythonworld.ru
Здравствуйте! Я продолжаю работу над пособием по python-библиотеке NumPy. В прошлой части мы научились создавать массивы и их печатать. Однако это не имеет смысла, если с ними ничего нельзя делать. Сегодня мы познакомимся с операциями над массивами. Базовые операции Математические операции над массивами выполняются поэлементно. Создается новый...
Reason: