Upload folder using huggingface_hub
Browse files- .gitattributes +7 -0
- genie-t2t-run +3 -0
- htp-model-config-llama32-1b-gqa.json +67 -0
- htp_backend_ext_config.json +18 -0
- libGenie.so +3 -0
- libQnnHtp.so +3 -0
- libQnnHtpNetRunExtensions.so +3 -0
- libQnnHtpV79Skel.so +3 -0
- libQnnHtpV79Stub.so +3 -0
- libQnnSystem.so +3 -0
- lprompt_1024.txt +10 -0
- models/weight_sharing_model_1_of_1.serialized.bin +3 -0
- tokenizer.json +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,10 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
genie-t2t-run filter=lfs diff=lfs merge=lfs -text
|
37 |
+
libGenie.so filter=lfs diff=lfs merge=lfs -text
|
38 |
+
libQnnHtp.so filter=lfs diff=lfs merge=lfs -text
|
39 |
+
libQnnHtpNetRunExtensions.so filter=lfs diff=lfs merge=lfs -text
|
40 |
+
libQnnHtpV79Skel.so filter=lfs diff=lfs merge=lfs -text
|
41 |
+
libQnnHtpV79Stub.so filter=lfs diff=lfs merge=lfs -text
|
42 |
+
libQnnSystem.so filter=lfs diff=lfs merge=lfs -text
|
genie-t2t-run
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ede6e2b3a7c2153b6bf1c0db5ff96a0e79e81fd030c04ebf8cd11978e01c9576
|
3 |
+
size 556392
|
htp-model-config-llama32-1b-gqa.json
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"dialog": {
|
3 |
+
"version": 1,
|
4 |
+
"type": "basic",
|
5 |
+
"max-num-tokens": 200,
|
6 |
+
"context": {
|
7 |
+
"version": 1,
|
8 |
+
"size": 1024,
|
9 |
+
"n-vocab": 128256,
|
10 |
+
"bos-token": 128000,
|
11 |
+
"eos-token": 128009,
|
12 |
+
"pad-token": 128004
|
13 |
+
},
|
14 |
+
"sampler": {
|
15 |
+
"version": 1,
|
16 |
+
"seed": 42,
|
17 |
+
"temp": 0.8,
|
18 |
+
"top-k": 1,
|
19 |
+
"top-p": 0.95
|
20 |
+
},
|
21 |
+
"tokenizer": {
|
22 |
+
"version": 1,
|
23 |
+
"path": "tokenizer.json"
|
24 |
+
},
|
25 |
+
"engine": {
|
26 |
+
"version": 1,
|
27 |
+
"n-threads": 3,
|
28 |
+
"backend": {
|
29 |
+
"version": 1,
|
30 |
+
"type": "QnnHtp",
|
31 |
+
"QnnHtp": {
|
32 |
+
"version": 1,
|
33 |
+
"use-mmap": true,
|
34 |
+
"spill-fill-bufsize": 0,
|
35 |
+
"mmap-budget": 0,
|
36 |
+
"poll": true,
|
37 |
+
"cpu-mask": "0xe0",
|
38 |
+
"kv-dim": 64,
|
39 |
+
"allow-async-init": true
|
40 |
+
},
|
41 |
+
"extensions": "htp_backend_ext_config.json"
|
42 |
+
},
|
43 |
+
"model": {
|
44 |
+
"version": 1,
|
45 |
+
"type": "binary",
|
46 |
+
"binary": {
|
47 |
+
"version": 1,
|
48 |
+
"ctx-bins": [
|
49 |
+
"models/weight_sharing_model_1_of_1.serialized.bin"
|
50 |
+
]
|
51 |
+
},
|
52 |
+
"positional-encoding": {
|
53 |
+
"type": "rope",
|
54 |
+
"rope-dim": 32,
|
55 |
+
"rope-theta": 500000,
|
56 |
+
"rope-scaling": {
|
57 |
+
"rope-type": "llama3",
|
58 |
+
"factor": 32.0,
|
59 |
+
"low-freq-factor": 1.0,
|
60 |
+
"high-freq-factor": 4.0,
|
61 |
+
"original-max-position-embeddings": 8192
|
62 |
+
}
|
63 |
+
}
|
64 |
+
}
|
65 |
+
}
|
66 |
+
}
|
67 |
+
}
|
htp_backend_ext_config.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"devices": [
|
3 |
+
{
|
4 |
+
"soc_id": 69,
|
5 |
+
"dsp_arch": "v79",
|
6 |
+
"cores": [
|
7 |
+
{
|
8 |
+
"core_id": 0,
|
9 |
+
"perf_profile": "burst",
|
10 |
+
"rpc_control_latency": 100
|
11 |
+
}
|
12 |
+
]
|
13 |
+
}
|
14 |
+
],
|
15 |
+
"memory": {
|
16 |
+
"mem_type": "shared_buffer"
|
17 |
+
}
|
18 |
+
}
|
libGenie.so
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7bfb7c39b1d771bd0f88c1e0f2156734c84484228312be7ea6cd3d566e8d6b62
|
3 |
+
size 6768464
|
libQnnHtp.so
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f58c93cded3a6dabeab6cbe0b9814ced571dabdfe607dfe3b52e122745c4cee7
|
3 |
+
size 2395776
|
libQnnHtpNetRunExtensions.so
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:994c19cfcddbc7f1533987c062bf197a3c78052114db36648162c5b00d5fd018
|
3 |
+
size 751608
|
libQnnHtpV79Skel.so
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4ecab37e6b0b5cde9ae403335d9f6da33bc5089ccfc8d130fb780e27275202ef
|
3 |
+
size 9536980
|
libQnnHtpV79Stub.so
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f58cefc8b94e637853200f27f6b68e1ce7544d46e158aad5e31382d42d40259f
|
3 |
+
size 709608
|
libQnnSystem.so
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1c0237c73aaf0ab422b2a2986ade138435c9a82623108e75c5f3a23db8771806
|
3 |
+
size 2528832
|
lprompt_1024.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<|start_header_id|>system<|end_header_id|>
|
2 |
+
|
3 |
+
You are a helpful assistant.<|eot_id|><|begin_of_text|><|start_header_id|>user<|end_header_id|>
|
4 |
+
London, the capital of the United Kingdom, is a global metropolis defined by its millennia-old history, profound cultural diversity, and its role as a preeminent center for international finance and commerce. With a population exceeding nine million, it is the largest city in the UK and a major node in the world's economic and cultural network. It boasts an unparalleled collection of landmarks, from the historic Tower of London and Westminster Abbey to the modern Shard and the London Eye. Additionally, London is renowned for its world-class museums, theaters in the West End, and its sprawling Royal Parks. The city's vast and varied boroughs, such as the affluent Kensington, the governmental hub of Westminster, and the vibrant, creative districts of the East End, each contribute a unique character to the urban tapestry. London's powerhouse economy is historically anchored in financial services, but it also thrives on technology, creative industries, tourism, and higher education. How has London’s imperial legacy, its continuous evolution as a multicultural society, and its post-Brexit economic realignment shaped its identity as a leading global city, and what future challenges and opportunities will define its ability to maintain its influence and livability?
|
5 |
+
|
6 |
+
Given the immense complexity and interconnectedness of London's attributes, numerous questions arise regarding its future path. How does London manage the profound tension between being a haven for global capital and addressing one of the most severe housing affordability crises in the world? What urban planning and policy strategies are being deployed to combat chronic issues like air pollution and traffic congestion within its historic infrastructure? In the context of its strategic role as a global financial center, how is the city navigating the economic and regulatory fallout of Brexit to preserve its competitive edge against rivals in Europe and Asia? Furthermore, how does London's unique status as a city of global cultures influence its approach to social integration and community resilience? What initiatives are in place to protect and celebrate its diverse cultural heritage amidst the pressures of gentrification and redevelopment? How do London’s elite universities and research centers, such as Imperial College and LSE, fuel its innovation ecosystem, and what role do they play in tackling both local and global problems? Culturally, how does the city leverage its historical narrative and iconic institutions to drive tourism and economic growth while grappling with a critical re-evaluation of its colonial past? Finally, considering the escalating threats of climate change and technological disruption, what measures is London taking to build a sustainable and resilient future for its citizens and infrastructure? How do these efforts align with its broader goals of economic prosperity, social equity, and environmental stewardship?
|
7 |
+
|
8 |
+
London's financial district, known as the 'City of London' or the 'Square Mile,' is a historic and powerful engine of the UK's economy, operating with its own distinct governance. This area, alongside the newer financial hub of Canary Wharf, has long been a global leader in banking, insurance, and foreign exchange markets. These financial centers are not merely economic zones but also powerful symbols of modernity and global capitalism. Analyze the role that the financial services sector has played in shaping London's physical and social landscape, and what are the primary challenges it faces in maintaining its global dominance after the UK's departure from the European Union? In addition to its financial might, London's identity is inextricably linked to its cultural institutions. The city is home to some of the world's most visited museums, like the British Museum and the Tate Modern, many of which offer free admission. Discuss the factors that have cemented London's status as a global cultural capital. What role do these institutions play in fostering national identity, promoting education, and driving urban regeneration, and how do they contend with ongoing debates surrounding the provenance of their collections and their funding models?
|
9 |
+
|
10 |
+
<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
models/weight_sharing_model_1_of_1.serialized.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80a911909c0d85ba745b65898f5fa6c7529c44fad6085f841b878ec826029bc9
|
3 |
+
size 1781329632
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|