Skip to content
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

Add Neuralprophet recipe #23383

Merged
merged 17 commits into from
Jul 21, 2023
7 changes: 7 additions & 0 deletions recipes/neuralprophet/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright <2023> <MIT>
ocefpaf marked this conversation as resolved.
Show resolved Hide resolved

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
55 changes: 55 additions & 0 deletions recipes/neuralprophet/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{% set name = "neuralprophet" %}
{% set version = "0.6.2" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/neuralprophet-{{ version }}.tar.gz
sha256: b6f0ecafa8c332c961f071a8664e1f6ba481822012b9cbd9352033cde9b90d4e

build:
noarch: python
ocefpaf marked this conversation as resolved.
Show resolved Hide resolved
script: {{ PYTHON }} -m pip install . -vv
number: 0
skip: win64

requirements:
host:
- python >=3.7,<3.11
- poetry-core
- pip
run:
- python >=3.7.1,<3.11
- captum >=0.6.0,<0.7.0
- holidays >=0.21.0,<0.22.0
- matplotlib-base >=3.5.3,<4.0.0
- numpy >=1.21.6,<1.24.0
- pandas >=1.3.5,<2.0.0
- plotly >=5.13.1,<6.0.0
- plotly-resampler >=0.8.3,<0.8.4
- pytorch-lightning >=1.9.4,<2.0.0
- tensorboard >=2.11.2,<3.0.0
- pytorch >=1.13.1,<2.0.0
- torchmetrics >=0.11.3,<0.12.0
- typing-extensions >=4.5.0,<5.0.0

test:
imports:
- neuralprophet
commands:
# fails because of dash
# - pip check
requires:
- pip

about:
home: https://github.com/ourownstory/neural_prophet
summary: NeuralProphet is an easy to learn framework for interpretable time series forecasting.
license: MIT
license_file: LICENSE.txt
VaTupuri marked this conversation as resolved.
Show resolved Hide resolved

extra:
recipe-maintainers:
- VaTupuri