jacklangerman commited on
Commit
a3e53d4
·
verified ·
1 Parent(s): adbabe2

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +12 -2
  2. params.json +23 -0
README.md CHANGED
@@ -1,4 +1,14 @@
1
- # My Cool Submission 2025
2
 
3
- This repo contains a submission to the [S23DR Challenge](https://huggingface.co/spaces/usm3d/S23DR) (part of the [USM3D](https://usm3d.github.io/) workshop at CVPR2025). It was prepared by [jacklangerman](https://huggingface.co/jacklangerman).
 
 
 
 
 
 
 
 
 
 
4
 
 
1
+ # Empty solution example for the S23DR competition
2
 
3
+ This repo provides a minimalistic example of a valid, but empty submission to S23DR competition.
4
+ We recommend you take a look at [this example](https://huggingface.co/usm3d/handcrafted_baseline_submission),
5
+ which implements some primitive algorithms and provides useful I/O and visualization functions.
6
+
7
+ This example seeks to simply provide minimal code which succeeds at reading the dataset and producing a solution (in this case two vertices at the origin and edge of zero length connecting them).
8
+
9
+ `script.py` - is the main file which is run by the competition space. It should produce `submission.parquet` as the result of the run. Please see the additional comments in the `script.py` file.
10
+
11
+ ---
12
+ license: apache-2.0
13
+ ---
14
 
params.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "competition_id": "usm3d/S23DR2025",
3
+ "competition_type": "script",
4
+ "metric": "custom",
5
+ "token": "hf_******",
6
+ "team_id": "xxxxxxxxx_your_team_name_xxxxxxxxxx",
7
+ "submission_id": "xxxxxxxxx_your_sub_id_xxxxxxxxxx",
8
+ "submission_id_col": "order_id",
9
+ "submission_cols": [
10
+ "order_id",
11
+ "wf_vertices",
12
+ "wf_edges",
13
+ "wf_classifications"
14
+ ],
15
+ "submission_rows": 267,
16
+ "output_path": "/tmp/model",
17
+ "submission_repo": "<your submission repo>",
18
+ "time_limit": 7200,
19
+ "dataset": "usm3d/hoho25k_test_x",
20
+ "submission_filenames": [
21
+ "submission.parquet"
22
+ ]
23
+ }