Tags iLangGen 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 iLangGen 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 Mathematica 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 Emergency Medicine Book Review – Homeopathy in Intensive Care and Emergency Medicine admin August 30, 2020 Title: Homeopathy in Intensive Care and Emergency Medicine Author: Michael Frass and Martin Bundner (Ed.) Publisher: Narayana Verlag Year: 2017
Tags Elixir 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 Elixir 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 Elixir 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 Closure 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++ 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++ 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