Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
SparseConvNet
Commits
dcd1428d
"vscode:/vscode.git/clone" did not exist on "e602fac449f466d0ed5aa9f8f181f244b6a06078"
Commit
dcd1428d
authored
Dec 18, 2018
by
Benjamin Graham
Browse files
BSD license
parent
879d0b68
Changes
110
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
42 additions
and
420 deletions
+42
-420
LICENSE
LICENSE
+23
-401
build.sh
build.sh
+1
-1
develop.sh
develop.sh
+1
-1
examples/3d_segmentation/data.py
examples/3d_segmentation/data.py
+1
-1
examples/3d_segmentation/download_and_split_data.sh
examples/3d_segmentation/download_and_split_data.sh
+1
-1
examples/3d_segmentation/fully_convolutional.py
examples/3d_segmentation/fully_convolutional.py
+1
-1
examples/3d_segmentation/unet.py
examples/3d_segmentation/unet.py
+1
-1
examples/Assamese_handwriting/ResNet.py
examples/Assamese_handwriting/ResNet.py
+1
-1
examples/Assamese_handwriting/VGGplus.py
examples/Assamese_handwriting/VGGplus.py
+1
-1
examples/Assamese_handwriting/data.py
examples/Assamese_handwriting/data.py
+1
-1
examples/Assamese_handwriting/process.py
examples/Assamese_handwriting/process.py
+1
-1
examples/Assamese_handwriting/process.sh
examples/Assamese_handwriting/process.sh
+1
-1
examples/Chinese_handwriting/ResNet-A-VSC.py
examples/Chinese_handwriting/ResNet-A-VSC.py
+1
-1
examples/Chinese_handwriting/VGG-C.py
examples/Chinese_handwriting/VGG-C.py
+1
-1
examples/Chinese_handwriting/VGG-Cplus.py
examples/Chinese_handwriting/VGG-Cplus.py
+1
-1
examples/Chinese_handwriting/data.py
examples/Chinese_handwriting/data.py
+1
-1
examples/Chinese_handwriting/readPotFiles.py
examples/Chinese_handwriting/readPotFiles.py
+1
-1
examples/ScanNet/data.py
examples/ScanNet/data.py
+1
-1
examples/ScanNet/iou.py
examples/ScanNet/iou.py
+1
-1
examples/ScanNet/prepare_data.py
examples/ScanNet/prepare_data.py
+1
-1
No files found.
LICENSE
View file @
dcd1428d
This diff is collapsed.
Click to expand it.
build.sh
View file @
dcd1428d
...
...
@@ -2,7 +2,7 @@
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
rm
-rf
build/ dist/ sparseconvnet.egg-info
python setup.py
install
...
...
develop.sh
View file @
dcd1428d
...
...
@@ -2,7 +2,7 @@
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
rm
-rf
build/ dist/ sparseconvnet.egg-info sparseconvnet_SCN
*
.so
...
...
examples/3d_segmentation/data.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
numpy
as
np
...
...
examples/3d_segmentation/download_and_split_data.sh
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
#!~/bin/bash
...
...
examples/3d_segmentation/fully_convolutional.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
,
data
...
...
examples/3d_segmentation/unet.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
,
data
...
...
examples/Assamese_handwriting/ResNet.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
...
...
examples/Assamese_handwriting/VGGplus.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
...
...
examples/Assamese_handwriting/data.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
,
torch
.
utils
.
data
...
...
examples/Assamese_handwriting/process.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
...
...
examples/Assamese_handwriting/process.sh
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
#!/bin/bash
set
-e
...
...
examples/Chinese_handwriting/ResNet-A-VSC.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
...
...
examples/Chinese_handwriting/VGG-C.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
...
...
examples/Chinese_handwriting/VGG-Cplus.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
...
...
examples/Chinese_handwriting/data.py
View file @
dcd1428d
...
...
@@ -2,7 +2,7 @@
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
...
...
examples/Chinese_handwriting/readPotFiles.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
os
...
...
examples/ScanNet/data.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
# Options
...
...
examples/ScanNet/iou.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
torch
,
numpy
as
np
...
...
examples/ScanNet/prepare_data.py
View file @
dcd1428d
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# This source code is licensed under the
BSD-style
license found in the
# LICENSE file in the root directory of this source tree.
import
glob
,
plyfile
,
numpy
as
np
,
multiprocessing
as
mp
,
torch
...
...
Prev
1
2
3
4
5
6
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment