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

anaconda-project.yml 2.6 KB

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  1. # This is an Anaconda project file.
  2. #
  3. # Here you can describe your project and how to run it.
  4. # Use `anaconda-project run` to run the project.
  5. # The file is in YAML format, please see http://www.yaml.org/start.html for more.
  6. #
  7. #
  8. # Set the 'name' key to name your project
  9. #
  10. name: german_fake_news_classifier
  11. #
  12. # Set the 'icon' key to give your project an icon
  13. #
  14. icon:
  15. #
  16. # Set a one-sentence-or-so 'description' key with project details
  17. #
  18. description: This is a fake news classifier trained on german news/fake-news.
  19. #
  20. # In the commands section, list your runnable scripts, notebooks, and other code.
  21. # Use `anaconda-project add-command` to add commands.
  22. #
  23. commands:
  24. DownloadData:
  25. unix: python3 src/data/download_data.py
  26. env_spec: fake_news_env
  27. ScrapeNews:
  28. unix: python3 src/data/scrape_news.py
  29. env_spec: fake_news_env
  30. EDAKaggleDataset:
  31. notebook: notebooks/01-eda-german-fake-news.ipynb
  32. env_spec: fake_news_env
  33. #
  34. # In the variables section, list any environment variables your code depends on.
  35. # Use `anaconda-project add-variable` to add variables.
  36. #
  37. variables: {}
  38. #
  39. # In the services section, list any services that should be
  40. # available before your code runs.
  41. # Use `anaconda-project add-service` to add services.
  42. #
  43. services: {}
  44. #
  45. # In the downloads section, list any URLs to download to local files
  46. # before your code runs.
  47. # Use `anaconda-project add-download` to add downloads.
  48. #
  49. downloads: {}
  50. #
  51. # In the packages section, list any packages that must be installed
  52. # before your code runs.
  53. # Use `anaconda-project add-packages` to add packages.
  54. #
  55. packages:
  56. - python=3.8.8
  57. #
  58. # In the channels section, list any Conda channel URLs to be searched
  59. # for packages.
  60. #
  61. # For example,
  62. #
  63. # channels:
  64. # - mychannel
  65. #
  66. channels: []
  67. #
  68. # In the platforms section, list platforms the project should work on
  69. # Examples: "linux-64", "osx-64", "win-64"
  70. # Use `anaconda-project add-platforms` to add platforms.
  71. #
  72. platforms:
  73. - linux-64
  74. - osx-64
  75. - win-64
  76. #
  77. # You can define multiple, named environment specs.
  78. # Each inherits any global packages or channels,
  79. # but can have its own unique ones also.
  80. # Use `anaconda-project add-env-spec` to add environment specs.
  81. #
  82. env_specs:
  83. fake_news_env:
  84. description: Default environment spec for running commands
  85. packages:
  86. - pandas
  87. - newspaper3k
  88. - scikit-learn
  89. - nltk
  90. - jupyter
  91. - kaggle
  92. - python-dotenv
  93. - seaborn
  94. - catboost
  95. - dvc
  96. - pip:
  97. - dagshub
  98. - azureml-core
  99. channels: []
  100. platforms: []
  101. inference_env:
  102. packages:
  103. - scikit-learn
  104. - pandas
  105. - catboost
  106. - nltk
  107. - pip:
  108. - azureml-core
  109. - azureml-defaults
  110. channels: []
Tip!

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

Comments

Loading...