Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6004251

Browse files
committed
Update homepage messaging from hyparquet to hyperparam space
1 parent7197615 commit6004251

File tree

7 files changed

+7
-91
lines changed

7 files changed

+7
-91
lines changed

‎index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<htmllang="en">
33
<head>
44
<metacharset="UTF-8">
5-
<title>HyperparamParquetViewer</title>
5+
<title>Hyperparam Viewer</title>
66
<linkrel="stylesheet"href="https://fonts.googleapis.com/css2?family=Mulish:wght@400;600&display=swap"/>
77
<metaname="description"content="hyperparam is the missing UI for machine learning"/>
88
<linkhref="/favicon.png"rel="icon"/>

‎public/audio.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

‎src/assets/azure.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

‎src/assets/git.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

‎src/assets/s3.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

‎src/components/Home.tsx

Lines changed: 5 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
import{OAuthResult}from'@huggingface/hub'
2-
import{FormEvent,useRef}from'react'
2+
import{FormEvent}from'react'
33
importHFLoginIconfrom'../assets/sign-in-with-huggingface-lg.svg'
44
import{login,logout}from'../lib/auth.js'
55
import{changeQueryString}from'../lib/huggingfaceSource.js'
6-
importLinkfrom'./Link.js'
76
importSearchfrom'./Search.js'
87

98
/**
109
* Home page
1110
*/
1211
exportdefaultfunctionHome({ auth}:{auth:OAuthResult|undefined}){
13-
constaudioRef=useRef<HTMLAudioElement>(null)
1412

1513
functiononUrlSubmit(event:FormEvent<HTMLFormElement>){
1614
event.preventDefault()
@@ -20,41 +18,11 @@ export default function Home({ auth }: { auth: OAuthResult | undefined }) {
2018

2119
return(
2220
<divid="welcome">
23-
<h1>hyparquet</h1>
24-
<sub>
25-
/haɪ pɑːrˈkeɪ/
26-
<img
27-
src="audio.svg"
28-
alt="play hyparquet pronunciation"
29-
height="18"
30-
width="18"
31-
onClick={()=>{
32-
audioRef.current?.play().catch(()=>undefined)
33-
}}
34-
/>
35-
</sub>
36-
<audioref={audioRef}src="hyparquet.mp3"></audio>
37-
<h2>in-browser parquet file reader</h2>
21+
<h1>Hyperparam</h1>
22+
<h2>Advanced Dataset Viewer Space</h2>
3823
<p>
39-
<ahref="https://www.npmjs.com/package/hyparquet">
40-
<img
41-
src="https://img.shields.io/npm/v/hyparquet"
42-
alt="npm hyparquet"
43-
/>
44-
</a>{' '}
45-
<ahref="https://github.com/hyparam/hyparquet">
46-
<img
47-
src="https://img.shields.io/github/stars/hyparam/hyparquet?style=social"
48-
alt="star hyparquet"
49-
/>
50-
</a>
51-
</p>
52-
<p>
53-
Online demo of{' '}
54-
<ahref="https://github.com/hyparam/hyparquet">hyparquet</a>: a parser
55-
for apache parquet files. Uses{' '}
56-
<ahref="https://github.com/hyparam/hightable">hightable</a> for high
57-
performance windowed table viewing.
24+
Hyperparam is a high performance dataset viewer for parquet files.
25+
It leverages the power of parquet files and http ranged get requests to provide a fast and efficient way to view large datasets in the browser.
5826
</p>
5927

6028
<section>
@@ -86,38 +54,6 @@ export default function Home({ auth }: { auth: OAuthResult | undefined }) {
8654
<inputname="url"defaultValue="https://huggingface.co/datasets/codeparrot/github-code/resolve/main/data/train-00000-of-01126.parquet"style={{width:'100%'}}type="url"/>
8755
<buttonstyle={{fontSize:'1rem',padding:'0 0.5rem'}}type="submit">Open</button>
8856
</form>
89-
90-
<p>
91-
<p>Example files:</p>
92-
<ulclassName="quick-links">
93-
<li>
94-
<Link
95-
className="aws"
96-
url="https://hyperparam-public.s3.amazonaws.com/wiki-en-00000-of-00041.parquet"
97-
>
98-
s3://wiki-en-00000-of-00041.parquet
99-
</Link>
100-
</li>
101-
<li>
102-
<Link
103-
className="azure"
104-
url="https://hyperparam.blob.core.windows.net/hyperparam/starcoderdata-js-00000-of-00065.parquet"
105-
>
106-
azure://starcoderdata-js-00000-of-00065.parquet
107-
</Link>
108-
</li>
109-
<li>
110-
<LinkclassName="huggingface"url="https://huggingface.co/datasets/codeparrot/github-code/resolve/main/data/train-00000-of-01126.parquet">
111-
huggingface://github-code-00000-of-01126.parquet
112-
</Link>
113-
</li>
114-
<li>
115-
<LinkclassName="github"url="https://raw.githubusercontent.com/hyparam/hyparquet/master/test/files/rowgroups.parquet">
116-
github://rowgroups.parquet
117-
</Link>
118-
</li>
119-
</ul>
120-
</p>
12157
</section>
12258
</div>
12359
)

‎src/styles/index.css

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -617,17 +617,9 @@ main {
617617
.huggingface {
618618
background:url('../assets/huggingface.svg') no-repeat8px center;
619619
}
620-
.github {
621-
background:url('../assets/git.svg') no-repeat8px center;
622-
}
623-
.aws {
624-
background:url('../assets/s3.svg') no-repeat8px center;
625-
}
626-
.azure {
627-
background:url('../assets/azure.svg') no-repeat8px center;
628-
}
629620

630621
h1 {
622+
font-family:'Century Gothic','Helvetica Neue', Helvetica, Arial, sans-serif;
631623
font-size:22pt;
632624
}
633625
h2 {

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp