Scheduling Jupyter Notebooks at Meta
The article discusses Facebook's approach to scheduling Jupyter notebooks for automated data analysis and security auditing, emphasizing the challenges faced and the system's architecture to ensure efficiency and security in their workflow automation.
https://engineering.fb.com/2023/08/29/security/scheduling-jupyter-notebooks-meta/
The article discusses Facebook's approach to scheduling Jupyter notebooks for automated data analysis and security auditing, emphasizing the challenges faced and the system's architecture to ensure efficiency and security in their workflow automation.
https://engineering.fb.com/2023/08/29/security/scheduling-jupyter-notebooks-meta/
Engineering at Meta
Scheduling Jupyter Notebooks at Meta
At Meta, Bento is our internal Jupyter notebooks platform that is leveraged by many internal users. Notebooks are also being used widely for creating reports and workflows (for example, performing …
langgenius / dify
One API for plugins and datasets, one interface for prompt engineering and visual operation, all for creating powerful AI applications.
https://github.com/langgenius/dify
One API for plugins and datasets, one interface for prompt engineering and visual operation, all for creating powerful AI applications.
https://github.com/langgenius/dify
GitHub
GitHub - langgenius/dify: Production-ready platform for agentic workflow development.
Production-ready platform for agentic workflow development. - langgenius/dify
Marketing Automations Notebooks With GPT
A collection of automations and experiments exploring the applications of generative AI in Marketing, SEO, and Public Relations
https://github.com/ktynski/Marketing_Automations_Notebooks_With_GPT
A collection of automations and experiments exploring the applications of generative AI in Marketing, SEO, and Public Relations
https://github.com/ktynski/Marketing_Automations_Notebooks_With_GPT
GitHub
GitHub - ktynski/Marketing_Automations_Notebooks_With_GPT: A collection of automations and experiments exploring the applications…
A collection of automations and experiments exploring the applications of generative AI in Marketing, SEO, and Public Relations - ktynski/Marketing_Automations_Notebooks_With_GPT
Artwork Similarity Search: Exploring the Power of Vector Databases
This article will walk you through some of the basic concepts of vector databases, and we will build an end to end artwork similarity search project using Qdrant Vector database and Streamlit.
https://www.otmaneboughaba.com/artwork-similarity-search
This article will walk you through some of the basic concepts of vector databases, and we will build an end to end artwork similarity search project using Qdrant Vector database and Streamlit.
https://www.otmaneboughaba.com/artwork-similarity-search
Otmane Boughaba.
Artwork Similarity Search - Exploring the Power of Vector Databases
Introduction
Self-Taught: How do I know I’d my coding is “good” rather than just functional?
https://www.reddit.com/r/learnpython/comments/1684vs4/selftaught_how_do_i_know_id_my_coding_is_good/
https://www.reddit.com/r/learnpython/comments/1684vs4/selftaught_how_do_i_know_id_my_coding_is_good/
Reddit
Explore this post and more from the learnpython community
An Intro to Protocol Buffers with Python
Protocol buffers are a data serialization format that is language agnostic. They are analogous to ...
https://www.blog.pythonlibrary.org/2023/08/30/an-intro-to-protocol-buffers-with-python/
Protocol buffers are a data serialization format that is language agnostic. They are analogous to ...
https://www.blog.pythonlibrary.org/2023/08/30/an-intro-to-protocol-buffers-with-python/
Mouse Vs Python
An Intro to Protocol Buffers with Python - Mouse Vs Python
Protocol buffers are a data serialization format that is language agnostic. They are analogous to Python's own pickle format, but one of the advantages of
Create a Large Language Model from Scratch with Python
Learn how to build your own large language model, from scratch. This course goes into the data handling, math, and transformers behind large language models. You will use Python.
https://www.youtube.com/watch?v=UU1WVnMk4E8
Learn how to build your own large language model, from scratch. This course goes into the data handling, math, and transformers behind large language models. You will use Python.
https://www.youtube.com/watch?v=UU1WVnMk4E8
YouTube
Create a Large Language Model from Scratch with Python – Tutorial
Learn how to build your own large language model, from scratch. This course goes into the data handling, math, and transformers behind large language models. You will use Python.
✏️ Course developed by @elliotarledge
💻 Code and course resources: https…
✏️ Course developed by @elliotarledge
💻 Code and course resources: https…
Show HN: Modular Diffusion – A modular Python library for diffusion models
https://github.com/cabralpinto/modular-diffusion
https://github.com/cabralpinto/modular-diffusion
GitHub
GitHub - cabralpinto/modular-diffusion: Python library for designing and training your own Diffusion Models with PyTorch.
Python library for designing and training your own Diffusion Models with PyTorch. - cabralpinto/modular-diffusion
firmai / financial-machine-learning
A curated list of practical financial machine learning tools and applications.
https://github.com/firmai/financial-machine-learning
A curated list of practical financial machine learning tools and applications.
https://github.com/firmai/financial-machine-learning
GitHub
GitHub - firmai/financial-machine-learning: A curated list of practical financial machine learning tools and applications.
A curated list of practical financial machine learning tools and applications. - firmai/financial-machine-learning
Learning Pandas? Start Here.
A high paced overview of many of the pandas core functionality. As one of the most popular libraries in all of programming, Pandas is an essential tool for learning data wrangling. Watch this video to get a good foundational understanding of what is possible.
https://www.youtube.com/watch?v=DkjCaAMBGWM
A high paced overview of many of the pandas core functionality. As one of the most popular libraries in all of programming, Pandas is an essential tool for learning data wrangling. Watch this video to get a good foundational understanding of what is possible.
https://www.youtube.com/watch?v=DkjCaAMBGWM
YouTube
Learning Pandas for Data Analysis? Start Here.
A high paced overview of many of the pandas core functionality. As one of the most popular libraries in all of programming, Pandas is an essential tool for learning data wrangling. Watch this video to get a good foundational understanding of what is possible.…
Debugging Catastrophic Backtracking for Regular Expressions in Python
https://krishnanchandra.com/posts/regex-catastrophic-backtracking/
https://krishnanchandra.com/posts/regex-catastrophic-backtracking/
Krishnan Chandra
Debugging Catastrophic Backtracking for Regular Expressions in Python
Recently, I was debugging a Python application that had become stuck while processing certain inputs. The process was taking up 100% CPU time but not making progress. To try and figure out where the application was getting stuck, I turned to a handy profiling…