forked from apple/ml-kpconvx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrain_ScanObjectNN.sh
More file actions
executable file
·38 lines (28 loc) · 897 Bytes
/
train_ScanObjectNN.sh
File metadata and controls
executable file
·38 lines (28 loc) · 897 Bytes
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
#!/bin/bash
#
# For licensing see accompanying LICENSE file.
# Copyright (C) 2024 Apple Inc. All Rights Reserved.
#
# Go to the root directory
cd KPConvX
export PYTHONPATH=$PWD:$PYTHONPATH
############
# Parameters
############
# You can change the path to your dataset here
ARGS="--dataset_path $PWD/../data/ScanObjectNN/main_split"
# Here you can define arguments to change network/training parameters.
# For example:
# ARGS="$ARGS --in_radius 1.5"
# ARGS="$ARGS --layer_blocks 3 3 9 12 3"
# ARGS="$ARGS --batch_size 32 --accum_batch 2"
# Have a look at the train.py file to see all available parameters.
# You can also change the values of these parameters directly in the train.py file.
###############
# Main function
###############
# Define the experiment and script to run
EXP="ScanObjectNN"
SCRIPT="train_ScanObj.py"
# Start the training
python3 experiments/$EXP/$SCRIPT $ARGS