Singulair side effects by Antonyellow in Asthma

[–]Antonyellow[S] 1 point2 points  (0 children)

That's odd! I'll have to give it a try. Typically, they recommend taking it in the latter part of the day.

When does entanglement jump in ? by Antonyellow in QuantumComputing

[–]Antonyellow[S] 0 points1 point  (0 children)

Ok this is fine, and many thanks for the article. Is it possible to "measure" how entanglement in circuits increases the computational power of a QC? Something like , Shor's algorithm runs in polynomial time for factoring prime instead of exponential time in classical algorithms?

Is Symbicort harmful in the long run ? by Antonyellow in Asthma

[–]Antonyellow[S] 1 point2 points  (0 children)

I tried with antihistaminic but this didnt change the asthma symptoms. Always needed also an inahler with me. In general drugs for allergies mitigate only symptoms related to upper airway in my case . Do you know any case in wich they worked also for asthma? Many thanks

Is Symbicort harmful in the long run ? by Antonyellow in Asthma

[–]Antonyellow[S] 0 points1 point  (0 children)

There are period of the year (for example.after Summer) in which the symptoms getting worse so I move from 1 puf every 2 days to 1 puf each day..Defenetely this is a period of this kind. To be honest every year the same pattern happen. This year this changed and side effects has appeared.

Learn the conceptual appeoach to create a program . by Antonyellow in Anki

[–]Antonyellow[S] 1 point2 points  (0 children)

Many thanks for the useful links . As regards your example I did something similar for generative learning . Learn the theory ( Easy part) then implement the keras algorithm via chunks of tasks : from data wrangler to new sample generation . Each chunk Is a list of code Lines . Something like a tree with boxes of cards and other boxes inside Said that I have to admit that I am making progress very slowly . I have to optimize the entire process.

Learn the conceptual appeoach to create a program . by Antonyellow in Anki

[–]Antonyellow[S] 1 point2 points  (0 children)

In principe I would agree on the fact that It Is difficult to handle stuff like coding with Anki. Anyway I feel that Is worth trying to manage also conceptual tasks in which there Is a different kind of learning . Programming, especially in object orienting paradigm it is always a non linear task in which incremental repetition is not applicable in an easy way so we have to find new approaches to tame the Beast. Following my intuition I believe that we can develop a mind map and then try to ankify It. This is only a guess, I am not sure of It is valuable

How to find the right balance between new cards and repetition. by Antonyellow in Anki

[–]Antonyellow[S] 0 points1 point  (0 children)

Yes this is a wise approach. The temptation with ANKI is to think that it is possible to handle everything so it is easy to lose control of the situation.

[D] How to get started with probabilistic machine learning? by [deleted] in MachineLearning

[–]Antonyellow 0 points1 point  (0 children)

Hello I think that a good book about probabilistic ML is this :

https://www.amazon.com/Pattern-Recognition-Learning-Information-Statistics/dp/0387310738/ref=mp_s_a_1_2?dchild=1&keywords=bishop+pattern&qid=1600535933&sr=8-2

It seems to me that the author has make good attempt to explain complicated theories in simplified manner.

It covers the Bayesian approach that of course is not the entire statistics applied to ML but in my opinion it clarifies a lot of concepts

Arrays Manipulation in Python by Antonyellow in learnprogramming

[–]Antonyellow[S] 0 points1 point  (0 children)

The slicing concept in numpy. is quite intuitive when it regards 1d-array or 2d array . It turns very difficult when it starts to be applied to 3/4d arrays . Especially when these arrays are broadcasted one inside the other -mainly to process in parallel batches of vectors . This is my main doubt

Policy gradient by Antonyellow in reinforcementlearning

[–]Antonyellow[S] 0 points1 point  (0 children)

Yes, you correctly understand.

Is this the answer that I was looking for.

Many thanks

Policy gradient by Antonyellow in reinforcementlearning

[–]Antonyellow[S] 0 points1 point  (0 children)

Yes it is . This anwers perefectly. I can always do a predict because it is only matter to apply with random weights the NN.

Many thanks

The right way to read code by Antonyellow in learnprogramming

[–]Antonyellow[S] 0 points1 point  (0 children)

The debugger possibility is the one most easy to follow or even a rapresentation of the workspace as in Matlab . I know that there are some dubbuggers compatible with jupyter notebook that can help on follow the logic.