Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AIcrowd
practice-challenges
aicrowd_ADCLK_challenge
Commits
6ca122d3
Commit
6ca122d3
authored
May 16, 2020
by
ashivani
Browse files
removed /tmp in baseline
parent
69c2c504
Pipeline
#4071
passed with stages
in 5 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
baselines/ADCLK_baseline.ipynb
View file @
6ca122d3
...
...
@@ -245,11 +245,11 @@
%% Cell type:code id: tags:
```
python
submission
=
pd
.
DataFrame
(
submission
)
submission
.
to_csv
(
'
/tmp/
submission.csv'
,
header
=
[
'click'
],
index
=
False
)
submission
.
to_csv
(
'submission.csv'
,
header
=
[
'click'
],
index
=
False
)
```
%% Cell type:markdown id: tags:
Note: Do take a look at the submission format.The submission file should contain a header.
...
...
@@ -261,11 +261,11 @@
%% Cell type:code id: tags:
```
python
try
:
from
google.colab
import
files
files
.
download
(
'
/tmp/
submission.csv'
)
files
.
download
(
'submission.csv'
)
except
:
print
(
"only in colab"
)
```
%% Cell type:markdown id: tags:
...
...
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