vobecant commited on
Commit
0174f16
·
1 Parent(s): dbb9fc0

Initial commit.

Browse files
Files changed (2) hide show
  1. .idea/workspace.xml +10 -2
  2. app.py +1 -1
.idea/workspace.xml CHANGED
@@ -2,6 +2,7 @@
2
  <project version="4">
3
  <component name="ChangeListManager">
4
  <list default="true" id="5dd22f22-8223-4d55-99f9-57d1e00622d7" name="Default Changelist" comment="Initial commit.">
 
5
  <change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
6
  </list>
7
  <option name="SHOW_DIALOG" value="false" />
@@ -50,7 +51,7 @@
50
  <option name="number" value="Default" />
51
  <option name="presentableId" value="Default" />
52
  <updated>1647350746642</updated>
53
- <workItem from="1647350750956" duration="6650000" />
54
  </task>
55
  <task id="LOCAL-00001" summary="Initial commit.">
56
  <created>1647352693910</created>
@@ -178,7 +179,14 @@
178
  <option name="project" value="LOCAL" />
179
  <updated>1647357429098</updated>
180
  </task>
181
- <option name="localTasksCounter" value="19" />
 
 
 
 
 
 
 
182
  <servers />
183
  </component>
184
  <component name="TypeScriptGeneratedFilesManager">
 
2
  <project version="4">
3
  <component name="ChangeListManager">
4
  <list default="true" id="5dd22f22-8223-4d55-99f9-57d1e00622d7" name="Default Changelist" comment="Initial commit.">
5
+ <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
6
  <change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
7
  </list>
8
  <option name="SHOW_DIALOG" value="false" />
 
51
  <option name="number" value="Default" />
52
  <option name="presentableId" value="Default" />
53
  <updated>1647350746642</updated>
54
+ <workItem from="1647350750956" duration="7343000" />
55
  </task>
56
  <task id="LOCAL-00001" summary="Initial commit.">
57
  <created>1647352693910</created>
 
179
  <option name="project" value="LOCAL" />
180
  <updated>1647357429098</updated>
181
  </task>
182
+ <task id="LOCAL-00019" summary="Initial commit.">
183
+ <created>1647357507081</created>
184
+ <option name="number" value="00019" />
185
+ <option name="presentableId" value="LOCAL-00019" />
186
+ <option name="project" value="LOCAL" />
187
+ <updated>1647357507081</updated>
188
+ </task>
189
+ <option name="localTasksCounter" value="20" />
190
  <servers />
191
  </component>
192
  <component name="TypeScriptGeneratedFilesManager">
app.py CHANGED
@@ -50,7 +50,7 @@ def download_file_from_google_drive(destination=WEIGHTS):
50
 
51
  def download_weights():
52
  # if not os.path.exists(WEIGHTS):
53
- url = 'https://drive.google.com/file/d/1v6_d2KHzRROsjb_cgxU7jvmnGVDXeBia/view?usp=sharing'
54
  import urllib.request
55
  urllib.request.urlretrieve(url, WEIGHTS)
56
 
 
50
 
51
  def download_weights():
52
  # if not os.path.exists(WEIGHTS):
53
+ url = 'https://data.ciirc.cvut.cz/public/projects/2022DriveAndSegment/checkpoint_train_ep0_21.75miouHun.pth'
54
  import urllib.request
55
  urllib.request.urlretrieve(url, WEIGHTS)
56