This commit is contained in:
publicmatt
2024-04-06 13:02:31 -07:00
commit 24a0c6196f
40 changed files with 1716 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
[app]
host = "127.0.0.1"
port = 8001

View File

@@ -0,0 +1,4 @@
[data]
train_path = "/path/to/data/mnist_train.csv"
in_channels = 1
num_classes = 10

View File

@@ -0,0 +1,3 @@
[model]
hidden_size = 8
name = 'vgg11'

View File

@@ -0,0 +1,4 @@
[paths]
repo = "/path/to/root"
app = "/path/to/root/ml_pipeline"
data = "/path/to/root/data"

View File

@@ -0,0 +1,8 @@
[training]
batch_size = 16
epochs = 10
learning_rate = 0.01
device = 'cpu'
# examples = 50
examples = -1