empirical-lang
empirical-lang copied to clipboard
A language for time-series analysis
Given an array or set of JSON objects, infer a schema and types. This is to mirror the excellent CSV parser! Note JSON is like CSV in that integers are...
From the roadmap (#1), we want default and named arguments: ``` func foo(x: Int64, y: Int64 = 3): return x + y end foo(7) foo(7, 11) foo(7, y=11) foo(x=7, y=11)...
Found by @bobjansen: ``` func foo(x: Int64): x = x - 1 return end let a = 7 print(a) foo(a) print(a) ``` This prints: ``` 7 6 ``` The parameter...
Hi, empirical looks very cool! Here's an issue I ran into, as I just wanted to process some of my bank statements which are generated using a German locale which...
#### Introduction Vector databases have gained significant importance due to the rise of AI, machine learning, and deep learning applications. These databases store high-dimensional vectors representing data types such as...