File size: 3,540 Bytes
cc7658d
fcccc22
 
 
 
 
 
 
 
 
 
 
e1d89d9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fcccc22
 
 
 
 
 
 
 
 
 
 
e1d89d9
fcccc22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { createRepo, commit, whoAmI, __internal_sha256 } from "@huggingface/hub-esm";
const c = console;
const FILES_TO_UPLOAD = [
    `${window.location.origin}/mobilenet/model.json`,
    `${window.location.origin}/mobilenet/group1-shard1of2`,
    `${window.location.origin}/mobilenet/group1-shard2of2`,
    `${window.location.origin}/mobilenet/coffee.jpg`,
    `${window.location.origin}/mobilenet/README.md`,
];
function filenameFromURL(url) {
    return url.substring(url.lastIndexOf("/") + 1);
}

const lfsContent = "0123456789".repeat(1_000_000);

async function test() {
  const blob = new Blob([lfsContent]);

		const iterator = __internal_sha256(blob, { useWebWorker: { minSize: 1 } });
		// Get return value of the generator
		while (1) {
			const { done, value } = await iterator.next();
			if (done) {
				console.log("one", value);

				const builtInResult = await crypto.subtle.digest("SHA-256", await blob.arrayBuffer());
				const hex =
					builtInResult instanceof ArrayBuffer
						? new Uint8Array(builtInResult).reduce((acc, i) => acc + i.toString(16).padStart(2, "0"), "")
						: builtInResult;

              
				console.log("two", hex);
				break;
			}

		}

}
window.document.addEventListener("DOMContentLoaded", () => {
    const tokenEl = document.querySelector("#token");
    const repoNameEl = document.querySelector("#repo_name");
    const button = document.querySelector("#submit");
    const output = document.querySelector("#logs");
    const form = document.getElementsByTagName("form")[0];
    const storedToken = window.localStorage.getItem("hf_token");
    if (storedToken) {
        tokenEl.value = storedToken;
        /// ^to help in dev.
    }
  test()
    repoNameEl.value = `tfjs-mobilenet-${Date.now() % 1_000}`;
    /// "random" repo name
    form.addEventListener("submit", async (event) => {
        event.preventDefault();
        const token = tokenEl.value;
        const repoName = repoNameEl.value;
        if (!token || !repoName) {
            alert("You need a token and a repo name");
            return;
        }
        button.setAttribute("disabled", "disabled");
        const credentials = {
            accessToken: token,
        };
        try {
            const { name: username } = await whoAmI({ credentials });
            const name = `${username}/${repoName}`;
            const { repoUrl } = await createRepo({
                repo: {
                    type: "model",
                    name,
                },
                credentials,
            });
            const operations = await Promise.all(FILES_TO_UPLOAD.map(async (file) => {
                return {
                    operation: "addOrUpdate",
                    path: filenameFromURL(file),
                    // upload remote file
                    content: new URL(file),
                };
            }));
            const commitOutput = await commit({
                repo: {
                    type: "model",
                    name,
                },
                credentials,
                title: "upload model",
                operations,
            });
            c.log(commitOutput);
            button.insertAdjacentHTML("afterend", `<div class="text-green-500 mb-6">🎉 Upload complete! Model page is <a target="_blank" class="text-bold underline" href="${repoUrl}">${repoUrl}</a></div>`);
        }
        catch (err) {
            console.error(err);
            output.append("\n" + err);
        }
        button.removeAttribute("disabled");
    });
});