Skip to content

Releases: mj-xmr/tsqsim

QT app for all Posix platforms & custom Py scripts

14 Sep 17:44
64882bc
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.8-alpha...v0.1.9-alpha

Python plots, Walk-Forward-Validation

28 Jan 19:35
4b0d352
Compare
Choose a tag to compare
Pre-release

Major

  • Most importantly, wherever QT App doesn't work, Python plotting can be used as an alternative
  • Python is also used for ACF, PACF and Seasonal Decomposition plots: standard TSA tools
  • Monte Carlo optimization delivers a set of results, yielding a glimpse into the future about how well the model would perform for new data
  • The solution can now be optimized by 3 methods: Naive Grid-Search O(n^m), Multidimensional Bisection Method O(m*log(n)), and Monte Carlo O(n) with an early stop option, when the variance changes are below a certain configurable threshold.

What's Changed

Full Changelog: v0.1.7-alpha...v0.1.8-alpha

Windows minimal release

31 Dec 18:12
8d8c819
Compare
Choose a tag to compare
Pre-release

Major

  • Windows now uses 2 types of releases: full, including gnuplot and its dependencies for plotting in the console, as well as a minimal one, just under 10 MB.
  • User can now interactively select the prediction algorithm via the wxConfigurator
  • Link Time Optimization will squeeze the last cycles of your CPU to boost the calculation speeds

What's Changed

  • Win: a mini artifact and a full artifact. by @mj-xmr in #38
  • UTs for XForm classes and improvements of inverse transformation by @mj-xmr in #39
  • XForms: added mul & div + tests for both and for add by @mj-xmr in #40
  • Rename logs & sqrts to log & sqrt by @mj-xmr in #41
  • Moved scripts under static scripts by @mj-xmr in #42
  • Basic prediction by @mj-xmr in #43
  • Bugfix: Open & close values were getting messed up for ticks by @mj-xmr in #44
  • Qt: Plotting predictions in lower window by @mj-xmr in #45
  • Bugfix: Differences now have a proper init by @mj-xmr in #46
  • QT: Plot reconstruction & small redesign by @mj-xmr in #47
  • Reconstruction of the prediction and user interaction by @mj-xmr in #48
  • Redesign i-faces + new tests confirming "diff" failure by @mj-xmr in #49

Full Changelog: v0.1.6-alpha...v0.1.7-alpha

v0.1.6-alpha

11 Dec 17:14
b66bbd2
Compare
Choose a tag to compare
v0.1.6-alpha Pre-release
Pre-release

What's Changed

  • Binary artifacts for Mac and Windows
  • Mac uses Link Time Optimization
  • Windows port: the released binary has a working console program, including plots

wxConf application for all targets

10 Dec 10:52
c103494
Compare
Choose a tag to compare
Pre-release

The wxConf app allows controlling all other applications conveniently, using GUI. See README.md.

Windows support

09 Dec 21:35
ed1c43e
Compare
Choose a tag to compare
Windows support Pre-release
Pre-release

The current version supports Windows.

Unfortunately the QT application don't work under Windows for now.

The good news is, that for all of the supported targets the unit tests can be ran now.

Mac OSX support

04 Dec 21:10
85f6f07
Compare
Choose a tag to compare
Mac OSX support Pre-release
Pre-release

The current version supports Mac OSX 10.15 & 11 (as delivered by GitHub Actions)

Build instructions

Unfortunately the following features don't work on either of these:

  • QT application
  • Unit Tests

QCustomPlot stored locally

03 Dec 17:25
de1725f
Compare
Choose a tag to compare
Pre-release

Previously QCustomPlot would be downloaded from the Author's website. Now it's being stored in this repo.

Please delete the contents of the build directory.

After building, you can play around with the QT application with the following example command line options:
./tsqsim-qt --min-year 2015 --max-year 2016 --per h12

  • Mouse right click reloads the data. Useful when a configuration has changed
  • Mouse scroll zooms in and out
  • Mouse drag with left click moves the viewpoint within the same dataset
  • Cursors left/right move the viewpoint left/right, loading new dataset
  • Cursors up/down scale up/down

image

QT app

03 Dec 13:28
851c5f2
Compare
Choose a tag to compare
QT app Pre-release
Pre-release

Created a QT application for visualization. It accepts the same command line parameters, as the console app.

Dev news: enabled working from the build directory, not just from the installation dir.

1st public alpha release

02 Dec 11:15
0abc990
Compare
Choose a tag to compare
Pre-release

1st public alpha release.

  • demo available
  • build scripts
  • quickstart documentation
  • continuous integration