Tags LISPNatural Language ProcessingProgramming Template-based Text Generation – Part 2 admin October 11, 2020 In my previous article, I showed how “iLangGen” framework facilitates text generation using templates. I talked about the various “patterns”
Tags LISPNatural Language ProcessingProgramming Template-Based Text Generation admin September 28, 2020 I had written earlier about natural language generation using my iLangGen framework. I used a “template” text file which was instantiated
Tags MathematicaNatural Language ProcessingProgramming Mathematica: Using TextCases to Extract Information from Natural Language Text admin September 13, 2020 Extracting meaningful information from unstructured, human readable text is a hot topic of research today and has important applications in
Tags ElixirMathematicaProgramming Pattern Matching: Comparing Elixir and Mathematica admin August 16, 2020 One of the things I like about Elixir is its support for patterns at the core language level, not through library
Tags ElixirLISPProgramming Elixir: Wrapping Lisp Calls in a Macro admin August 1, 2020 In the last article, I showed how to make calls to Lisp functions from Elixir. We followed this pattern: 1)
Tags ElixirLISPProgramming Calling Lisp Functions from Elixir admin July 19, 2020 In the last article I showed how we can simulate the idea of Lisp’s “closure” in Elixir. Today, I would like
Tags ElixirLISPProgramming Closure in Lisp vs Elixir admin July 5, 2020 I started learning Elixir a week ago. Although this has been at the top of my To-do list for quite a
Tags C++Programming std::is_standard_layout<> admin June 21, 2020 In our last post, we learnt about the type trait std::is_trivial<T>. Today, let us go through another type trait that
Tags C++Programming std::is_trivial<> admin June 6, 2020 Today let us try to understand the type trait std::is_trivial<T>. This trait checks if the given type is a trivial
Tags C++Programming std::is_convertible<> admin May 24, 2020 The type trait is_convertible<From, To> checks if an object of type From can be “implicitly” converted to an object of