-
Notifications
You must be signed in to change notification settings - Fork 1
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 #7 from neptune-ai/sn/readme-update
README update
- Loading branch information
Showing
1 changed file
with
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,32 @@ | ||
# Neptune - airflow integration | ||
# Neptune + Airflow integration | ||
|
||
TODO: Update docs link | ||
See [the official docs](https://docs.neptune.ai/integrations-and-supported-tools/model-training/). | ||
Experiment tracking for Airflow DAG runs. | ||
|
||
## Installation | ||
|
||
``` | ||
pip install -U neptune-airflow | ||
``` | ||
|
||
## Example | ||
|
||
```python | ||
from neptune_airflow import NeptuneLogger | ||
|
||
with DAG( | ||
... | ||
) as dag: | ||
def task(**context): | ||
neptune_logger = NeptuneLogger() | ||
``` | ||
|
||
For more instructions and examples, see the [Airflow integration guide](https://docs.neptune.ai/integrations/airflow/) in the Neptune documentation. | ||
|
||
## Support | ||
|
||
If you got stuck or simply want to talk to us, here are your options: | ||
|
||
* Check our [FAQ page](https://docs.neptune.ai/getting_help). | ||
* You can submit bug reports, feature requests, or contributions directly to the repository. | ||
* Chat! In the Neptune app, click the blue message icon in the bottom-right corner and send a message. A real person will talk to you ASAP (typically very ASAP). | ||
* You can just shoot us an email at [[email protected]](mailto:[email protected]). |