LamdenLink Bridge Status Update

The team is very grateful for everyone’s continued patience. We’re diligently working out the details to re-enable the LamdenLink bridge while minimizing impacts to the community. We had a productive call yesterday with community developers to discuss options. The proposed idea (thank Benji) we’re currently evaluating is to write-off    

Read more

A brief summary of Knowledge Graphs

Knowledge representation and reasoning is one of the popular fields in artificial intelligence dedicated to offering methods that will make it possible to build complex systems by trying to incorporate how people represent information and solve problems. It can be said as the main technology for the Semantic Web.. The Semantic Web combine concepts from knowledge representation and reasoning with markup languages based on XML. Resource Description Framework (RDF) and The Web Ontology Language(OWL) provide methods for modeling knowledge-based objects […]

Read more

ChatterBot: Build a Chatbot With Python

Chatbots can provide real-time customer support and are therefore a valuable asset in many industries. When you understand the basics of the ChatterBot library, you can build and train a self-learning chatbot with just a few lines of Python code. You’ll get the basic chatbot up and running right away in step one, but the most interesting part is the learning phase, when you get to train your chatbot. The quality and preparation of your training data will make a […]

Read more

Threading and Multiprocessing in Python

這篇文章會探討 Threading 和 Multiprocessing 在 Python 中的差異。Python 因為有 GIL(Global Interpreter Lock)的全域鎖,使得 Python 運行時僅運行一個 thread 來保證 Thread-Safe,使得 Python 的 multithreading 被降級成為 concurrency 的狀況。 此篇文章為個人的學習筆記,若有任何錯誤歡迎指證,希望大家能一同進步! 文章中實作的    

Read more
1 133 134 135 136 137 914