Spaces:
Sleeping
Sleeping
rzimmerdev
commited on
Commit
•
ae1ea8a
1
Parent(s):
d5f4774
Added boilerplate project structure
Browse files- .gitignore +2 -0
- data/download.py +16 -0
- main.py +0 -0
- notebooks/preprocessing.ipynb +37 -0
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*.idea
|
2 |
+
*.vscode
|
data/download.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Script to automatically download and cache dataset
|
2 |
+
# Usage: python download.py
|
3 |
+
#
|
4 |
+
# To learn more about the dataset, access:
|
5 |
+
# https://www.cityscapes-dataset.com/
|
6 |
+
import os
|
7 |
+
import sys
|
8 |
+
|
9 |
+
|
10 |
+
# Download and cache dataset
|
11 |
+
def main():
|
12 |
+
pass
|
13 |
+
|
14 |
+
|
15 |
+
if __name__ == "__main__":
|
16 |
+
main()
|
main.py
ADDED
File without changes
|
notebooks/preprocessing.ipynb
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": null,
|
6 |
+
"metadata": {
|
7 |
+
"collapsed": true,
|
8 |
+
"pycharm": {
|
9 |
+
"name": "#%%\n"
|
10 |
+
}
|
11 |
+
},
|
12 |
+
"outputs": [],
|
13 |
+
"source": []
|
14 |
+
}
|
15 |
+
],
|
16 |
+
"metadata": {
|
17 |
+
"kernelspec": {
|
18 |
+
"display_name": "Python 3",
|
19 |
+
"language": "python",
|
20 |
+
"name": "python3"
|
21 |
+
},
|
22 |
+
"language_info": {
|
23 |
+
"codemirror_mode": {
|
24 |
+
"name": "ipython",
|
25 |
+
"version": 2
|
26 |
+
},
|
27 |
+
"file_extension": ".py",
|
28 |
+
"mimetype": "text/x-python",
|
29 |
+
"name": "python",
|
30 |
+
"nbconvert_exporter": "python",
|
31 |
+
"pygments_lexer": "ipython2",
|
32 |
+
"version": "2.7.6"
|
33 |
+
}
|
34 |
+
},
|
35 |
+
"nbformat": 4,
|
36 |
+
"nbformat_minor": 0
|
37 |
+
}
|