scratchkit 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mlscratch/__init__.py +56 -0
- mlscratch/__main__.py +118 -0
- mlscratch/bayesian/__init__.py +53 -0
- mlscratch/bayesian/bayesian_linear_regression.py +171 -0
- mlscratch/bayesian/bayesian_network.py +248 -0
- mlscratch/bayesian/bayesian_nn.py +315 -0
- mlscratch/bayesian/gaussian_process.py +207 -0
- mlscratch/bayesian/hmm.py +277 -0
- mlscratch/bayesian/init.py +52 -0
- mlscratch/bayesian/kalman_filter.py +182 -0
- mlscratch/bayesian/naive_bayes.py +209 -0
- mlscratch/metrics/__init__.py +59 -0
- mlscratch/metrics/classification.py +365 -0
- mlscratch/metrics/regression.py +79 -0
- mlscratch/neural/__init__.py +121 -0
- mlscratch/neural/attention.py +420 -0
- mlscratch/neural/autoencoder.py +543 -0
- mlscratch/neural/boltzmann.py +231 -0
- mlscratch/neural/cnn.py +593 -0
- mlscratch/neural/cvnn.py +322 -0
- mlscratch/neural/gan.py +364 -0
- mlscratch/neural/hopfield.py +193 -0
- mlscratch/neural/perceptron.py +398 -0
- mlscratch/neural/rbf_network.py +230 -0
- mlscratch/neural/recurrent.py +569 -0
- mlscratch/preprocessing/__init__.py +38 -0
- mlscratch/preprocessing/encoders.py +140 -0
- mlscratch/preprocessing/model_selection.py +119 -0
- mlscratch/preprocessing/polynomial.py +105 -0
- mlscratch/preprocessing/scalers.py +220 -0
- mlscratch/py.typed +0 -0
- mlscratch/reinforcement/__init__.py +59 -0
- mlscratch/reinforcement/ddpg.py +363 -0
- mlscratch/reinforcement/dqn.py +319 -0
- mlscratch/reinforcement/ppo.py +452 -0
- mlscratch/reinforcement/q_learning.py +352 -0
- mlscratch/reinforcement/sac.py +382 -0
- mlscratch/reinforcement/utils.py +594 -0
- mlscratch/supervised/__init__.py +76 -0
- mlscratch/supervised/_validation.py +50 -0
- mlscratch/supervised/adaboost.py +255 -0
- mlscratch/supervised/decision_tree.py +495 -0
- mlscratch/supervised/gradient_boosting.py +354 -0
- mlscratch/supervised/knn.py +234 -0
- mlscratch/supervised/lasso_regression.py +125 -0
- mlscratch/supervised/linear_models.py +459 -0
- mlscratch/supervised/linear_regression.py +197 -0
- mlscratch/supervised/logistic_regression.py +119 -0
- mlscratch/supervised/naive_bayes.py +113 -0
- mlscratch/supervised/random_forest.py +321 -0
- mlscratch/supervised/ridge_regression.py +93 -0
- mlscratch/supervised/svm.py +356 -0
- mlscratch/unsupervised/__init__.py +39 -0
- mlscratch/unsupervised/apriori.py +178 -0
- mlscratch/unsupervised/dbscan.py +141 -0
- mlscratch/unsupervised/gmm.py +204 -0
- mlscratch/unsupervised/hierarchical_clustering.py +137 -0
- mlscratch/unsupervised/ica.py +167 -0
- mlscratch/unsupervised/kmeans.py +135 -0
- mlscratch/unsupervised/kmedoids.py +133 -0
- mlscratch/unsupervised/pca.py +103 -0
- mlscratch/unsupervised/tsne.py +200 -0
- scratchkit-0.2.0.dist-info/METADATA +241 -0
- scratchkit-0.2.0.dist-info/RECORD +68 -0
- scratchkit-0.2.0.dist-info/WHEEL +5 -0
- scratchkit-0.2.0.dist-info/entry_points.txt +2 -0
- scratchkit-0.2.0.dist-info/licenses/LICENSE +201 -0
- scratchkit-0.2.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scratchkit
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Pure-NumPy from-scratch implementations of ML/AI/RL/Bayesian algorithms — no PyTorch, no TensorFlow, no scikit-learn. (import name: mlscratch)
|
|
5
|
+
Author-email: Mattral <mattral@example.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/Mattral/ML-AI-Algorithms-from-scratch
|
|
8
|
+
Project-URL: Documentation, https://mattral.github.io/ML-AI-Algorithms-from-scratch/
|
|
9
|
+
Project-URL: Repository, https://github.com/Mattral/ML-AI-Algorithms-from-scratch
|
|
10
|
+
Project-URL: Issues, https://github.com/Mattral/ML-AI-Algorithms-from-scratch/issues
|
|
11
|
+
Project-URL: Changelog, https://github.com/Mattral/ML-AI-Algorithms-from-scratch/blob/main/CHANGELOG.md
|
|
12
|
+
Keywords: machine-learning,deep-learning,reinforcement-learning,bayesian,numpy,from-scratch,education,algorithms,neural-network,unsupervised,supervised
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: Intended Audience :: Education
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
+
Classifier: Operating System :: OS Independent
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
24
|
+
Classifier: Topic :: Education
|
|
25
|
+
Classifier: Typing :: Typed
|
|
26
|
+
Requires-Python: >=3.10
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: numpy>=1.23
|
|
30
|
+
Provides-Extra: dev
|
|
31
|
+
Requires-Dist: pytest>=7; extra == "dev"
|
|
32
|
+
Requires-Dist: pytest-cov>=4; extra == "dev"
|
|
33
|
+
Requires-Dist: pytest-benchmark>=4; extra == "dev"
|
|
34
|
+
Requires-Dist: hypothesis>=6; extra == "dev"
|
|
35
|
+
Requires-Dist: scikit-learn>=1.3; extra == "dev"
|
|
36
|
+
Requires-Dist: ruff>=0.4; extra == "dev"
|
|
37
|
+
Requires-Dist: black>=24; extra == "dev"
|
|
38
|
+
Requires-Dist: mypy>=1.8; extra == "dev"
|
|
39
|
+
Requires-Dist: build>=1; extra == "dev"
|
|
40
|
+
Requires-Dist: twine>=5; extra == "dev"
|
|
41
|
+
Provides-Extra: docs
|
|
42
|
+
Requires-Dist: mkdocs>=1.6; extra == "docs"
|
|
43
|
+
Requires-Dist: mkdocs-material>=9.5; extra == "docs"
|
|
44
|
+
Requires-Dist: mkdocstrings[python]>=0.25; extra == "docs"
|
|
45
|
+
Provides-Extra: notebooks
|
|
46
|
+
Requires-Dist: jupyter>=1.0; extra == "notebooks"
|
|
47
|
+
Requires-Dist: matplotlib>=3.7; extra == "notebooks"
|
|
48
|
+
Requires-Dist: pandas>=2.0; extra == "notebooks"
|
|
49
|
+
Provides-Extra: all
|
|
50
|
+
Requires-Dist: scratchkit[dev,docs,notebooks]; extra == "all"
|
|
51
|
+
Dynamic: license-file
|
|
52
|
+
|
|
53
|
+
# ML-AI-Algorithms-from-scratch
|
|
54
|
+
|
|
55
|
+
**60+ ML/AI/DL/RL/Bayesian algorithms implemented from scratch in NumPy — plus `mlscratch`, a pip-installable package (`pip install scratchkit`) with a consistent, scikit-learn-style API and 1,100+ tests.**
|
|
56
|
+
|
|
57
|
+
[](https://github.com/Mattral/ML-AI-Algorithms-from-scratch/actions)
|
|
58
|
+
[](https://pypi.org/project/scratchkit/)
|
|
59
|
+
[](https://github.com/Mattral/ML-AI-Algorithms-from-scratch/blob/main/LICENSE)
|
|
60
|
+
[](https://python.org)
|
|
61
|
+
[](https://github.com/Mattral/ML-AI-Algorithms-from-scratch/stargazers)
|
|
62
|
+
|
|
63
|
+
> **What's here:** readable, standalone implementations of algorithms you already know by name, written to show the math in code, not to be fast.
|
|
64
|
+
>
|
|
65
|
+
> **What's new:** `src/mlscratch/` — a pip-installable package with `fit()`/`predict()`/`transform()` APIs, full type hints, and a test suite that cross-checks correctness against scikit-learn wherever a reference implementation exists.
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## What makes this different from the dozens of similar repos
|
|
70
|
+
|
|
71
|
+
There are many "ML from scratch" repos on GitHub. The honest differentiators here:
|
|
72
|
+
|
|
73
|
+
- **Bayesian methods are first-class.** Most from-scratch repos stop at supervised learning + neural nets. This one includes Bayesian Neural Networks, Gaussian Processes, Hidden Markov Models, Bayesian Networks, and Kalman Filters — algorithms most tutorials skip because they're harder to implement correctly.
|
|
74
|
+
- **RL goes beyond DQN.** DDPG, TD3, SAC, and PPO are included alongside tabular Q-Learning and DQN — non-trivial to implement correctly from scratch, and rare to see done well in a single repo.
|
|
75
|
+
- **The `src/mlscratch` package is real, not a wrapper.** Every estimator is implemented in pure NumPy — no calling out to scikit-learn at runtime. scikit-learn only appears in the *test suite*, as a correctness oracle, never as a dependency of the library itself.
|
|
76
|
+
- **Kernel SVM via real SMO, gradient boosting with proper Newton-step leaves, multiclass-native AdaBoost (SAMME.R)** — the ensemble/kernel methods aren't toy simplifications; several are verified to match scikit-learn's output to floating-point tolerance on real benchmarks.
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## Quick start
|
|
81
|
+
|
|
82
|
+
### Browse the standalone scripts (no install needed)
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
git clone https://github.com/Mattral/ML-AI-Algorithms-from-scratch
|
|
86
|
+
cd ML-AI-Algorithms-from-scratch
|
|
87
|
+
|
|
88
|
+
pip install numpy matplotlib scikit-learn # only deps, for the standalone scripts
|
|
89
|
+
|
|
90
|
+
python "Supervised/LinearRegression/linear_regression.py"
|
|
91
|
+
python "Neural Networks/Transformer/transformer.py"
|
|
92
|
+
python "Reinforcement/PPO/ppo.py"
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### Use the package
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
pip install scratchkit # from PyPI — the import name is still `mlscratch`
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
# — or, for local development —
|
|
103
|
+
pip install -e . # installs src/mlscratch in editable mode
|
|
104
|
+
# pip install -e ".[dev]" # + pytest, ruff, black, mypy, for development
|
|
105
|
+
|
|
106
|
+
pytest tests/ -v # run the test suite
|
|
107
|
+
python -m mlscratch info # package + sub-package summary
|
|
108
|
+
python -m mlscratch list supervised
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
```python
|
|
112
|
+
from mlscratch.supervised import RandomForestClassifier
|
|
113
|
+
from mlscratch.preprocessing import StandardScaler, train_test_split
|
|
114
|
+
from mlscratch.metrics import classification_report
|
|
115
|
+
|
|
116
|
+
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.25, stratify=y)
|
|
117
|
+
|
|
118
|
+
scaler = StandardScaler().fit(X_train)
|
|
119
|
+
model = RandomForestClassifier(n_estimators=200, max_depth=6, oob_score=True)
|
|
120
|
+
model.fit(scaler.transform(X_train), y_train)
|
|
121
|
+
|
|
122
|
+
print(f"OOB score: {model.oob_score_:.3f}")
|
|
123
|
+
print(classification_report(y_test, model.predict(scaler.transform(X_test))))
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
See [`examples/`](https://github.com/Mattral/ML-AI-Algorithms-from-scratch/tree/main/examples) for six runnable end-to-end scripts covering decision trees, random forests, kernel SVMs, gradient boosting, AdaBoost, and a full no-sklearn classification + regression pipeline.
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
## What's implemented
|
|
131
|
+
|
|
132
|
+
### `mlscratch` package (`src/mlscratch/`)
|
|
133
|
+
|
|
134
|
+
| Sub-package | Contents | Tests |
|
|
135
|
+
|---|---|---|
|
|
136
|
+
| `mlscratch.supervised` | Linear/Ridge/Lasso/ElasticNet/Logistic regression, KNN, **DecisionTree** (classifier + regressor), **RandomForest** (bagging + OOB scoring), kernel **SVC** (SMO; linear/poly/rbf/sigmoid, one-vs-rest multiclass), **GradientBoosting** (classifier + regressor, squared/absolute-error loss), **AdaBoost** (SAMME / SAMME.R, multiclass-native) | 162 |
|
|
137
|
+
| `mlscratch.unsupervised` | K-Means++, K-Medoids, DBSCAN, Agglomerative Clustering, PCA, t-SNE, FastICA, Gaussian Mixture Model (EM), Apriori | 120 |
|
|
138
|
+
| `mlscratch.bayesian` | Naive Bayes (Gaussian/Multinomial/Bernoulli), Bayesian Linear Regression, Bayesian Network, Bayesian Neural Network (mean-field VI), Gaussian Process Regression, Hidden Markov Model, Kalman Filter | 171 |
|
|
139
|
+
| `mlscratch.reinforcement` | Q-Learning, Double Q-Learning, DQN (Double + Dueling + PER), DDPG, TD3, PPO (GAE-λ), SAC, plus shared `GridWorld`/`ReplayBuffer`/`PrioritizedReplayBuffer` utilities | 218 |
|
|
140
|
+
| `mlscratch.neural` | Single/Multi-Layer Perceptron, Autoencoder (vanilla/denoising/variational), RNN/LSTM/Encoder-Decoder, a small CNN (Conv2D/Pool/BatchNorm), Attention + Transformer encoder, GAN, Hopfield Network, Restricted Boltzmann Machine, RBF Network, Complex-Valued NN | 372 |
|
|
141
|
+
| `mlscratch.metrics` | accuracy/precision/recall/F1, confusion matrix, `classification_report`, ROC/AUC, log loss, MSE/RMSE/MAE/MAPE, R², explained variance — every metric checked against scikit-learn | 48 |
|
|
142
|
+
| `mlscratch.preprocessing` | StandardScaler, MinMaxScaler, RobustScaler, Normalizer, LabelEncoder, OneHotEncoder, PolynomialFeatures, `train_test_split` (with stratification) | 62 |
|
|
143
|
+
|
|
144
|
+
**1,153 tests total.** A handful (~18) fail under the newest NumPy/SciPy releases in this environment due to upstream API drift in unrelated modules (Bayesian networks, reinforcement learning buffers, ICA) — tracked as known issues, not part of this release's scope.
|
|
145
|
+
|
|
146
|
+
### Standalone scripts (original, by category)
|
|
147
|
+
|
|
148
|
+
These are the original from-scratch scripts the package above was distilled from — browse them like a reference, run them directly, no install required.
|
|
149
|
+
|
|
150
|
+
- **`Supervised/`** — Linear/Ridge/Lasso Regression, Logistic Regression, k-NN, Decision Trees, Random Forest, Naive Bayes, SVM
|
|
151
|
+
- **`Unsupervised/`** — K-Means++, K-Medoids, DBSCAN, Hierarchical Clustering, PCA, t-SNE, ICA, Gaussian Mixture Model, EM, Self-Organising Map, Apriori
|
|
152
|
+
- **`Neural Networks/`** — Single/Multi-Layer Perceptron, Simple RNN, LSTM, Simple CNN, Encoder-Decoder, Self-Attention, Transformer, Autoencoder, GAN, Boltzmann Machine, Hopfield Network, RBF Networks
|
|
153
|
+
- **`Reinforcement/`** — Q-Learning, DQN, DDPG, PPO, SAC
|
|
154
|
+
- **`Bayesian Learning/`** — Bayesian Inference, Bayesian Linear Regression, Bayesian Network, Bayesian Neural Networks, Gibbs Sampling, Metropolis-Hastings, Variational Inference
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## Design philosophy
|
|
159
|
+
|
|
160
|
+
Every implementation applies the same principles:
|
|
161
|
+
|
|
162
|
+
- Explicit loops over vectorised one-liners when clarity improves
|
|
163
|
+
- Model logic, loss computation, and parameter updates in separate functions
|
|
164
|
+
- The package layer (`src/mlscratch`) calls **only** NumPy at runtime — scikit-learn appears solely in the test suite, as a correctness oracle
|
|
165
|
+
- Short files: most standalone scripts are 100–300 lines; package modules favor one well-documented class per concern
|
|
166
|
+
|
|
167
|
+
**This trades raw performance for readability and correctness-by-inspection. That's intentional.**
|
|
168
|
+
|
|
169
|
+
If you're looking for production-speed implementations, use scikit-learn, PyTorch, or JAX. If you want to read the math in code form — or verify it against a reference implementation in the test suite — this is the repo.
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## Recommended learning path
|
|
174
|
+
|
|
175
|
+
If you're working through this systematically:
|
|
176
|
+
|
|
177
|
+
1. Start with `Supervised/LinearRegression` (or `mlscratch.supervised.LinearRegression`) — the simplest possible end-to-end example
|
|
178
|
+
2. Move to `LogisticRegression` — same structure, adds sigmoid + cross-entropy
|
|
179
|
+
3. Then `DecisionTreeClassifier` → `RandomForestClassifier` → `GradientBoostingClassifier`/`AdaBoostClassifier` — the tree-ensemble family, building on a shared CART implementation
|
|
180
|
+
4. Then `Neural Networks/SingleLayerPerceptron` → `MultiLayerPerceptron` — backprop from first principles
|
|
181
|
+
5. Then any of: Unsupervised (PCA → GMM → t-SNE), Reinforcement (Q-Learning → DQN → PPO/SAC), or Bayesian (Naive Bayes → Bayesian Linear Regression → Variational Inference)
|
|
182
|
+
|
|
183
|
+
Each folder/module is reasonably self-contained — jump to any algorithm without reading the others first.
|
|
184
|
+
|
|
185
|
+
---
|
|
186
|
+
|
|
187
|
+
## Repository layout
|
|
188
|
+
|
|
189
|
+
```
|
|
190
|
+
ML-AI-Algorithms-from-scratch/
|
|
191
|
+
│
|
|
192
|
+
├── Supervised/ Standalone scripts: LinearRegression, SVM, etc.
|
|
193
|
+
├── Unsupervised/ Standalone scripts: KMeans++, DBSCAN, t-SNE, etc.
|
|
194
|
+
├── Neural Networks/ Standalone scripts: MLP, LSTM, Transformer, GAN, etc.
|
|
195
|
+
├── Reinforcement/ Standalone scripts: DQN, DDPG, PPO, SAC, etc.
|
|
196
|
+
├── Bayesian Learning/ Standalone scripts: BNN, VI, MCMC, etc.
|
|
197
|
+
│
|
|
198
|
+
├── src/mlscratch/ Pip-installable package
|
|
199
|
+
│ ├── supervised/ Linear models, KNN, trees, ensembles, kernel SVM
|
|
200
|
+
│ ├── unsupervised/ Clustering, dimensionality reduction, association rules
|
|
201
|
+
│ ├── bayesian/ Naive Bayes, BLR, BNN, GP, HMM, Bayesian Networks, Kalman
|
|
202
|
+
│ ├── reinforcement/ Q-Learning, DQN, DDPG, TD3, PPO, SAC
|
|
203
|
+
│ ├── neural/ Perceptrons, autoencoders, RNN/CNN, attention, GAN, ...
|
|
204
|
+
│ ├── metrics/ Classification & regression evaluation metrics
|
|
205
|
+
│ └── preprocessing/ Scalers, encoders, polynomial features, train_test_split
|
|
206
|
+
│
|
|
207
|
+
├── examples/ Runnable end-to-end scripts (no sklearn at runtime)
|
|
208
|
+
├── tests/ 1,153 tests, mirroring the src/mlscratch layout
|
|
209
|
+
├── docs/ Roadmap (MkDocs site planned, see roadmap.md)
|
|
210
|
+
├── pyproject.toml Package metadata + deps
|
|
211
|
+
├── CHANGELOG.md Keep-a-Changelog formatted release history
|
|
212
|
+
├── roadmap.md P0 / P1 / P2 backlog
|
|
213
|
+
├── .github/workflows/ CI: lint → test matrix → build → PyPI release
|
|
214
|
+
└── README.md
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## Contributing
|
|
220
|
+
|
|
221
|
+
The most useful contributions right now:
|
|
222
|
+
|
|
223
|
+
- **Add a standalone script** for an algorithm not yet covered (check the folder first)
|
|
224
|
+
- **Port a standalone script** into `src/mlscratch` with a matching test file in `tests/`
|
|
225
|
+
- **Fix a numerical issue** — some implementations have known edge cases under newer NumPy/SciPy releases (see the known-issues note above; open an issue or PR)
|
|
226
|
+
|
|
227
|
+
Standard flow: fork → branch → PR. CI runs `ruff`, `black --check`, and the full `pytest` suite on every PR. See [`CONTRIBUTING.md`](https://github.com/Mattral/ML-AI-Algorithms-from-scratch/blob/main/CONTRIBUTING.md) for the full guide, and [`roadmap.md`](https://github.com/Mattral/ML-AI-Algorithms-from-scratch/blob/main/roadmap.md) for what's planned next.
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
## Honest scope
|
|
232
|
+
|
|
233
|
+
The standalone scripts under `Supervised/`, `Neural Networks/`, etc. are a **learning reference**, not a performance library: some use toy datasets, a few have hardcoded hyperparameters to keep the code short, and none are tuned for speed at scale.
|
|
234
|
+
|
|
235
|
+
The `src/mlscratch` package is more rigorous (typed, tested, cross-checked against scikit-learn) but is still pure-Python/NumPy — it will not outrun scikit-learn or XGBoost on large datasets, and that was never the goal. The public API is stabilising but may still change between minor versions before a 1.0 release; pin a version if you're building on top of it.
|
|
236
|
+
|
|
237
|
+
---
|
|
238
|
+
|
|
239
|
+
## License
|
|
240
|
+
|
|
241
|
+
Apache 2.0 — see [LICENSE](https://github.com/Mattral/ML-AI-Algorithms-from-scratch/blob/main/LICENSE).
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
mlscratch/__init__.py,sha256=fm4cYp6vqMgdxfT2Q3OSu_lGv_MF8qpdSr46MkrOEZ4,2253
|
|
2
|
+
mlscratch/__main__.py,sha256=zi20Nq_2nTHOg35zt0XnId1IWizGc0Hgvd4j0lYNPkQ,3829
|
|
3
|
+
mlscratch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
mlscratch/bayesian/__init__.py,sha256=EZUj-gNYNFRmnWT83FHkJ2UgQBY6S5se93gzqXzKhPs,2023
|
|
5
|
+
mlscratch/bayesian/bayesian_linear_regression.py,sha256=2xElMdVjDiz4osSKNhskzEOYvF-Yr4_E_aLzbYNLLC4,5372
|
|
6
|
+
mlscratch/bayesian/bayesian_network.py,sha256=bbkZLmSuOC91VT2X9-hS3l3cLnhcMA24GekyA82-oBA,8488
|
|
7
|
+
mlscratch/bayesian/bayesian_nn.py,sha256=qFXZ0br_gfyb5OkeMzcdzRzZg4Ht4OnBzud0Fhk-Tns,10697
|
|
8
|
+
mlscratch/bayesian/gaussian_process.py,sha256=MCUugUi3XaS6QADD4iJbOeQAF8HpWfU2jbMhLuxS0GI,7000
|
|
9
|
+
mlscratch/bayesian/hmm.py,sha256=mLKvKGCIJq0uG366_r9gv3Qi4JCcq-UN0tTeF8rAbJ8,8557
|
|
10
|
+
mlscratch/bayesian/init.py,sha256=egNrvmL6OPD1mMYBXUsOH0Bn7fS2ERpzazQTZgpkEsI,2002
|
|
11
|
+
mlscratch/bayesian/kalman_filter.py,sha256=ZkhqwX2cuVCOGAGXfcGJ5iB3pXJhIvzGF9yHBqvk1BE,5623
|
|
12
|
+
mlscratch/bayesian/naive_bayes.py,sha256=jbUVNyoS5TZjP_qk9yvu2fBqePgFQP3dHzKKvfwwQFU,6788
|
|
13
|
+
mlscratch/metrics/__init__.py,sha256=LL7xAQ4bpzuetghT1E6lnAOIBv52_M63HnbCoILZ-gc,1435
|
|
14
|
+
mlscratch/metrics/classification.py,sha256=9Vdw9hTV6wltzYAN7Wwhdkdzq3P5rLioPXffb3Owg9U,15497
|
|
15
|
+
mlscratch/metrics/regression.py,sha256=mZ6NixRHkxxUw34KQeKJN6mbr2TKeAwvGy6-XxmzlSQ,3088
|
|
16
|
+
mlscratch/neural/__init__.py,sha256=2aR0O8zgLe8og926YEXr5X4bh4YMCa2Dj_Aqh1yE3ho,4061
|
|
17
|
+
mlscratch/neural/attention.py,sha256=nQwGRwHxOdQ9fWb6Md58uWaenM8d0F-ClaI-xVT3LMA,11933
|
|
18
|
+
mlscratch/neural/autoencoder.py,sha256=Bj_uBA89ZlSIg2oFwIaR14LC5LFHZ_jn23jk5R3i548,19739
|
|
19
|
+
mlscratch/neural/boltzmann.py,sha256=YXYJQrH_CivnATKdq7QJ1ySC3tfFvwbJXKy1YTW5TLA,7067
|
|
20
|
+
mlscratch/neural/cnn.py,sha256=l92dXO1RDP4nQJG_8k0AY_7_3ZGSWofldP7bMmVyMvo,18894
|
|
21
|
+
mlscratch/neural/cvnn.py,sha256=XfNpLecLWkuur0hERNdziDG7H4Xd5FOfamqhoMSClcU,10455
|
|
22
|
+
mlscratch/neural/gan.py,sha256=qlImujs7wNRUbps3zvsvymA72crFhcols2bad7Uc2Og,11407
|
|
23
|
+
mlscratch/neural/hopfield.py,sha256=Ocvik_fGxY9JlC9i3iH1_tfOBb00ecbniid416N0WCU,5969
|
|
24
|
+
mlscratch/neural/perceptron.py,sha256=3-czwk2Dj3iBqSuKhn4z6eYTUySBfr2hqjjh_eiCsS4,12860
|
|
25
|
+
mlscratch/neural/rbf_network.py,sha256=ruP1YAw8QB0ddT3E2LKYLqzALq8vOtMPWqjHSTBTM0I,7777
|
|
26
|
+
mlscratch/neural/recurrent.py,sha256=Hn6HMNX8yNBxAJscMP9NcbaBcwpEJALP88iPHOwJNeM,17799
|
|
27
|
+
mlscratch/preprocessing/__init__.py,sha256=6nEeGZplssRSAlfd5nv7dKXwTFL4ZbFJC6SeoclMuYM,872
|
|
28
|
+
mlscratch/preprocessing/encoders.py,sha256=GKzxn8YAyb3XPseK0cop0w8xUXo36oUhw3-OILMUL3c,5246
|
|
29
|
+
mlscratch/preprocessing/model_selection.py,sha256=aSKq4ifHeb6scQmbQOmYOfA87T741QGruaqI8zcLWQk,4415
|
|
30
|
+
mlscratch/preprocessing/polynomial.py,sha256=NIdX2TiyJ24GtgSOunbWlYRIsYTEtF9df4kwgrPRkoo,3852
|
|
31
|
+
mlscratch/preprocessing/scalers.py,sha256=oeEKaubiqiNzAoTK8royGVe-mt2gWmGMiCIQ-LOwNEk,7666
|
|
32
|
+
mlscratch/reinforcement/__init__.py,sha256=Tm5ILITAy39-G2QXkWGS97uVpL_p3voiZzq7De5j6Do,2559
|
|
33
|
+
mlscratch/reinforcement/ddpg.py,sha256=3pQsw9QqLGlHwQJelQwrBUFUGTAFZbaEKEeMLIRYilg,14787
|
|
34
|
+
mlscratch/reinforcement/dqn.py,sha256=giEBoYbkC1lS1N58k-xFhxm2h-oK2Vs_KnfRINZW-_I,11731
|
|
35
|
+
mlscratch/reinforcement/ppo.py,sha256=JrbNrom_0PNAum0HmWJpVGwmqhmS8hA9SR8tGsEwDbk,17256
|
|
36
|
+
mlscratch/reinforcement/q_learning.py,sha256=hDbl-3AoHCo6fMBFpzqx4eu7JfAHkgneI2u4hvxVDHc,11650
|
|
37
|
+
mlscratch/reinforcement/sac.py,sha256=l9IllNt3UKz3Vmfl-8E7oFKYYKh0Kq2mBTlqPZjCJ5M,14863
|
|
38
|
+
mlscratch/reinforcement/utils.py,sha256=Zuu5yKP5vQlUvd7mFrjZ46b4NFHtS0iZSwguE8_Zqtk,18817
|
|
39
|
+
mlscratch/supervised/__init__.py,sha256=8KwLN6UkJXECUvJIBxAv1wa0K5782vdPfXT_tPgg92M,1891
|
|
40
|
+
mlscratch/supervised/_validation.py,sha256=W0krOg90U8Q4NRmzvnOqYdRt7X-odZQHS6tEQsPuz_g,2006
|
|
41
|
+
mlscratch/supervised/adaboost.py,sha256=gvLMEm9JpotJeKtAhlpeu74msk475DBErOp-IlbfHwk,10124
|
|
42
|
+
mlscratch/supervised/decision_tree.py,sha256=9VGp6XgmYJh5sUWMkCgB7vHxBFE5TwTf_LIZL44V6tw,19947
|
|
43
|
+
mlscratch/supervised/gradient_boosting.py,sha256=CIyNQQVSEIJEKeKFAKp1vZ5o1wEdbrdSfjXTd1WcgQU,14302
|
|
44
|
+
mlscratch/supervised/knn.py,sha256=9oVqr0Ju4f4rEketbQ7-8u9FORgmDyYshLfpTBBA2CU,8283
|
|
45
|
+
mlscratch/supervised/lasso_regression.py,sha256=yNAcOhUcedJi4nJrFjbM9379ShrU_HMZ1KbxJHex6HU,4412
|
|
46
|
+
mlscratch/supervised/linear_models.py,sha256=zmX0gVTkP3L-_0sOK81AILJyV7MwZQCOFNEsP7whqMA,16420
|
|
47
|
+
mlscratch/supervised/linear_regression.py,sha256=W5zHoobWgncKQBEhQkiJ5XjnBf03CPLJbOExwl3Ug34,7010
|
|
48
|
+
mlscratch/supervised/logistic_regression.py,sha256=1Dce7XAS9H1AKKZSnJzYgQoHSHz3tkPTJ5FmH8FCu54,4391
|
|
49
|
+
mlscratch/supervised/naive_bayes.py,sha256=jE77rC68JoZqsWkX1nDd0TE4h6GZGwTJ_LsfAy-oNTo,4007
|
|
50
|
+
mlscratch/supervised/random_forest.py,sha256=jMTEeD5RM0uGia0KA5mJ1HfzfCYlJK7C2NAkJTdm1bg,13327
|
|
51
|
+
mlscratch/supervised/ridge_regression.py,sha256=LzCIoD041yhJrBUhqhgU4DEqzU9ZPA2AL_IcSWTearM,3036
|
|
52
|
+
mlscratch/supervised/svm.py,sha256=Vw9IH8KApryPOA5rbSRL_mz9xiVeqADxd4BX_JQVJEE,13753
|
|
53
|
+
mlscratch/unsupervised/__init__.py,sha256=FQ2avw7agabHfycxWOG7itSKs56YEDAgwdGT2B9zVVg,1626
|
|
54
|
+
mlscratch/unsupervised/apriori.py,sha256=VWYO0saUTteAHmhU9nW8rWtqeNojvol_J5CY5Vvij_o,6463
|
|
55
|
+
mlscratch/unsupervised/dbscan.py,sha256=uxBqsBf7VO0J0CIUqJnwPKr4yS5PkEla4NFWA9ddhC8,4551
|
|
56
|
+
mlscratch/unsupervised/gmm.py,sha256=qJbEVahkiXtw87PvqDJZdfv6z2je2X2b4Wq_cjw8agg,6606
|
|
57
|
+
mlscratch/unsupervised/hierarchical_clustering.py,sha256=Md9XPvu7rtgWoIdbBEQb6tkUiWUNDPG-L471ZPowKj4,4699
|
|
58
|
+
mlscratch/unsupervised/ica.py,sha256=khcnaDSKLRg23DBQTu-qDV3MDtDIyJK49n5jN277uyg,5666
|
|
59
|
+
mlscratch/unsupervised/kmeans.py,sha256=AV8PJqQnZFviYJbzfEGpP5_MCmeAOyuV4Wo2UBLGdEs,4776
|
|
60
|
+
mlscratch/unsupervised/kmedoids.py,sha256=EFAeWwnhdKpeQeaGqcWVa-qUDFtorEnYpIACUX5YYfA,4530
|
|
61
|
+
mlscratch/unsupervised/pca.py,sha256=Cmw-YwnZqNwvqsc0YqpSujcL3XXQi4jyb4uNEBuDtN0,3339
|
|
62
|
+
mlscratch/unsupervised/tsne.py,sha256=eRjyPnSFR-d9YQB87uMz1IpA8X-pg6EJmQR1CDOWO38,6657
|
|
63
|
+
scratchkit-0.2.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
64
|
+
scratchkit-0.2.0.dist-info/METADATA,sha256=qEGqiggDbJ-l8PdfLZFNG_a3D_U2VRuy65VK6UNChPg,14941
|
|
65
|
+
scratchkit-0.2.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
66
|
+
scratchkit-0.2.0.dist-info/entry_points.txt,sha256=YD9qNvsRty2Deqfv3yyhBobylDIcMVOI_sPxyZBbNIw,54
|
|
67
|
+
scratchkit-0.2.0.dist-info/top_level.txt,sha256=dfxYKr22FNs5IDnHyo0qUbz2pobXt2M_DqQPu_GARtM,10
|
|
68
|
+
scratchkit-0.2.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mlscratch
|