-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting started #143
Getting started #143
Conversation
README.md
Outdated
@@ -36,19 +34,26 @@ sma = tp.simple_moving_average(node, window_length=tp.days(7)) | |||
result = sma.evaluate(evset) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about adding a print and plot?
tp.read_event_set("path/to/temporal_data.csv", timestamp_column="time")
What about showing / describing what the csv file contains. Alternatively, what about creating an example by hand.
README.md
Outdated
@@ -36,19 +34,26 @@ sma = tp.simple_moving_average(node, window_length=tp.days(7)) | |||
result = sma.evaluate(evset) | |||
``` | |||
|
|||
Check the [Getting Started tutorial](examples/tutorials/getting_started.ipynb) to try it! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this point to the website or github?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, this one should point to the docs website, definitely
## Key features | ||
|
||
These are what set Temporian apart. | ||
|
||
- **Simple and powerful API**: Temporian exports high level operations making processing complex programs short and ready to read. | ||
- **Flexible data model**: Temporian models temporal data as a sequence of events, supporting non-uniform sampling timestamps seamlessly. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice
README.md
Outdated
- **Prevents modeling errors**: Temporian programs are guaranteed not to have future leakage unless the user calls the `leak` function, ensuring that models are not trained on future data. | ||
- **Iterative development**: Temporian can be used to develop preprocessing pipelines in Colab or local notebooks, allowing users to visualize results each step of the way to identify and correct errors early on. | ||
- **Efficient and well-tested implementations**: Temporian contains efficient and well-tested implementations of a variety of temporal data processing functions. For instance, our implementation of window operators is **x2000** faster than the same function implemented with NumPy. | ||
- **Wide range of preprocessing functions**: Temporian contains a wide range of preprocessing functions, including moving window operations, lagging, calendar features, arithmetic operations, index manipulation and propagation, resampling, and more. For a full list of the available operators, see the [operators documentation](https://temporian.readthedocs.io/en/latest/reference/temporian/core/operators/). | ||
|
||
## Documentation | ||
## Why Temporian? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd kill this section, especially since the M5 notebook isn't really readable atm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree. Removed 😬
5381cd7
to
92331c3
Compare
It's already ignored via |
90f5f87
to
55b7e94
Compare
README fixed and comments addressed. Make sure to force refresh on the docs preview to see the changes. |
55b7e94
to
0c30f04
Compare
This PR promotes the
toy_example.ipynb
->getting_started.ipynb
after some improvements to it:I'm also proposing to link it from the
README
, with a couple more changes there. Further discussion about those is expected and welcome 🙂Note: This should be merged after #141 , since it introduces some changes to the toy_example notebook.