Sampson2022 commited on
Commit
873f5f2
·
1 Parent(s): 23068e2

Update demo2.py

Browse files
Files changed (1) hide show
  1. demo2.py +6 -2
demo2.py CHANGED
@@ -48,9 +48,13 @@ _LICENSE = ""
48
  # TODO: Add link to the official dataset URLs here
49
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
50
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
 
 
 
51
  _URLS = {
52
- "train": "train.csv",
53
- "test": "test.csv",
 
54
  }
55
 
56
 
 
48
  # TODO: Add link to the official dataset URLs here
49
  # The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
50
  # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
51
+ train_url = "https://dev-s3.outer.fuxi.netease.com/models/075d0c8a362646ad98a0c7a70286e93a/train.csv?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20220620T023414Z&X-Amz-SignedHeaders=host&X-Amz-Expires=14515&X-Amz-Credential=HHRC8E0HQWZYBIVXJSZE%2F20220620%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=10b7e6d8b179ef7849241fbadac6d29be4723fc25d15a5d5bd541082e2b81931"
52
+ test_url = "https://dev-s3.outer.fuxi.netease.com/models/075d0c8a362646ad98a0c7a70286e93a/test.csv?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20220620T023414Z&X-Amz-SignedHeaders=host&X-Amz-Expires=14515&X-Amz-Credential=HHRC8E0HQWZYBIVXJSZE%2F20220620%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=11c3ae701c7aa1e2444e479b76eb1a1bf1258c8afa2f67ab759beb3956350e2e"
53
+
54
  _URLS = {
55
+
56
+ "train": train_url,
57
+ "test": test_url,
58
  }
59
 
60