Implementing Locally-Hosted Llama2 Chat UI Using Streamlit
https://medium.com/@daydreamersjp/implementing-locally-hosted-llama2-chat-ui-using-streamlit-53b181651b4e
https://medium.com/@daydreamersjp/implementing-locally-hosted-llama2-chat-ui-using-streamlit-53b181651b4e
Medium
Implementing Locally-Hosted Llama2 Chat UI Using Streamlit
In this blog post, we’re going to build upon the chat feature I introduced in my previous article. In that piece, I utilized the OpenAI API…
Python Beginner Project — Number Guessing Game
https://medium.com/@cchathu1999/python-beginner-project-number-guessing-game-ccd3332cf9ed
https://medium.com/@cchathu1999/python-beginner-project-number-guessing-game-ccd3332cf9ed
Medium
Python Beginner Project — Number Guessing Game
Python is a great language for beginners to start coding because it’s easy to understand. Learning through projects can be fun too! So, in…
TensorFlow Basics: Converting Celsius Temperatures to Fahrenheit
https://medium.com/@sadeghiborna/tensorflow-basics-converting-celsius-temperatures-to-fahrenheit-fcf0aa59fbf0
https://medium.com/@sadeghiborna/tensorflow-basics-converting-celsius-temperatures-to-fahrenheit-fcf0aa59fbf0
Medium
TensorFlow Basics: Converting Celsius Temperatures to Fahrenheit
Prerequisites: Basic Python, TensorFlow 2.0.0 installed (or, use Google Colab)
What does a numpy 2D array look like in python?
https://medium.com/@bouimouass.o/what-does-a-numpy-2d-array-look-like-in-python-38752ccde895
https://medium.com/@bouimouass.o/what-does-a-numpy-2d-array-look-like-in-python-38752ccde895
Medium
What does a numpy 2D array look like in python?
A NumPy 2D array is a rectangular array of data. It is a two-dimensional array, which means it has rows and columns. The rows are…
Sending email using python
https://medium.com/@agarwalmanya7456/sending-email-using-python-d2b34dece12a
https://medium.com/@agarwalmanya7456/sending-email-using-python-d2b34dece12a
Medium
Sending email using python
Python is a high level programming language. It works on different platforms such as windows,Linux and Mac. It has a simple syntax similar to the English language. For sending email via python , we…
Green Technology for a Greener World: Track, Cut, and Offset CO2 Emissions with CodeCarbon!
https://iamrajatroy.medium.com/green-technology-for-a-greener-world-track-cut-and-offset-co2-emissions-with-codecarbon-c6ea9c93a6d6
https://iamrajatroy.medium.com/green-technology-for-a-greener-world-track-cut-and-offset-co2-emissions-with-codecarbon-c6ea9c93a6d6
Medium
Green Technology for a Greener World: Track, Cut, and Offset CO2 Emissions with CodeCarbon!
Introduction
Tracking AWS Resource Creation by IAM Users
https://medium.com/@bounouh.fedi9/tracking-aws-resource-creation-by-iam-users-9702b5250dff
https://medium.com/@bounouh.fedi9/tracking-aws-resource-creation-by-iam-users-9702b5250dff
Medium
Tracking AWS Resource Creation by IAM Users
Introduction
Building a Generative AI-Powered Trending Topic Disseminator on Cloud Run using Vertex AI’s PaLM…
https://medium.com/@aditichawla2003/building-a-generative-ai-powered-trending-topic-disseminator-on-cloud-run-using-vertex-ais-palm-4f6414c207a3
https://medium.com/@aditichawla2003/building-a-generative-ai-powered-trending-topic-disseminator-on-cloud-run-using-vertex-ais-palm-4f6414c207a3
Medium
Pricing for Generative AI support on Vertex AI
Artificial intelligence (AI) has increasingly become an intrinsic part of the technology landscape, continually pushing the boundaries of…
Mojo: The Future of Python Development?
https://medium.com/@la_boukouffallah/mojo-the-future-of-python-development-c7729c5e97af
https://medium.com/@la_boukouffallah/mojo-the-future-of-python-development-c7729c5e97af
Medium
Mojo: The Future of Python Development?
Python is a popular programming language for a wide variety of tasks, including web development, data science, and machine learning…
Python Programming for Beginners, Chapter 4: Functions
https://medium.com/@ahmetmas91/python-programming-for-beginners-chapter-4-functions-cdfc5f94ff23
https://medium.com/@ahmetmas91/python-programming-for-beginners-chapter-4-functions-cdfc5f94ff23
Medium
Python Programming for Beginners, Chapter 4: Functions
Functions allow us to break our code into smaller, reusable blocks, making our programs more organized, modular, and easier to maintain.
The Add Digits Problem: A Challenge for the Curious
https://medium.com/@kebishpius/the-add-digits-problem-a-challenge-for-the-curious-2396fe3dc148
https://medium.com/@kebishpius/the-add-digits-problem-a-challenge-for-the-curious-2396fe3dc148
Medium
The Add Digits Problem: A Challenge for the Curious
Introduction
Python Plotly: Combining Dropdowns and Range Sliders For User Interaction
https://levelup.gitconnected.com/python-plotly-combining-dropdowns-and-range-sliders-for-user-interaction-658dc6fd9c71
https://levelup.gitconnected.com/python-plotly-combining-dropdowns-and-range-sliders-for-user-interaction-658dc6fd9c71
Medium
Python Plotly: Combining Dropdowns and Range Sliders For User Interaction
Combining data visualization tools for a richer user experience
Financial Analysis of Meta, Google and Amazon in Python (Part 1)
https://medium.com/@pavpatel26/financial-analysis-of-meta-google-and-amazon-in-python-part-1-2b82304e32c5
https://medium.com/@pavpatel26/financial-analysis-of-meta-google-and-amazon-in-python-part-1-2b82304e32c5
Medium
Financial Analysis of Meta, Google and Amazon in Python (Part 1)
To enhance my skills with python, I have decided to compare the performance of Meta, Google and Amazon YTD in 2023.
Create Your Own Artificial Neural Network for Multi-class Classification (With Python)
https://philip-mocz.medium.com/create-your-own-artificial-neural-network-for-multi-class-classification-with-python-7011946af722
https://philip-mocz.medium.com/create-your-own-artificial-neural-network-for-multi-class-classification-with-python-7011946af722
Medium
Create Your Own Artificial Neural Network for Multi-class Classification (With Python)
In today’s recreational coding exercise, we will build an Artificial Neural Network from scratch and train it to classify galaxies. In…
Mastering Tuples in Python: A Quick 2-Minute Guide
https://pythonvoyage.medium.com/mastering-tuples-in-python-a-quick-2-minute-guide-c32531478915
https://pythonvoyage.medium.com/mastering-tuples-in-python-a-quick-2-minute-guide-c32531478915
Medium
Mastering Tuples in Python: A Quick 2-Minute Guide
A tuple is an immutable, ordered collection in Python. Here’s a list of really important things you should know about the tuple data…
How to compare the performance of different sorting algorithms on different types of data
https://medium.com/@rapidhunter250/how-to-compare-the-performance-of-different-sorting-algorithms-on-different-types-of-data-c2d3c3a77ef9
https://medium.com/@rapidhunter250/how-to-compare-the-performance-of-different-sorting-algorithms-on-different-types-of-data-c2d3c3a77ef9
Medium
How to compare the performance of different sorting algorithms on different types of data
Sorting algorithms are methods of arranging data in a specific order, such as ascending or descending. Sorting is a common and important…