11<p align =" left " >
2- <img width =20% src =" https://dai.lids.mit.edu/wp-content/uploads/2018/06/Logo_DAI_highres.png " alt =“sdv-dev” />
3- <i >An open source project from Data to AI Lab at MIT.</i >
4- </p >
5-
6- <p >
7- <img width =65% src =" docs/images/DeepEcho-Logo.png " >
2+ <a href =" https://dai.lids.mit.edu " >
3+ <img width=15% src="https://dai.lids.mit.edu/wp-content/uploads/2018/06/Logo_DAI_highres.png" alt="DAI-Lab" />
4+ </a >
5+ <i >An Open Source Project from the <a href =" https://dai.lids.mit.edu " >Data to AI Lab, at MIT</a ></i >
86</p >
97
108[ ![ Development Status] ( https://img.shields.io/badge/Development%20Status-2%20--%20Pre--Alpha-yellow )] ( https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha )
119[ ![ PyPi Shield] ( https://img.shields.io/pypi/v/deepecho.svg )] ( https://pypi.python.org/pypi/deepecho )
12- [ ![ Travis CI Shield] ( https://travis-ci.org/sdv-dev/DeepEcho.svg?branch=master )] ( https://travis-ci.org/sdv-dev/DeepEcho )
13- [ ![ Coverage Status] ( https://codecov.io/gh/sdv-dev/DeepEcho/branch/master/graph/badge.svg )] ( https://codecov.io/gh/sdv-dev/DeepEcho )
10+ [ ![ Tests] ( https://github.com/sdv-dev/DeepEcho/workflows/Run%20Tests/badge.svg )] ( https://github.com/sdv-dev/DeepEcho/actions?query=workflow%3A%22Run+Tests%22+branch%3Amaster )
1411[ ![ Downloads] ( https://pepy.tech/badge/deepecho )] ( https://pepy.tech/project/deepecho )
15- [ ![ Binder] ( https://mybinder.org/badge_logo.svg )] ( https://mybinder.org/v2/gh/sdv-dev/DeepEcho/master?filepath=tutorials )
12+ [ ![ Coverage Status] ( https://codecov.io/gh/sdv-dev/DeepEcho/branch/master/graph/badge.svg )] ( https://codecov.io/gh/sdv-dev/DeepEcho )
13+ [ ![ Binder] ( https://mybinder.org/badge_logo.svg )] ( https://mybinder.org/v2/gh/sdv-dev/DeepEcho/master?filepath=tutorials/timeseries_data )
1614[ ![ Slack] ( https://img.shields.io/badge/Slack%20Workspace-Join%20now!-36C5F0?logo=slack )] ( https://join.slack.com/t/sdv-space/shared_invite/zt-gdsfcb5w-0QQpFMVoyB2Yd6SRiMplcw )
1715
18- # DeepEcho
16+ < img align = " center " width = 60% src = " docs/images/ DeepEcho-Logo.png " >
1917
18+ * Website: https://sdv.dev
19+ * Documentation: https://sdv.dev/SDV
20+ * Repository: https://github.com/sdv-dev/DeepEcho
2021* License: [ MIT] ( https://github.com/sdv-dev/DeepEcho/blob/master/LICENSE )
2122* Development Status: [ Pre-Alpha] ( https://pypi.org/search/?c=Development+Status+%3A%3A+2+-+Pre-Alpha )
22- * Homepage: https://github.com/sdv-dev/DeepEcho
2323
2424# Overview
2525
@@ -28,16 +28,17 @@ time series**. It provides:
2828
29291 . Multiple models based both on ** classical statistical modeling** of time series and the latest
3030 in ** Deep Learning** techniques.
31- 2 . A robust [ benchmarking framework] ( benchmark ) for evaluating these methods on multiple datasets
32- and with multiple metrics.
31+ 2 . A robust [ benchmarking framework] ( https://github.com/sdv-dev/SDGym ) for evaluating these methods
32+ on multiple datasets and with multiple metrics.
33333 . Ability for ** Machine Learning researchers** to submit new methods following our ` model ` and
3434 ` sample ` API and get evaluated.
3535
3636## Try it out now!
3737
3838If you want to quickly discover ** DeepEcho** , simply click the button below and follow the tutorials!
3939
40- [ ![ Binder] ( https://mybinder.org/badge_logo.svg )] ( https://mybinder.org/v2/gh/sdv-dev/DeepEcho/master?filepath=tutorials )
40+ [ ![ Binder] ( https://mybinder.org/badge_logo.svg )] (
41+ https://mybinder.org/v2/gh/sdv-dev/DeepEcho/master?filepath=tutorials/timeseries_data )
4142
4243## Join our Slack Workspace
4344
@@ -49,30 +50,39 @@ our Slack Workspace!
4950
5051# Install
5152
52- ## Requirements
53+ ** DeepEcho** is part of the ** SDV** project and is automatically installed alongside it. For
54+ details about this process please visit the [ SDV Installation Guide] (
55+ https://sdv.dev/SDV/getting_started/install.html )
5356
54- ** DeepEcho** has been developed and tested on [ Python 3.6, 3.7 and 3.8 ] ( https://www.python.org/downloads/ )
57+ Optionally, ** DeepEcho** can also be installed as a standalone library using the following commands:
5558
56- Also, although it is not strictly required, the usage of a [ virtualenv] ( https://virtualenv.pypa.io/en/latest/ )
57- is highly recommended in order to avoid interfering with other software installed in the system where ** DeepEcho**
58- is run.
59-
60- ## Install with pip
61-
62- The easiest and recommended way to install ** DeepEcho** is using [ pip] ( https://pip.pypa.io/en/stable/ ) :
59+ ** Using ` pip ` :**
6360
6461``` bash
6562pip install deepecho
6663```
6764
68- This will pull and install the latest stable release from [ PyPi ] ( https://pypi.org/ ) .
65+ ** Using ` conda ` : **
6966
70- If you want to install from source or contribute to the project please read the
71- [ Contributing Guide] ( CONTRIBUTING.rst ) .
67+ ``` bash
68+ conda install -c sdv-dev -c pytorch -c conda-forge deepecho
69+ ```
7270
71+ For more installation options please visit the [ DeepEcho installation Guide] ( INSTALL.md )
7372
7473# Quickstart
7574
75+ ** DeepEcho** is included as part of [ SDV] ( https://sdv.dev/SDV ) to model and sample synthetic
76+ time series. In most cases, usage through SDV is recommeded, since it provides additional
77+ functionalities which are not available here. For more details about how to use DeepEcho
78+ whithin SDV, please visit the corresponding User Guide:
79+
80+ * [ SDV TimeSeries User Guide] ( https://sdv.dev/SDV/user_guides/timeseries/par.html )
81+
82+ ## Standalone usage
83+
84+ ** DeepEcho** can also be used as a standalone library.
85+
7686In this short quickstart, we show how to learn a mixed-type multivariate time series
7787dataset and then generate synthetic data that resembles it.
7888
@@ -133,24 +143,19 @@ For more details about **DeepEcho** and all its possibilities and features, plea
133143run the [ tutorials] ( tutorials ) .
134144
135145If you want to see how we evaluate the performance and quality of our models, please have a
136- look at the [ DeepEcho Benchmarking framework] ( benchmark ) or [ Explore the obtained results] (
137- https://docs.google.com/spreadsheets/d/1Fbwj5ZjuYjvPmgUbXQR1HiXs5UZ1K3VulItbqrzH8rA/ )
146+ look at the [ SDGym Benchmarking framework] ( https://github.com/sdv-dev/SDGym ) .
138147
139148Also, please feel welcome to visit [ our contributing guide] ( CONTRIBUTING.rst ) in order to help
140149us developing new features or cool ideas!
141150
142- # Related Projects
151+ # The Synthetic Data Vault
143152
144- ## SDV
145-
146- [ SDV] ( https://github.com/HDI-Project/SDV ) , for Synthetic Data Vault, is the end-user library for
147- synthesizing data in development under the [ HDI Project] ( https://hdi-dai.lids.mit.edu/ ) .
148- SDV allows you to easily model and sample relational datasets using DeepEcho thought a simple API.
149- Other features include anonymization of Personal Identifiable Information (PII) and preserving
150- relational integrity on sampled records.
151-
152- ## CTGAN
153+ <p >
154+ <a href =" https://sdv.dev " >
155+ <img width=30% src="https://github.com/sdv-dev/SDV/blob/master/docs/images/SDV-Logo-Color-Tagline.png?raw=true">
156+ </a >
157+ <p ><i >This repository is part of <a href =" https://sdv.dev " >The Synthetic Data Vault Project</a ></i ></p >
158+ </p >
153159
154- [ CTGAN] ( https://github.com/sdv-dev/CTGAN ) is a GAN based model for synthesizing tabular data.
155- It's also developed by the [ MIT's Data to AI Lab] ( https://sdv-dev.github.io/ ) and is under
156- active development.
160+ * Website: https://sdv.dev
161+ * Documentation: https://sdv.dev/SDV
0 commit comments