All Versions
9
Latest Version
Avg Release Cycle
77 days
Latest Release
2860 days ago

Changelog History

  • v0.9.0.rc2

    November 16, 2016
  • v0.9.0.rc1

    November 13, 2016
  • v0.8.0 Changes

    February 19, 2016

    A completely re-architected version of DeepDive is here.
    โšก๏ธ Now the system compiles an execution plan ahead of time, checkpoints at a much finer granularity, and gives users full visibility and control of the execution, so any parts of the computation can be flexibly repeated, resumed, or optimized later.
    The new architecture naturally enforces modularity and extensibility, which enables us to innovate most parts independently without having to understand every possible combination of the entire code.
    โฑ The abstraction layers that encapsulate database operations as well as compute resources are now clearly established, giving a stable ground for extensions in the future that support more types of database engines and compute clusters such as Hadoop/YARN and ones with traditional job schedulers.

    ๐ŸŽ As an artifact of this redesign, exciting performance improvements are now observed:

    • ๐Ÿ–จ The database drivers show more than 20x higher throughput (2MB/s -> 50MB/s, per connection) with zero storage footprint by streaming data in and out of UDFs.
    • The grounded factor graphs save up to 100x storage space (12GB -> 180MB) by employing compression during the factor graph's grounding and loading, incurring less than 10% overhead in time (400s -> 460s, measuring only the dumping and loading, hence a much smaller fraction in practice).

    ๐Ÿ‘€ See the issues and pull requests for this milestone on GitHub (most notably #445) for further details.

    ๐Ÿ†• New commands and features

    An array of new commands have been added to deepdive, and existing ones have been rewritten, such as deepdive initdb and deepdive run.

    Compilation/Execution

    • deepdive compile
    • deepdive plan
    • deepdive do
    • deepdive redo
    • deepdive mark

    - deepdive done

    Learning/Inference

    - deepdive model

    Data management

    • deepdive create
    • deepdive load
    • deepdive unload
    • deepdive query

    - deepdive db

    UDFs

    • deepdive check
    • deepdive compute

    - @tsv_extractor, @returns Python decorators for parsing and formatting in UDFs.

    Interactive tools

    The bundled Mindbender can now automatically construct a search and browsing interface from DDlog annotations.
    ๐Ÿ“š Documentation for Dashboard has been added.

    • mindbender search
    • mindbender dashboard
    • mindbender snapshot

    - mindbender tagger

    Miscellaneous

    • deepdive whereis

    To learn more about individual deepdive COMMAND, use the following deepdive help command.

    deepdive help COMMAND
    

    โฌ‡๏ธ Dropped and deprecated features

    Scala code base has been completely dropped and rewritten in Bash and jq.
    ๐Ÿ—„ Many superfluous features have been dropped and are deprecated to be dropped as summarized below:

    • All other extractor style than tsv_extractor, sql_extractor, and cmd_extractor have been dropped, namely:
      • plpy_extractor
      • piggy_extractor
      • json_extractor
    • Manually writing deepdive.conf is strongly discouraged as filling in more fields such as dependencies: and input_relations: became mandatory.
      Rewriting them in DDlog is strongly recommended.
    • ๐Ÿ”ง Database configuration in deepdive.db.default is completely ignored.
      db.url must be used instead.
    • deepdive.extraction.extractors.*.input in deepdive.conf should always be SQL queries.
      ๐Ÿ‘ TSV(filename.tsv) or CSV(filename.csv) no longer supported.
  • v0.8-STABLE Changes

    February 25, 2016

    ๐Ÿš€ This automatically updated release includes the latest fixes done to the last v0.8.x release.

  • v0.7.1 Changes

    September 28, 2015
    • โž• Adds better support for applications written in DDlog.
      deepdive run now runs DDlog-based applications (app.ddlog).
    • ๐Ÿ‘‰ Makes PL/Python extension no longer necessary for PostgreSQL.
      It is still needed for Greenplum and PostgreSQL-XL.
    • โž• Adds deepdive sql eval command now supports format=json.
    • โž• Adds deepdive load command for loading TSV and CSV data.
    • โž• Adds deepdive help command for quick usage instructions for deepdive command.
    • โœ… Includes the latest Mindbender with the Search GUI for browsing data produced by DeepDive.
    • โž• Adds various bug fixes and improvements.
  • v0.7.0 Changes

    July 13, 2015
    • Provides a new command-line interface deepdive with a new standard DeepDive application layout.
      • No more installation/configuration complication: Users run everything through the only deepdive command, and everything just works in any environment. The only possible failure mode is not being able to run deepdive command, e.g., by not setting up the PATH environment correctly.
      • No more pathname/environment clutter in apps: repeated settings for DEEPDIVE_HOME, APP_HOME, PYTHONPATH, LD_LIBRARY_PATH, PGHOST, PGPORT, ... in run.sh or env.sh or env_local.sh or env_db.sh or etc. are gone. Path names (e.g., extractor udf) in application.conf are all relative to the application root, and brittle relative paths are no longer used in any of the examples.
      • Clear separation of app code from infrastructure code, as well as source code from object code: No more confusing of deepdive source tree with binary/executable/shared-library distribution or temporary/log/output directories.
      • Binary releases can be built with make package.
    • Here are a summary of changes visible to users:
      • Application settings is now kept in deepdive.conf file instead of application.conf.
      • Database settings is now done by putting everything (host, port, user, password, database name) into a single URL in file db.url.
      • Path names (e.g., extractor udf) in deepdive.conf are all relative to the application root unless they are absolute paths.
      • SQL queries against the database can be run easily with deepdive sql command when run under an application.
      • Database schema is now put in file schema.sql and optional initial data loading can be done by a script input/init.sh. Input data is recommended to be kept under input/.
      • By passing the pipeline name as an extra argument to the deepdive run command, different pipelines can be run very easily: No more application.conf editing.
      • Logs and outputs are placed under application root, under snapshot/.
    • โž• Adds piggy extractor that replaces the now deprecated plpy extractor.
    • โœ… Includes the latest DDlog compiler with extended syntax support for writing more real world applications.
    • โœ… Includes the latest Mindbender with Dashboard GUI for producing summary reports after each DeepDive run and interactively analyzing data products.
  • v0.6.0 Changes

    June 17, 2015
    • โž• Adds DDlog for writing applications in Datalog-like syntax.
    • โž• Adds support for incremental development cycles.
    • โž• Adds preliminary support for Postgres-XL backend.
    • Simplifies installation on Ubuntu and Mac with a quick installer that takes care of all dependencies.
    • โฌ‡๏ธ Drops maintenance of AMI favoring the new quick installer.
    • ๐Ÿ›  Fixes sampler correctness issues.
    • ๐ŸŽ Drops "FeatureStatsView" view due to performance issues.
    • Corrects various issues.
    • ๐Ÿš€ Starts using Semantic Versioning for consistent and meaningful version numbers for all future releases.
  • v0.05-RELEASE Changes

    February 09, 2015

    ๐Ÿš€ Changelog for release 0.0.5-alpha (02/08/2015)

    • โž• Added support to build Docker images for DeepDive. See the README.md for more.
    • โž• Added SQL "FeatureStatsView" view. Populated with feature
      statistics; useful for debugging.
    • โž• Added a few fixes to greenplum docs
    • โž• Added parallel greenplum loading for extractor data
    • ๐Ÿ›  A few misc bugfixes
  • v0.04.1-RELEASE Changes

    November 25, 2014

    ๐Ÿš€ Changelog for release 0.0.4.1-alpha (11/25/2014)

    ๐Ÿš€ This release focuses mostly on bug fixing and minor new features.

    • ๐Ÿ‘Œ Improve handling of failures in extractors and inference rules.
    • โž• Add support for running tests on GreenPlum.
    • โž• Add support for -q, --quiet in the DimmWitted sampler. This allows to
      โฌ‡๏ธ reduce the verbosity of the output.
    • โœ‚ Remove some dead code.
    • ๐Ÿ›  Fix a small bug in the spouse_example test.