You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[Custom CSV Dataset](https://github.com/tracel-ai/burn/tree/main/examples/custom-csv-dataset)| Implements a dataset to parse CSV data for a regression task. |
77
-
|[Regression](https://github.com/tracel-ai/burn/tree/main/examples/simple-regression)| Trains a simple MLP on the CSV dataset for the regression task. |
77
+
|[Regression](https://github.com/tracel-ai/burn/tree/main/examples/simple-regression)| Trains a simple MLP on the California Housing dataset to predict the median house value for a district.|
78
78
|[Custom Image Dataset](https://github.com/tracel-ai/burn/tree/main/examples/custom-image-dataset)| Trains a simple CNN on custom image dataset following a simple folder structure. |
79
79
|[Custom Renderer](https://github.com/tracel-ai/burn/tree/main/examples/custom-renderer)| Implements a custom renderer to display the [`Learner`](./building-blocks/learner.md) progress. |
80
80
|[Image Classification Web](https://github.com/tracel-ai/burn/tree/main/examples/image-classification-web)| Image classification web browser demo using Burn, WGPU and WebAssembly. |
@@ -83,7 +83,7 @@ The following additional examples are currently available if you want to check t
83
83
|[Named Tensor](https://github.com/tracel-ai/burn/tree/main/examples/named-tensor)| Performs operations with the experimental `NamedTensor` feature. |
84
84
|[ONNX Import Inference](https://github.com/tracel-ai/burn/tree/main/examples/onnx-inference)| Imports an ONNX model pre-trained on MNIST to perform inference on a sample image with Burn. |
85
85
|[PyTorch Import Inference](https://github.com/tracel-ai/burn/tree/main/examples/pytorch-import)| Imports a PyTorch model pre-trained on MNIST to perform inference on a sample image with Burn. |
86
-
|[Text Classification](https://github.com/tracel-ai/burn/tree/main/examples/text-classification)| Trains a text classification transformer model on the AG News or DbPedia datasets. The trained model can then be used to classify a text sample. |
86
+
|[Text Classification](https://github.com/tracel-ai/burn/tree/main/examples/text-classification)| Trains a text classification transformer model on the AG News or DbPedia datasets. The trained model can then be used to classify a text sample. |
87
87
|[Text Generation](https://github.com/tracel-ai/burn/tree/main/examples/text-generation)| Trains a text generation transformer model on the DbPedia dataset. |
88
88
89
89
For more information on each example, see their respective `README.md` file. Be sure to check out
Copy file name to clipboardexpand all lines: examples/simple-regression/README.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,12 @@
2
2
3
3
The example shows you how to:
4
4
5
-
- Define a custom dataset for regression problems. We implement the [Diabetes Toy Dataset](https://huggingface.co/datasets/Jayabalambika/toy-diabetes)
6
-
from HuggingFace hub. The dataset is also available as part of toy regression datasets in sklearn[datasets](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_diabetes.html).
7
-
- Create a data pipeline from a raw dataset to a batched fast DataLoader with min-max feature scaling.
5
+
- Define a custom dataset for regression problems. We implement the
6
+
[California Housing Dataset](https://huggingface.co/datasets/gvlassis/california_housing) from
7
+
HuggingFace hub. The dataset is also available as part of toy regression datasets in
0 commit comments