system HF Staff commited on
Commit
3592470
·
verified ·
1 Parent(s): 5fded7f

Deploy hyper3labs/HyperView from Hyper3Labs/hyperview-spaces@e95a262

Browse files
Files changed (3) hide show
  1. Dockerfile +1 -1
  2. README.md +3 -3
  3. demo.py +1 -1
Dockerfile CHANGED
@@ -22,7 +22,7 @@ WORKDIR $HOME/app
22
  RUN pip install --upgrade pip
23
 
24
  ARG HYPERVIEW_VERSION=1.1.1
25
- ARG HYPER_MODELS_VERSION=0.3.1
26
 
27
  # Install CPU-only PyTorch first so the Space does not pull the default CUDA bundle,
28
  # then pin released HyperView packages so Docker cache cannot hold an older release.
 
22
  RUN pip install --upgrade pip
23
 
24
  ARG HYPERVIEW_VERSION=1.1.1
25
+ ARG HYPER_MODELS_VERSION=0.3.2
26
 
27
  # Install CPU-only PyTorch first so the Space does not pull the default CUDA bundle,
28
  # then pin released HyperView packages so Docker cache cannot hold an older release.
README.md CHANGED
@@ -16,7 +16,7 @@ custom introduction panel built with the public HyperView panel SDK:
16
 
17
  - CLIP (`openai/clip-vit-base-patch32`) in Euclidean 3D
18
  - CLIP (`openai/clip-vit-base-patch32`) in spherical 3D
19
- - Hyper3-CLIP (`hyper3-clip-v0.5`) in hyperbolic Poincare 2D
20
 
21
  The sample is drawn from `evendrow/inat24_tiny`, a compact iNaturalist 2024
22
  subset with 1,000 images, 100 species, and taxonomy metadata. The visible label
@@ -27,7 +27,7 @@ rights holder.
27
  The Docker image installs released packages from PyPI:
28
 
29
  - `hyperview==1.1.1`
30
- - `hyper-models[ml]==0.3.1`
31
 
32
  ## Dataset
33
 
@@ -64,6 +64,6 @@ When copying this folder for another dataset:
64
  This folder is synchronized to `hyper3labs/HyperView` by GitHub Actions from
65
  the `hyperview-spaces` deployment repository.
66
 
67
- Because `hyper3-clip-v0.5` is gated on Hugging Face, the running Space needs an
68
  `HF_TOKEN` Space secret with read access to the model. The GitHub deployment
69
  credential does not become a runtime secret automatically.
 
16
 
17
  - CLIP (`openai/clip-vit-base-patch32`) in Euclidean 3D
18
  - CLIP (`openai/clip-vit-base-patch32`) in spherical 3D
19
+ - Hyper3-CLIP (`hyper3-clip-v1`) in hyperbolic Poincare 2D
20
 
21
  The sample is drawn from `evendrow/inat24_tiny`, a compact iNaturalist 2024
22
  subset with 1,000 images, 100 species, and taxonomy metadata. The visible label
 
27
  The Docker image installs released packages from PyPI:
28
 
29
  - `hyperview==1.1.1`
30
+ - `hyper-models[ml]==0.3.2`
31
 
32
  ## Dataset
33
 
 
64
  This folder is synchronized to `hyper3labs/HyperView` by GitHub Actions from
65
  the `hyperview-spaces` deployment repository.
66
 
67
+ Because `hyper3-clip-v1` is gated on Hugging Face, the running Space needs an
68
  `HF_TOKEN` Space secret with read access to the model. The GitHub deployment
69
  credential does not become a runtime secret automatically.
demo.py CHANGED
@@ -56,7 +56,7 @@ EMBEDDING_LAYOUTS = [
56
  {
57
  "name": "Hyper3-CLIP",
58
  "provider": "hyper-models",
59
- "model": "hyper3-clip-v0.5",
60
  "layouts": ["poincare:2d"],
61
  },
62
  ]
 
56
  {
57
  "name": "Hyper3-CLIP",
58
  "provider": "hyper-models",
59
+ "model": "hyper3-clip-v1",
60
  "layouts": ["poincare:2d"],
61
  },
62
  ]