StarMist0012 commited on
Commit
a76fd89
·
verified ·
1 Parent(s): 51b08fe

Add files using upload-large-folder tool

Browse files
model/pretrain_final_model.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fadb4e316daf89c3952174aa515de0793999106605a907eb592cb50145515cdf
3
+ size 2359610207
upload_large_folder.ps1 CHANGED
@@ -6,11 +6,26 @@ param(
6
  $ErrorActionPreference = "Stop"
7
  $Root = Split-Path -Parent $MyInvocation.MyCommand.Path
8
 
 
 
 
 
 
 
 
 
 
 
 
9
  if (-not $env:HF_TOKEN) {
 
 
10
  & $HfExe auth whoami *> $null
11
- if ($LASTEXITCODE -ne 0) {
 
 
12
  Write-Host "Not logged in to Hugging Face. Run one of these first:"
13
- Write-Host " hf auth login"
14
  Write-Host "or:"
15
  Write-Host ' $env:HF_TOKEN="YOUR_TOKEN"'
16
  exit 1
 
6
  $ErrorActionPreference = "Stop"
7
  $Root = Split-Path -Parent $MyInvocation.MyCommand.Path
8
 
9
+ $BundledHf = "C:\Users\USER\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\Scripts\hf.exe"
10
+ if ($HfExe -eq "hf" -and -not (Get-Command $HfExe -ErrorAction SilentlyContinue) -and (Test-Path $BundledHf)) {
11
+ $HfExe = $BundledHf
12
+ }
13
+
14
+ if (-not (Get-Command $HfExe -ErrorAction SilentlyContinue) -and -not (Test-Path $HfExe)) {
15
+ Write-Host "Could not find Hugging Face CLI: $HfExe"
16
+ Write-Host "Install it with: pip install -U huggingface_hub[hf_xet]"
17
+ exit 1
18
+ }
19
+
20
  if (-not $env:HF_TOKEN) {
21
+ $oldPreference = $ErrorActionPreference
22
+ $ErrorActionPreference = "Continue"
23
  & $HfExe auth whoami *> $null
24
+ $whoamiExit = $LASTEXITCODE
25
+ $ErrorActionPreference = $oldPreference
26
+ if ($whoamiExit -ne 0) {
27
  Write-Host "Not logged in to Hugging Face. Run one of these first:"
28
+ Write-Host " & `"$HfExe`" auth login"
29
  Write-Host "or:"
30
  Write-Host ' $env:HF_TOKEN="YOUR_TOKEN"'
31
  exit 1