DémultiplIA
3:27
Ай бұрын
CLIQ-ai.quebec NLP Meetups - May 2024
1:52:22
Пікірлер
@ahaha731
@ahaha731 8 күн бұрын
Statquest
@LoïcKwenga
@LoïcKwenga 4 ай бұрын
Please for the .ipynb
@LoïcKwenga
@LoïcKwenga 4 ай бұрын
Please for the .ipynb
@waheedweins
@waheedweins 6 ай бұрын
Nice job..motivating..
@fatyza7188
@fatyza7188 7 ай бұрын
Machaalah docteur tu es génial faysel
@marieasmr1442
@marieasmr1442 8 ай бұрын
Bravo Georges Philippe
@bricesiou1572
@bricesiou1572 9 ай бұрын
Cool
@victoirembala1209
@victoirembala1209 9 ай бұрын
Waouh je ne m'y connais pas en IA mais bravo Elnathan 🤗😇😇
@ReveGedeonMoualeanza-vf4jj
@ReveGedeonMoualeanza-vf4jj 9 ай бұрын
Très bonne position sur l'utilisation de l'IA et le point majeur qu'est la protection des données à caractère personnel.
@shawns0762
@shawns0762 9 ай бұрын
General Relativity predicts dilation, not singularities. In the 1939 journal "Annals of Mathematics" Einstein wrote - "The essential result of this investigation is a clear understanding as to why the Schwarzchild singularities (Schwarzchild was the first to raise the issue of General Relativity predicting singularities) do not exist in physical reality. Although the theory given here treats only clusters (star clusters) whose particles move along circular paths it does seem to be subject to reasonable doubt that more general cases will have analogous results. The Schwarzchild singularities do not appear for the reason that matter cannot be concentrated arbitrarily. And this is due to the fact that otherwise the constituting particles would reach the velocity of light" He was referring to the phenomenon of dilation (sometimes called gamma or y) mass that is dilated is smeared through spacetime relative to an outside observer. A graph illustrates its squared nature, dilation increases at an exponential rate the closer you get to the speed of light. Time dilation is just one aspect of dilation, it's not just time that gets dilated. There is no singularity/black hole at the center of our galaxy. It can be inferred mathematically that dilation is occurring there. This means that there is no valid XYZ coordinate we can attribute to it, you can't point your finger at something that is smeared through spacetime. More precisely, everywhere you point is equally valid. In other words that mass is all around us. This is the explanation for dark matter. The "missing mass" is dilated mass. Dilation does not occur in galaxies with low mass centers because they do not have enough mass to achieve relativistic velocities. To date, 6 very low mass galaxies including NGC 1052-DF2 and DF4 have been confirmed to show no signs of dark matter. This also explains why all planets and all binary stars have normal rotation rates, not 3 times normal. There was clarity in astronomy before television and movies began to popularize singularities in the 1960's. Einstein is known to have repeatedly said that they cannot exist. Nobody believed in them when he was alive including Plank, Bohr, Schrodinger, Dirac, Heisenberg, Feynman etc.
@ecomag6490
@ecomag6490 11 ай бұрын
Je pense que la question de Abdoulaye n pas bien été comprise
@kareemsayed6895
@kareemsayed6895 Жыл бұрын
can you give me the research papers used in this video?
@Benrictee
@Benrictee Жыл бұрын
Quite informative. Thanks.
@ayoubguemouria6168
@ayoubguemouria6168 Жыл бұрын
Bravo ma chère cousine Khaoula 💪. Bonne continuation 💐.
@devanshrai8970
@devanshrai8970 Жыл бұрын
Can you please provide a github or some link for the code?
@victorhashem7419
@victorhashem7419 Жыл бұрын
Quel homme
@jomik6751
@jomik6751 Жыл бұрын
Très belle présentation, merci Michael!
@shadyMCking
@shadyMCking Жыл бұрын
GG
@NanaKojoYaah-Nyarko
@NanaKojoYaah-Nyarko Жыл бұрын
Congrats everyone
@abigailabeo4914
@abigailabeo4914 Жыл бұрын
Congratulations Prince, Grace, Zeynabou and everyone else.
@ndourseynabou7814
@ndourseynabou7814 Жыл бұрын
Thanks Abigail
@aurelienbonombelle5263
@aurelienbonombelle5263 2 жыл бұрын
merci pour ce webinaire 😇
@posayy4948
@posayy4948 2 жыл бұрын
Très intéressant!
@elizabethdorisaledepaz2705
@elizabethdorisaledepaz2705 2 жыл бұрын
Que alegría verte amigo Nicolás y que bien se te ve muchas felicidades en cada logro que vas avanzando mucho te recordamos aquí en Perú Huaraz la familia Ale Depaz , familia de Luis Ale Calizaya y pedimos que nuestro Señor de la Soledad de cuide y proteja donde estés muchos abrazos de osita huaracina
@adammoussamahamat3825
@adammoussamahamat3825 2 жыл бұрын
Contribution de la télédétection pour le suivi de la productivité agricole et de détection des anomalies des cultures dans la commune de Bol au tchad : cas de Maïs Quelles les données qui peuvent être mises en évidence ? Pourriez-vous m'orienter sur un site où je peux avoir des travaux existants sur la même thématique ?
@zaimelalami5845
@zaimelalami5845 2 жыл бұрын
Nice
@shahnaz1981fat
@shahnaz1981fat 2 жыл бұрын
very informative
@ayoubihome4156
@ayoubihome4156 2 жыл бұрын
salut Pr Khadija ,j'ai une autre conception du modèle Perceptrons multi-couches ,mon question c'est quoi la différence entre la conception qu tu as présenté et avec la conception ci-dessous: # Parameters learning_rate = 0.001 training_epochs = 10000 display_step = 1 # Network Parameters n_hidden_1 = 9 # 1st layer number of neurons n_hidden_2 = 14 # 2nd layer number of neurons n_hidden_3 = 1 # 3rd layer n_classes = 2 # no. of classes (genuine or forged) # tf Graph input tf.compat.v1.disable_eager_execution() X = tf.compat.v1.placeholder("float", [None, n_input]) Y = tf.compat.v1.placeholder("float", [None, n_classes]) # Store layers weight & bias weights = { 'h1': tf.Variable(tf.random_normal([n_input, n_hidden_1], seed=1)), 'h2': tf.Variable(tf.random_normal([n_hidden_1, n_hidden_2])), 'h3': tf.Variable(tf.random_normal([n_hidden_2, n_hidden_3])), 'out': tf.Variable(tf.random_normal([n_hidden_1, n_classes], seed=2)) } biases = { 'b1': tf.Variable(tf.random_normal([n_hidden_1], seed=3)), 'b2': tf.Variable(tf.random_normal([n_hidden_2])), 'b3': tf.Variable(tf.random_normal([n_hidden_3])), 'out': tf.Variable(tf.random_normal([n_classes], seed=4)) } # Create model def multilayer_perceptron(x): layer_1 = tf.tanh((tf.matmul(x, weights['h1']) + biases['b1'])) layer_2 = tf.add(tf.matmul(layer_1, weights['h2']), biases['b2']) layer_3 = tf.add(tf.matmul(layer_2, weights['h3']), biases['b3']) out_layer = tf.tanh(tf.matmul(layer_1, weights['out']) + biases['out']) return out_layer # Construct model logits = multilayer_perceptron(X) # Define loss and optimizer loss_op = tf.reduce_mean(tf.squared_difference(logits, Y)) optimizer = tf.train.AdamOptimizer(learning_rate=learning_rate) train_op = optimizer.minimize(loss_op) # For accuracies pred = tf.nn.sigmoid(logits) # Apply softmax to logits correct_prediction = tf.equal(tf.argmax(pred,1), tf.argmax(Y,1)) accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
@evelynelefevre4489
@evelynelefevre4489 2 жыл бұрын
Ça me fait tout drôle de voir ce qu’est devenu ce petit bout de femme que je connais depuis qu’elle est bébé. Félicitations à toi Elsa ! Je suis très fière de toi !😘
@ErickMuzartFonsecadosSantos
@ErickMuzartFonsecadosSantos 2 жыл бұрын
Where's the original presentation in french?
@IVADO
@IVADO 2 жыл бұрын
kzbin.info/www/bejne/fl6Tm61uqM50l8k
@eugaleksandr
@eugaleksandr 2 жыл бұрын
For the first time in history, all of humanity is facing a common external enemy. This enemy is the climate. In order to survive in such a time, we need to unite in efforts to build a Creative Society. People are already ready to act, and as an example of this - International online forum "Global Crisis. We are People. We Want to Live". Look it up on KZbin, it not only identifies problems but also suggests a way out!
@tsimidaniel1792
@tsimidaniel1792 2 жыл бұрын
good
@sreeharivr1
@sreeharivr1 2 жыл бұрын
Can you please share the code. It will be grateful. thank you sir.
@ismailramde601
@ismailramde601 2 жыл бұрын
Bonjour, très bien expliqué. Peut-on avoir accès au contenu (code) ?
@IVADO
@IVADO 2 жыл бұрын
Bonjour Ismaïl. Merci pour la question. Malheureusement, il faut être inscrit.e au Ran.Données pour avoir le contenu de l'atelier. Merci de votre compréhension.
@mamependaleye9227
@mamependaleye9227 2 жыл бұрын
Bonsoir. Je suis actuellement étudiante à AIMS Sénégal. J'aimerais savoir comment rejoindre IVADO. Merci Beaucoup
@chandrasekare9
@chandrasekare9 2 жыл бұрын
very intriguing and interesting
@papytheo-maths9234
@papytheo-maths9234 2 жыл бұрын
AIMS!! Very good place for mathematicians
@sawadogoibrahim8861
@sawadogoibrahim8861 2 жыл бұрын
Très belle présentation, avec des belles explications! Congretulation!
@jeanmichaelmeme
@jeanmichaelmeme 2 жыл бұрын
Peut-être que je dois attendre la fin de la vidéo mais bon, il y a t’il une différence entre digital et intelligence numérique?
@DUCMOLA
@DUCMOLA 2 жыл бұрын
Bonjour à vous, Merci pour cette ressource. Pour quelqu’un qui n’a pas eu la chance de suivre les ateliers au moment ou ils passaient, par quel moyen il peut avoir les notebook des ateliers. Merci
@sawadogoibrahim8861
@sawadogoibrahim8861 2 жыл бұрын
Très bonne initiative, j'aimerais recevoir vos notifications concernant vos différentes activités ouvertes .
@IVADO
@IVADO 2 жыл бұрын
Merci pour ce commentaire :) Le moyen le plus simple de recevoir un résumé de nos initiatives est de s'abonner à nos infolettres : ivado.ca/abonnement-a-notre-infolettre/
3 жыл бұрын
Excellent webinaire ! Bravo et merci :)
@ousmanelom6274
@ousmanelom6274 3 жыл бұрын
Comment participer à ces séances depuis l'afrique
@zesvyaayvesez2849
@zesvyaayvesez2849 3 жыл бұрын
je crois qu'il te suffit de te connecter au lien Zoom qui t'est envoyé si tu t'es inscrit, et de calculer la bonne heure avec le décalage horaire
@zesvyaayvesez2849
@zesvyaayvesez2849 3 жыл бұрын
sinon tu peux suivre les vidéos proposées sur KZbin
@anima_kujur
@anima_kujur 3 жыл бұрын
Nice video 👍. If you don't mind, I have a humble request. Could you please help me with 3D tooth segmentation. I have 3D Teeth images and it is in the .STL file format. I have no idea how to preprocess it. Could you please give me some insights. I will be really grateful.
@ammaralsheghri5777
@ammaralsheghri5777 2 жыл бұрын
Hi Anima, please check this on github it will give you a very good start github.com/Tai-Hsien/MeshSegNet
@ElderScrolls7
@ElderScrolls7 3 жыл бұрын
Prof. Starmer is a great scholar. It is so fortunate for us that there is a person advanced in his field who does not forget the initial learning challenges. He can relate to weak learners (pun intended) and has created a platform that needs to be way more widespread. Statquest beats all its competitors.
@gub3207
@gub3207 3 жыл бұрын
Un belle outil de contrôle des masses pour une arnaque appelée 'urgence climatique '
@emmanuelkigmo8231
@emmanuelkigmo8231 3 жыл бұрын
Comment faire pour étudier l'intelligence artificielle dans le domaine financière grâce au partenariats universitaires.Je m'appelle KIGMO YONGA Emmanuel étudiant niveau II Institut Universitaire de Technologie de Ngaoundere au Cameroun,
@hirok6649
@hirok6649 3 жыл бұрын
BAAAAM!
@ahaha731
@ahaha731 8 күн бұрын
Double baam
@surajthapa4160
@surajthapa4160 3 жыл бұрын
I really love StatQuest.
@abdelkaderbenghadab7882
@abdelkaderbenghadab7882 3 жыл бұрын
Bonjour qu'elles sont les fraits d'études dans l'institut car j'ai ma fille qui a un Master en intelligence artificielle et qui veut venir s'améliore beaucoup plus car ici en Algérie y'a que la théorie elle veut plus de pratique dans ce domaine et elle aime beaucoup .merci beaucoup, on attend votre réponse
@rohitrajora9832
@rohitrajora9832 3 жыл бұрын
Josh deserves a tremendous amount of respect for his work_bam.