Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

meta.yaml 863 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  1. {% set name = "imodels" %}
  2. {% set version = "1.0.2" %}
  3. package:
  4. name: {{ name|lower }}
  5. version: {{ version }}
  6. source:
  7. url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/imodels-{{ version }}.tar.gz
  8. sha256: 76082d76c19e58045367199cb307dd1bd02a1c7ea0bbe101da4b2cec3c765ad4
  9. build:
  10. number: 0
  11. noarch: python
  12. script: {{ PYTHON }} -m pip install . -vv
  13. requirements:
  14. host:
  15. - pip
  16. - python >=3.6
  17. run:
  18. - corels ==1.1.29
  19. - mlxtend >=0.18.0
  20. - numpy
  21. - pandas
  22. - python >=3.6
  23. - scikit-learn >=0.23.0
  24. - scipy
  25. test:
  26. imports:
  27. - experiments.config
  28. - imodels
  29. commands:
  30. - pip check
  31. requires:
  32. - pip
  33. about:
  34. home: https://github.com/csinva/imodels
  35. summary: Implementations of various interpretable models
  36. license: MIT
  37. license_file: license.md
  38. extra:
  39. recipe-maintainers:
  40. - csinva
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...