Asif Ahmad commited on
Commit
86b340d
1 Parent(s): c7a9443

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ```
3
+ from huggingface_hub import HfApi
4
+ api = HfApi()
5
+ api.upload_file(
6
+ path_or_fileobj="/path/to/local/folder/README.md",
7
+ path_in_repo="README.md",
8
+ repo_id="asifhugs/Subnet8",
9
+ repo_type="model",
10
+ )
11
+ ```