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 Recipe for AutoKeras #21049

Merged
merged 10 commits into from
Nov 9, 2022
46 changes: 46 additions & 0 deletions recipes/autokeras/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{% set name = "autokeras" %}
{% set version = "1.0.20" %}

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

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

build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . --no-deps -vv"

requirements:
host:
- python >=3.7
- pip
run:
- python >=3.7
- packaging
- tensorflow >=2.8.0
- keras-tuner >=1.1.0
- pandas

test:
imports:
- autokeras
- autokeras.graph
- autokeras.keras_layers
- autokeras.preprocessors
- benchmark

about:
home: http://autokeras.com
summary: AutoML for deep learning
license: Apache-2.0
license_file: LICENSE
doc_url: http://autokeras.com
dev_url: https://github.com/keras-team/autokeras

extra:
recipe-maintainers:
- Anselmoo