-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from gretelai/jm/readme_scraping
Require README.md in each blueprint dir, added READMEs for existing BPs
- Loading branch information
Showing
7 changed files
with
102 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Create synthetic data from your own CSV or DataFrame | ||
|
||
This blueprint will walk you through the process of creating your own synthetic data from a CSV or a DataFrame of your choosing. | ||
|
||
No data will be sent to Gretel Cloud, to get started you just need to provide your own DF or CSV file. | ||
|
||
Please get an API key from the Integration menu, then start the Notebook flow. An example public dataset is provided for you | ||
but you can switch out your own dataset as needed. |
15 changes: 15 additions & 0 deletions
15
gretel/create_synthetic_data_from_gretel_project/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Create synthetic data from Gretel Cloud | ||
|
||
If you've uploaded records to a Gretel Cloud project, this Blueprint is for you! It shows you how to quickly download | ||
records from the project and create a synthetic version of these records. | ||
|
||
This blueprint assumes you have data in a Gretel Project. If you have not done this you can login and create a new project and select this | ||
blueprint. | ||
|
||
Get started with this blueprint in the console, visit https://console.gretel.cloud and select this blueprint and upload the sample data! | ||
|
||
To get started: | ||
|
||
- Head to the **Transform** tab | ||
- Get your Gretel URI from the **Integration** menu | ||
- Launch this blueprint's notebook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Downloading a saved synthetic model | ||
|
||
This blueprint does not require Gretel Cloud Project, simply launch the notebook and get started! | ||
|
||
When generating synthetic data, you are probably familiar with using our "bundle" interface. Models can take a long time to train and | ||
you may want to save that model for use later to generate more data. As you've seen in other blueprints, this can be done by doing: | ||
|
||
``` | ||
bundle.save("my_model.tar.gz") | ||
``` | ||
|
||
The same `SyntheticDataBundle` class has a factory method that can load an unarchived model and generate data from it. | ||
|
||
This blueprint has sample code to download a remotely saved model, decmpress and un-tar it and load it back into the bundle interface. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Using Gretel Cloud for Publish and Subscribe Data Labeling | ||
|
||
This blueprint demonsrates how to send raw records and consume labeled records from Gretel's APIs. It automatically | ||
creates a temporary project for you with use of a context manager. You can, of course, create a project more permmanently | ||
and write records to it and consume from them in a similar way. | ||
|
||
When you call `start()`, the Gretel Console URL will be printed. Feel free to visit this link and observe how the | ||
records are ingested, labeled, and explorable in our console! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters