dasari4kntr Posted November 13, 2023 Author Report Share Posted November 13, 2023 5 minutes ago, Paamu said: @dasari4kntr what is beginner course for AI career. Just to start to see if I understand and decide. @Sreeven Option 1: https://github.com/microsoft/generative-ai-for-beginners Option 2: 1 1 Quote Link to comment Share on other sites More sharing options...
dasari4kntr Posted November 18, 2023 Author Report Share Posted November 18, 2023 Quote Link to comment Share on other sites More sharing options...
Dippam Posted November 20, 2023 Report Share Posted November 20, 2023 https://github.com/DataEngineer-io/data-engineer-handbook 1 Quote Link to comment Share on other sites More sharing options...
nag Posted November 29, 2023 Report Share Posted November 29, 2023 On 11/13/2023 at 5:09 PM, dasari4kntr said: Option 1: https://github.com/microsoft/generative-ai-for-beginners Option 2: i think Fast growing ankunta Quote Link to comment Share on other sites More sharing options...
dasari4kntr Posted December 2, 2023 Author Report Share Posted December 2, 2023 1 1 Quote Link to comment Share on other sites More sharing options...
PizzaReddy Posted December 4, 2023 Report Share Posted December 4, 2023 On 12/2/2023 at 4:36 AM, dasari4kntr said: taatha web socket vs http/rest plese explain Quote Link to comment Share on other sites More sharing options...
PizzaReddy Posted December 4, 2023 Report Share Posted December 4, 2023 Just now, PizzaReddy said: taatha web socket vs http/rest plese explain how is it implemented ? Quote Link to comment Share on other sites More sharing options...
dasari4kntr Posted December 4, 2023 Author Report Share Posted December 4, 2023 14 minutes ago, PizzaReddy said: taatha web socket vs http/rest plese explain websocket are used for streams of information...mostly used for live info...for example...if you are implmenting a stock market dashboard...you will get streams of ticker information...so to show the live dashboard...rest http is not optimal...so people use webscokets... sample implmentation... (with the help of chatGPT).... // server side const WebSocket = require('ws'); const wss = new WebSocket.Server({ port: 8080 }); wss.on('connection', function connection(ws) { console.log('A new client connected!'); ws.on('message', function incoming(message) { console.log('received: %s', message); // Echo the received message back to the client ws.send(`Echo: ${message}`); }); ws.on('close', () => console.log('Client disconnected')); }); console.log('WebSocket server started on ws://localhost:8080'); //client side <!DOCTYPE html> <html> <body> <script> var ws = new WebSocket('ws://localhost:8080'); ws.onopen = function() { console.log('Connected to the server'); ws.send('Hello Server!'); }; ws.onmessage = function(evt) { console.log('Message from server:', evt.data); }; ws.onclose = function() { console.log('Disconnected from the server'); }; </script> </body> </html> 1 Quote Link to comment Share on other sites More sharing options...
dasari4kntr Posted December 6, 2023 Author Report Share Posted December 6, 2023 https://microsoft.github.io/AI-For-Beginners/?id=getting-started Artificial Intelligence for Beginners - A Curriculum Content No Lesson Intro PyTorch Keras/TensorFlow Lab I Introduction to AI 1 Introduction and History of AI Text II Symbolic AI 2 Knowledge Representation and Expert Systems Text Expert System, Ontology, Concept Graph III Introduction to Neural Networks 3 Perceptron Text Notebook Lab 4 Multi-Layered Perceptron and Creating our own Framework Text Notebook Lab 5 Intro to Frameworks (PyTorch/TensorFlow) and Overfitting Text PyTorch Keras/TensorFlow Lab IV Computer Vision Microsoft Azure AI Fundamentals: Explore Computer Vision Microsoft Learn Module on Computer Vision PyTorch TensorFlow 6 Intro to Computer Vision. OpenCV Text Notebook Lab 7 Convolutional Neural Networks CNN Architectures Text Text PyTorch TensorFlow Lab 8 Pre-trained Networks and Transfer Learning Training Tricks Text Text PyTorch TensorFlow Dropout sample Adversarial Cat Lab 9 Autoencoders and VAEs Text PyTorch TensorFlow 10 Generative Adversarial Networks Artistic Style Transfer Text PyTorch TensorFlow GAN Style Transfer 11 Object Detection Text PyTorch TensorFlow Lab 12 Semantic Segmentation. U-Net Text PyTorch TensorFlow V Natural Language Processing Microsoft Azure AI Fundamentals: Explore Natural Language Processing Microsoft Learn Module on Natural language processing PyTorch TensorFlow 13 Text Representation. Bow/TF-IDF Text PyTorch TensorFlow 14 Semantic word embeddings. Word2Vec and GloVe Text PyTorch TensorFlow 15 Language Modeling. Training your own embeddings Text PyTorch TensorFlow Lab 16 Recurrent Neural Networks Text PyTorch TensorFlow 17 Generative Recurrent Networks Text PyTorch TensorFlow Lab 18 Transformers. BERT. Text PyTorch TensorFlow 19 Named Entity Recognition Text TensorFlow Lab 20 Large Language Models, Prompt Programming and Few-Shot Tasks Text PyTorch VI Other AI Techniques 21 Genetic Algorithms Text Notebook 22 Deep Reinforcement Learning Text PyTorch TensorFlow Lab 23 Multi-Agent Systems Text VII AI Ethics 24 AI Ethics and Responsible AI Text MS Learn: Responsible AI Principles Extras X1 Multi-Modal Networks, CLIP and VQGAN Text Notebook Mindmap of the Course 1 Quote Link to comment Share on other sites More sharing options...
dasari4kntr Posted December 7, 2023 Author Report Share Posted December 7, 2023 @bayareaking https://www.edx.org/learn/artificial-intelligence/harvard-university-cs50-s-introduction-to-artificial-intelligence-with-python 2 Quote Link to comment Share on other sites More sharing options...
dasari4kntr Posted December 10, 2023 Author Report Share Posted December 10, 2023 Quote Link to comment Share on other sites More sharing options...
csrcsr Posted December 11, 2023 Report Share Posted December 11, 2023 .. Quote Link to comment Share on other sites More sharing options...
TuesdayStories Posted December 12, 2023 Report Share Posted December 12, 2023 On 12/11/2023 at 5:43 AM, csrcsr said: .. Cheppanna it's me https://youtube.com/shorts/uUlJRw9mmjc?si=o4HJ00aUINePOVkG Quote Link to comment Share on other sites More sharing options...
pinnigaaru Posted December 18, 2023 Report Share Posted December 18, 2023 @dasari4kntr bro- I have ~ 10 years of IT experience. Out of 10 , I have 8 years on storage, VMware and other sysops related activities. And the remaining 1 year 9 months I have experience in Cloud and Devops(AWS services, Github and Terraform). What do you recommend the learning path for Generative AI to be competitive in this environment? Quote Link to comment Share on other sites More sharing options...
dasari4kntr Posted December 18, 2023 Author Report Share Posted December 18, 2023 1 minute ago, pinnigaaru said: @dasari4kntr bro- I have ~ 10 years of experience. Out of 10 , I have 8 years on storage, VMware and other sysops related activities. And the remaining 1 year 9 months I have experience in Cloud and Devops(AWS services, Github and Terraform). What do you recommend the learning path for Generative AI to be competitive in this environment? currently deni meeda working bro..? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.