Xianbao QIAN
commited on
Commit
•
101d805
1
Parent(s):
9279ca3
python data processing
Browse files- python/1_ancestors.py +0 -1
- python/1_parents.py +59 -0
- python/2_ancestors.py +173 -0
- requirements.txt +3 -1
- tables/ancestor_children.example.yaml +68 -0
- tables/ancestor_children.parquet +3 -0
- tables/datasets.example.yaml +147 -122
- tables/datasets.parquet +2 -2
- tables/models.example.yaml +111 -111
- tables/models.parquet +2 -2
- tables/parents.example.yaml +31 -0
- tables/parents.parquet +3 -0
- tables/spaces.example.yaml +106 -106
- tables/spaces.parquet +2 -2
python/1_ancestors.py
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
``
|
|
|
|
python/1_parents.py
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import duckdb
|
2 |
+
import yaml
|
3 |
+
import time
|
4 |
+
|
5 |
+
def extract_base_models(tags):
|
6 |
+
base_models = set() # Use a set to ensure uniqueness
|
7 |
+
for tag in tags:
|
8 |
+
if tag.startswith("base_model:"):
|
9 |
+
base_model = tag.split(":")[-1]
|
10 |
+
base_model = ''.join(c for c in base_model if c.isalnum() or c in '/_.-')
|
11 |
+
base_models.add(base_model) # Add to set
|
12 |
+
return list(base_models) # Convert back to list
|
13 |
+
|
14 |
+
# Create a DuckDB connection
|
15 |
+
con = duckdb.connect()
|
16 |
+
|
17 |
+
# Register the Python UDF with explicit return type
|
18 |
+
con.create_function("extract_base_models", extract_base_models, return_type="VARCHAR[]")
|
19 |
+
|
20 |
+
# Query to extract base models using the Python UDF
|
21 |
+
query = """
|
22 |
+
SELECT
|
23 |
+
_id,
|
24 |
+
id,
|
25 |
+
extract_base_models(tags) AS base_models
|
26 |
+
FROM parquet_scan('tables/models.parquet')
|
27 |
+
"""
|
28 |
+
|
29 |
+
start_time = time.time()
|
30 |
+
|
31 |
+
# Execute the query and create a view
|
32 |
+
con.execute(f"CREATE VIEW parent_models AS {query}")
|
33 |
+
|
34 |
+
# Write the view to a parquet file
|
35 |
+
con.execute("COPY parent_models TO 'tables/parents.parquet' (FORMAT 'parquet')")
|
36 |
+
|
37 |
+
end_time = time.time()
|
38 |
+
execution_time = end_time - start_time
|
39 |
+
|
40 |
+
print(f"Query execution time: {execution_time:.2f} seconds")
|
41 |
+
|
42 |
+
# Filter rows with non-empty base_models
|
43 |
+
con.execute("""
|
44 |
+
CREATE VIEW non_empty_base_models AS
|
45 |
+
SELECT *
|
46 |
+
FROM parent_models
|
47 |
+
WHERE ARRAY_LENGTH(base_models) > 0
|
48 |
+
""")
|
49 |
+
|
50 |
+
# Write a random sample of 10 rows with non-empty base_models to yaml file for inspection
|
51 |
+
result = con.execute("""
|
52 |
+
SELECT _id, id, base_models
|
53 |
+
FROM non_empty_base_models
|
54 |
+
ORDER BY RANDOM()
|
55 |
+
LIMIT 10
|
56 |
+
""").fetchall()
|
57 |
+
|
58 |
+
with open("tables/parents.example.yaml", "w") as f:
|
59 |
+
yaml.safe_dump(result, f, default_flow_style=False)
|
python/2_ancestors.py
ADDED
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import duckdb
|
2 |
+
import yaml
|
3 |
+
import time
|
4 |
+
import logging
|
5 |
+
|
6 |
+
# Set up logging
|
7 |
+
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
8 |
+
|
9 |
+
# Create a DuckDB connection
|
10 |
+
con = duckdb.connect()
|
11 |
+
|
12 |
+
def execute_with_timing(query, description):
|
13 |
+
"""Execute a DuckDB query and log the execution time."""
|
14 |
+
start_time = time.perf_counter() # Use perf_counter for higher resolution timing
|
15 |
+
con.execute(query)
|
16 |
+
end_time = time.perf_counter() # End timing after the query execution
|
17 |
+
logging.info(f"Completed {description} in {end_time - start_time:.6f} seconds.")
|
18 |
+
|
19 |
+
# Start timing the total execution
|
20 |
+
total_start_time = time.perf_counter()
|
21 |
+
|
22 |
+
# Load parents.parquet into an in-memory table
|
23 |
+
load_parents_query = """
|
24 |
+
CREATE TABLE parents_in_memory AS
|
25 |
+
SELECT * FROM parquet_scan('tables/parents.parquet')
|
26 |
+
"""
|
27 |
+
execute_with_timing(load_parents_query, "Loaded parents.parquet into RAM")
|
28 |
+
|
29 |
+
# Step 1: Assign a unique numerical ID to each model ID
|
30 |
+
unique_id_query = """
|
31 |
+
CREATE TABLE unique_ids AS
|
32 |
+
SELECT
|
33 |
+
id,
|
34 |
+
ROW_NUMBER() OVER () AS tmp_id
|
35 |
+
FROM parents_in_memory
|
36 |
+
"""
|
37 |
+
execute_with_timing(unique_id_query, "Step 1: Created unique_ids table")
|
38 |
+
|
39 |
+
# Step 2: Unnest base_models and create a temporary table
|
40 |
+
unnest_query = """
|
41 |
+
CREATE TABLE unnested_models AS
|
42 |
+
SELECT
|
43 |
+
u.tmp_id AS child_tmp_id, -- Numerical ID for the child model
|
44 |
+
UNNEST(p.base_models) AS base_model
|
45 |
+
FROM parents_in_memory p
|
46 |
+
JOIN unique_ids u ON p.id = u.id
|
47 |
+
WHERE p.base_models IS NOT NULL -- Filter out models without base models
|
48 |
+
"""
|
49 |
+
execute_with_timing(unnest_query, "Step 2: Created unnested_models table")
|
50 |
+
|
51 |
+
# Step 3: Create a temporary table for direct parent mapping using numerical IDs
|
52 |
+
parent_level_query = """
|
53 |
+
CREATE TABLE parent_level AS
|
54 |
+
SELECT
|
55 |
+
u.child_tmp_id, -- Numerical ID for the child model
|
56 |
+
b.tmp_id AS base_tmp_id -- Numerical ID for the base model (parent)
|
57 |
+
FROM unnested_models u
|
58 |
+
JOIN unique_ids b ON u.base_model = b.id
|
59 |
+
"""
|
60 |
+
execute_with_timing(parent_level_query, "Step 3: Created parent_level table")
|
61 |
+
|
62 |
+
# Step 4: Recursive CTE to find all ancestor-children mappings using numerical IDs
|
63 |
+
ancestor_children_query = """
|
64 |
+
CREATE TABLE ancestor_children AS
|
65 |
+
WITH RECURSIVE ancestor_children_cte AS (
|
66 |
+
SELECT
|
67 |
+
base_tmp_id AS ancestor_tmp_id, -- Start with direct parent as ancestor
|
68 |
+
child_tmp_id AS child_tmp_id, -- Direct child
|
69 |
+
1 AS depth -- Initialize depth counter
|
70 |
+
FROM parent_level
|
71 |
+
|
72 |
+
UNION ALL
|
73 |
+
|
74 |
+
SELECT
|
75 |
+
ac.ancestor_tmp_id, -- Propagate ancestor
|
76 |
+
pl.child_tmp_id, -- Find new child in the chain
|
77 |
+
ac.depth + 1 -- Increment depth counter
|
78 |
+
FROM parent_level pl
|
79 |
+
JOIN ancestor_children_cte ac ON pl.base_tmp_id = ac.child_tmp_id
|
80 |
+
WHERE ac.depth < 20 -- Limit recursion to 10 levels
|
81 |
+
)
|
82 |
+
SELECT
|
83 |
+
a.id AS ancestor,
|
84 |
+
LIST(DISTINCT c.id) AS all_children
|
85 |
+
FROM ancestor_children_cte ac
|
86 |
+
JOIN unique_ids a ON ac.ancestor_tmp_id = a.tmp_id
|
87 |
+
JOIN unique_ids c ON c.tmp_id = ac.child_tmp_id
|
88 |
+
GROUP BY ancestor
|
89 |
+
"""
|
90 |
+
execute_with_timing(ancestor_children_query, "Step 4: Created ancestor_children table with string IDs")
|
91 |
+
|
92 |
+
# Create a direct children mapping table
|
93 |
+
direct_children_mapping_query = """
|
94 |
+
CREATE TABLE direct_children_mapping AS
|
95 |
+
SELECT
|
96 |
+
p.id AS parent,
|
97 |
+
LIST(DISTINCT u.id) AS direct_children
|
98 |
+
FROM parents_in_memory p
|
99 |
+
LEFT JOIN unnested_models um ON p.id = um.base_model
|
100 |
+
LEFT JOIN unique_ids u ON um.child_tmp_id = u.tmp_id
|
101 |
+
GROUP BY p.id
|
102 |
+
"""
|
103 |
+
execute_with_timing(direct_children_mapping_query, "Created direct_children_mapping table")
|
104 |
+
|
105 |
+
# Write the final result to a parquet file, using direct_children_mapping for direct_children
|
106 |
+
start_time = time.perf_counter()
|
107 |
+
final_output_query = """
|
108 |
+
COPY (
|
109 |
+
SELECT
|
110 |
+
ac.ancestor,
|
111 |
+
dcm.direct_children,
|
112 |
+
ac.all_children
|
113 |
+
FROM ancestor_children ac
|
114 |
+
LEFT JOIN direct_children_mapping dcm ON ac.ancestor = dcm.parent
|
115 |
+
) TO 'tables/ancestor_children.parquet' (FORMAT 'parquet')
|
116 |
+
"""
|
117 |
+
con.execute(final_output_query)
|
118 |
+
end_time = time.perf_counter()
|
119 |
+
logging.info(f"Written ancestor_children to parquet file in {end_time - start_time:.6f} seconds.")
|
120 |
+
|
121 |
+
# Write a random sample of 10 rows with non-empty children to yaml file for inspection
|
122 |
+
start_time = time.perf_counter()
|
123 |
+
sample_query = """
|
124 |
+
SELECT ac.ancestor, dcm.direct_children, ac.all_children
|
125 |
+
FROM ancestor_children ac
|
126 |
+
LEFT JOIN direct_children_mapping dcm ON ac.ancestor = dcm.parent
|
127 |
+
WHERE array_length(ac.all_children) > 0
|
128 |
+
LIMIT 10
|
129 |
+
"""
|
130 |
+
sample_data = con.execute(sample_query).fetchall()
|
131 |
+
with open("tables/ancestor_children.example.yaml", "w") as f:
|
132 |
+
yaml.safe_dump(sample_data, f, default_flow_style=False)
|
133 |
+
end_time = time.perf_counter()
|
134 |
+
logging.info(f"Written sample data to YAML file in {end_time - start_time:.6f} seconds.")
|
135 |
+
|
136 |
+
# Write a random sample of 10 rows with no children (direct or indirect) to yaml file
|
137 |
+
start_time = time.perf_counter()
|
138 |
+
no_children_query = """
|
139 |
+
SELECT ac.ancestor, dcm.direct_children, ac.all_children
|
140 |
+
FROM ancestor_children ac
|
141 |
+
LEFT JOIN direct_children_mapping dcm ON ac.ancestor = dcm.parent
|
142 |
+
WHERE array_length(ac.all_children) = 0
|
143 |
+
LIMIT 10
|
144 |
+
"""
|
145 |
+
no_children_data = con.execute(no_children_query).fetchall()
|
146 |
+
end_time = time.perf_counter()
|
147 |
+
logging.info(f"Fetched sample data of models with no children in {end_time - start_time:.6f} seconds.")
|
148 |
+
logging.info("Examples of models with no children (direct or indirect):")
|
149 |
+
for model in no_children_data:
|
150 |
+
logging.info(model)
|
151 |
+
|
152 |
+
# List top 10 ancestors with the most children and their number of direct children
|
153 |
+
start_time = time.perf_counter()
|
154 |
+
top_ancestors_query = """
|
155 |
+
SELECT
|
156 |
+
ac.ancestor,
|
157 |
+
array_length(ac.all_children) AS num_all_children,
|
158 |
+
array_length(dcm.direct_children) AS num_direct_children
|
159 |
+
FROM ancestor_children ac
|
160 |
+
LEFT JOIN direct_children_mapping dcm ON ac.ancestor = dcm.parent
|
161 |
+
ORDER BY num_all_children DESC
|
162 |
+
LIMIT 10
|
163 |
+
"""
|
164 |
+
top_ancestors = con.execute(top_ancestors_query).fetchall()
|
165 |
+
end_time = time.perf_counter()
|
166 |
+
logging.info(f"Listed top 10 ancestors with the most children in {end_time - start_time:.6f} seconds.")
|
167 |
+
logging.info("Top 10 ancestors with the most children and their number of direct children:")
|
168 |
+
for ancestor in top_ancestors:
|
169 |
+
logging.info(ancestor)
|
170 |
+
|
171 |
+
# Log the total processing time
|
172 |
+
total_execution_time = time.perf_counter() - total_start_time
|
173 |
+
print(f"Total processing time: {total_execution_time:.6f} seconds")
|
requirements.txt
CHANGED
@@ -1,3 +1,5 @@
|
|
1 |
requests
|
2 |
tqdm
|
3 |
-
duckdb
|
|
|
|
|
|
1 |
requests
|
2 |
tqdm
|
3 |
+
duckdb
|
4 |
+
pyarrow
|
5 |
+
pandas
|
tables/ancestor_children.example.yaml
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
- - Locutusque/Hercules-6.0-Llama-3.1-8B
|
2 |
+
- - mradermacher/Hercules-6.0-Llama-3.1-8B-GGUF
|
3 |
+
- bartowski/Hercules-6.0-Llama-3.1-8B-exl2
|
4 |
+
- kromeurus/L3.1-Clouded-Uchtave-v0.1-8B
|
5 |
+
- bartowski/Hercules-6.0-Llama-3.1-8B-GGUF
|
6 |
+
- mradermacher/Hercules-6.0-Llama-3.1-8B-i1-GGUF
|
7 |
+
- - kromquant/L3.1-Clouded-Uchtave-v0.1-8B-GGUFs
|
8 |
+
- bartowski/Hercules-6.0-Llama-3.1-8B-exl2
|
9 |
+
- mradermacher/Hercules-6.0-Llama-3.1-8B-GGUF
|
10 |
+
- mradermacher/L3.1-Clouded-Uchtave-v0.1-8B-GGUF
|
11 |
+
- mradermacher/Hercules-6.0-Llama-3.1-8B-i1-GGUF
|
12 |
+
- kromeurus/L3.1-Clouded-Uchtave-v0.1-8B
|
13 |
+
- bartowski/Hercules-6.0-Llama-3.1-8B-GGUF
|
14 |
+
- mradermacher/L3.1-Clouded-Uchtave-v0.1-8B-i1-GGUF
|
15 |
+
- - Lambent/arsenic-v1-qwen2.5-14B
|
16 |
+
- - mradermacher/arsenic-v1-qwen2.5-14B-i1-GGUF
|
17 |
+
- mradermacher/arsenic-v1-qwen2.5-14B-GGUF
|
18 |
+
- Lambent/arsenic-v1.5-dpo-qwen2.5-14B
|
19 |
+
- Lambent/arsenic-v1-qwen2.5-14B-Q4_K_M-GGUF
|
20 |
+
- Lambent/Eidolon-v1-14B
|
21 |
+
- - mradermacher/Eidolon-v1-14B-GGUF
|
22 |
+
- mradermacher/Eidolon-v1-14B-i1-GGUF
|
23 |
+
- mradermacher/arsenic-v1-qwen2.5-14B-GGUF
|
24 |
+
- mradermacher/arsenic-v1-qwen2.5-14B-i1-GGUF
|
25 |
+
- Lambent/arsenic-v1-qwen2.5-14B-Q4_K_M-GGUF
|
26 |
+
- Lambent/arsenic-v1.5-dpo-qwen2.5-14B-Q4_K_M-GGUF
|
27 |
+
- Lambent/arsenic-v1.5-dpo-qwen2.5-14B
|
28 |
+
- Lambent/Eidolon-v1-14B-Q4_K_M-GGUF
|
29 |
+
- Lambent/Eidolon-v1-14B
|
30 |
+
- - wzebrowski/Llama3.1-8B-Reasoner-v0_3
|
31 |
+
- - mradermacher/Llama3.1-8B-Reasoner-v0_3-GGUF
|
32 |
+
- mradermacher/Llama3.1-8B-Reasoner-v0_3-i1-GGUF
|
33 |
+
- - mradermacher/Llama3.1-8B-Reasoner-v0_3-GGUF
|
34 |
+
- mradermacher/Llama3.1-8B-Reasoner-v0_3-i1-GGUF
|
35 |
+
- - Jahid05/Gemma-2-2b-original-website-prompt-generator
|
36 |
+
- - Jahid05/Gemma-2-2b-original-website-prompt-generator-Q4_K_M-GGUF
|
37 |
+
- - Jahid05/Gemma-2-2b-original-website-prompt-generator-Q4_K_M-GGUF
|
38 |
+
- - KB8407/Llama-3-KoEn-8B-Instruct-AIDOK
|
39 |
+
- - mradermacher/Llama-3-KoEn-8B-Instruct-AIDOK-GGUF
|
40 |
+
- - mradermacher/Llama-3-KoEn-8B-Instruct-AIDOK-GGUF
|
41 |
+
- - north/uferdighemmeligmodell_llama31
|
42 |
+
- - north/uferdighemmeligmodell_llama31-Q4_K_M-GGUF
|
43 |
+
- - north/uferdighemmeligmodell_llama31-Q4_K_M-GGUF
|
44 |
+
- - amir22010/fine_tuned_product_marketing_email_gemma_2_9b_model
|
45 |
+
- - amir22010/fine_tuned_product_marketing_email_gemma_2_9b_q4_k_m
|
46 |
+
- - amir22010/fine_tuned_product_marketing_email_gemma_2_9b_q4_k_m
|
47 |
+
- - jeiku/instructered4B
|
48 |
+
- - FourOhFour/Crispy_Crab_4B
|
49 |
+
- QuantFactory/Crispy_Crab_4B-GGUF
|
50 |
+
- - mradermacher/Crispy_Crab_4B-GGUF
|
51 |
+
- QuantFactory/Crispy_Crab_4B-GGUF
|
52 |
+
- mradermacher/Crispy_Crab_4B-i1-GGUF
|
53 |
+
- FourOhFour/Crispy_Crab_4B
|
54 |
+
- - jusKnows/pinaple-bnb-4bit
|
55 |
+
- - jusKnows/orange-q4_k_m-gguf
|
56 |
+
- jusKnows/orange-bnb-4bit
|
57 |
+
- - jusKnows/orange-q4_k_m-gguf
|
58 |
+
- jusKnows/orange-bnb-4bit
|
59 |
+
- - RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter2
|
60 |
+
- - RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter2-only2nd-4e-7
|
61 |
+
- RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter2-only2nd-2e-7
|
62 |
+
- RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter2-only2nd-6e-7
|
63 |
+
- RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter3
|
64 |
+
- - RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter2-only2nd-6e-7
|
65 |
+
- RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter2-only2nd-4e-7
|
66 |
+
- RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter3
|
67 |
+
- RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter2-only2nd-2e-7
|
68 |
+
- RyanYr/self-correct_Llama-3.2-3B-Instruct_metaMathQA_dpo_iter4
|
tables/ancestor_children.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:11be37efa4ec06308eef3bd8912dae1a7853c7b2644bd6d8d60bdc8c73b37c57
|
3 |
+
size 10939157
|
tables/datasets.example.yaml
CHANGED
@@ -37,214 +37,239 @@ datasets:
|
|
37 |
- column: citation
|
38 |
type: VARCHAR
|
39 |
random_items:
|
40 |
-
- _id:
|
41 |
-
id:
|
42 |
-
author:
|
43 |
-
cardData: {"
|
44 |
disabled: False
|
45 |
gated: False
|
46 |
-
lastModified:
|
47 |
likes: 0
|
48 |
trendingScore: 0.0
|
49 |
private: False
|
50 |
-
sha:
|
51 |
-
description:
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
Dataset Card for "EcomRetrieval-qrels"
|
57 |
-
|
58 |
-
|
59 |
-
More Information needed
|
60 |
-
|
61 |
-
downloads: 2893
|
62 |
-
tags: ['size_categories:1K<n<10K', 'format:parquet', 'modality:text', 'library:datasets', 'library:pandas', 'library:mlcroissant', 'library:polars', 'region:us']
|
63 |
-
createdAt: 2023-07-28T09:37:55.000Z
|
64 |
key:
|
65 |
paperswithcode_id: None
|
66 |
citation: None
|
67 |
-
- _id:
|
68 |
-
id:
|
69 |
-
author:
|
70 |
cardData: None
|
71 |
disabled: False
|
72 |
gated: False
|
73 |
-
lastModified:
|
74 |
likes: 0
|
75 |
trendingScore: 0.0
|
76 |
private: False
|
77 |
-
sha:
|
78 |
description: None
|
79 |
downloads: 0
|
80 |
-
tags: ['size_categories:
|
81 |
-
createdAt:
|
82 |
key:
|
83 |
paperswithcode_id: None
|
84 |
citation: None
|
85 |
-
- _id:
|
86 |
-
id:
|
87 |
-
author:
|
88 |
-
cardData: {"
|
89 |
disabled: False
|
90 |
gated: False
|
91 |
-
lastModified:
|
92 |
likes: 0
|
93 |
trendingScore: 0.0
|
94 |
private: False
|
95 |
-
sha:
|
96 |
description: None
|
97 |
downloads: 0
|
98 |
-
tags: ['size_categories:n<1K', 'format:
|
99 |
-
createdAt:
|
100 |
key:
|
101 |
paperswithcode_id: None
|
102 |
citation: None
|
103 |
-
- _id:
|
104 |
-
id:
|
105 |
-
author:
|
106 |
-
cardData:
|
107 |
disabled: False
|
108 |
gated: False
|
109 |
-
lastModified:
|
110 |
likes: 0
|
111 |
trendingScore: 0.0
|
112 |
private: False
|
113 |
-
sha:
|
114 |
-
description:
|
115 |
-
GDPR-fines is a dataset with summary of GDPR cases from companies that were find between 2018 and 2021. You will find the summary plus the Articles violated in the cases (3 most importants + "Others" regrouping the rest of articles).
|
116 |
-
Raw text and lemmatized text available plus multi-labels.
|
117 |
-
|
118 |
downloads: 0
|
119 |
-
tags: ['
|
120 |
-
createdAt:
|
121 |
key:
|
122 |
paperswithcode_id: None
|
123 |
citation: None
|
124 |
-
- _id:
|
125 |
-
id:
|
126 |
-
author:
|
127 |
-
cardData: {"dataset_info": {"features": [{"name": "
|
128 |
disabled: False
|
129 |
gated: False
|
130 |
-
lastModified:
|
131 |
likes: 0
|
132 |
trendingScore: 0.0
|
133 |
private: False
|
134 |
-
sha:
|
135 |
-
description:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
downloads: 0
|
137 |
-
tags: ['size_categories:
|
138 |
-
createdAt:
|
139 |
key:
|
140 |
paperswithcode_id: None
|
141 |
citation: None
|
142 |
-
- _id:
|
143 |
-
id:
|
144 |
-
author:
|
145 |
-
cardData:
|
146 |
disabled: False
|
147 |
gated: False
|
148 |
-
lastModified: 2024-
|
149 |
likes: 0
|
150 |
trendingScore: 0.0
|
151 |
private: False
|
152 |
-
sha:
|
153 |
description: None
|
154 |
downloads: 0
|
155 |
-
tags: ['
|
156 |
-
createdAt: 2024-
|
157 |
key:
|
158 |
paperswithcode_id: None
|
159 |
citation: None
|
160 |
-
- _id:
|
161 |
-
id:
|
162 |
-
author:
|
163 |
-
cardData: {"
|
164 |
disabled: False
|
165 |
gated: False
|
166 |
-
lastModified: 2024-
|
167 |
likes: 0
|
168 |
trendingScore: 0.0
|
169 |
private: False
|
170 |
-
sha:
|
171 |
-
description:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
downloads: 0
|
173 |
-
tags: ['
|
174 |
-
createdAt:
|
175 |
key:
|
176 |
paperswithcode_id: None
|
177 |
citation: None
|
178 |
-
- _id:
|
179 |
-
id:
|
180 |
-
author:
|
181 |
-
cardData:
|
182 |
disabled: False
|
183 |
gated: False
|
184 |
-
lastModified:
|
185 |
likes: 0
|
186 |
trendingScore: 0.0
|
187 |
private: False
|
188 |
-
sha:
|
189 |
-
description:
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
createdAt: 2024-06-18T00:21:06.000Z
|
194 |
key:
|
195 |
paperswithcode_id: None
|
196 |
citation: None
|
197 |
-
- _id:
|
198 |
-
id:
|
199 |
-
author:
|
200 |
-
cardData: {"dataset_info": {"features": [{"name": "
|
201 |
disabled: False
|
202 |
gated: False
|
203 |
-
lastModified: 2023-
|
204 |
likes: 0
|
205 |
trendingScore: 0.0
|
206 |
private: False
|
207 |
-
sha:
|
208 |
-
description:
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
Dataset Card for "reklamation24_wasser-strom-gas-intent"
|
214 |
-
|
215 |
-
|
216 |
-
More Information needed
|
217 |
-
|
218 |
-
downloads: 0
|
219 |
-
tags: ['size_categories:n<1K', 'format:parquet', 'modality:tabular', 'modality:text', 'library:datasets', 'library:pandas', 'library:mlcroissant', 'library:polars', 'region:us']
|
220 |
-
createdAt: 2023-03-15T21:32:44.000Z
|
221 |
key:
|
222 |
paperswithcode_id: None
|
223 |
citation: None
|
224 |
-
- _id:
|
225 |
-
id:
|
226 |
-
author:
|
227 |
-
cardData: {"license": "mit"
|
228 |
disabled: False
|
229 |
gated: False
|
230 |
-
lastModified: 2024-
|
231 |
-
likes:
|
232 |
trendingScore: 0.0
|
233 |
private: False
|
234 |
-
sha:
|
235 |
-
description:
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
Bangumi Image Base of Saijaku Tamer Wa Gomi Hiroi No Tabi Wo Hajimemashita
|
241 |
-
|
242 |
-
|
243 |
-
This is the image base of bangumi Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita, we detected 81 characters, 6058 images in total. The full dataset is here.
|
244 |
-
Please note that these image bases are not guaranteed to be 100% cleaned, they may be noisy actual. If you intend to manually train models using this dataset, we recommend performing necessary preprocessing on the downloaded dataset to eliminate… See the full description on the dataset page: https://huggingface.co/datasets/BangumiBase/saijakutamerwagomihiroinotabiwohajimemashita.
|
245 |
-
downloads: 0
|
246 |
-
tags: ['license:mit', 'size_categories:1K<n<10K', 'modality:image', 'region:us', 'art']
|
247 |
-
createdAt: 2024-03-29T19:57:50.000Z
|
248 |
key:
|
249 |
paperswithcode_id: None
|
250 |
citation: None
|
|
|
37 |
- column: citation
|
38 |
type: VARCHAR
|
39 |
random_items:
|
40 |
+
- _id: 670c6014808ab5626f024866
|
41 |
+
id: mrs83/kurtis_mental_health_initial
|
42 |
+
author: mrs83
|
43 |
+
cardData: {"language": ["en"], "dataset_info": {"features": [{"name": "question", "dtype": "string"}, {"name": "answer", "dtype": "string"}, {"name": "dataset_name", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 11631854, "num_examples": 11491}], "download_size": 5523582, "dataset_size": 11631854}, "configs": [{"config_name": "default", "data_files": [{"split": "train", "path": "data/train-*"}]}]}
|
44 |
disabled: False
|
45 |
gated: False
|
46 |
+
lastModified: 2024-10-17T22:35:25.000Z
|
47 |
likes: 0
|
48 |
trendingScore: 0.0
|
49 |
private: False
|
50 |
+
sha: df642e83a81f878f20698e8f1d4d5a72bd246a1b
|
51 |
+
description: None
|
52 |
+
downloads: 0
|
53 |
+
tags: ['language:en', 'size_categories:10K<n<100K', 'format:parquet', 'modality:text', 'library:datasets', 'library:pandas', 'library:mlcroissant', 'library:polars', 'region:us']
|
54 |
+
createdAt: 2024-10-14T00:04:36.000Z
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
key:
|
56 |
paperswithcode_id: None
|
57 |
citation: None
|
58 |
+
- _id: 6705aa23fc0a446f3828b487
|
59 |
+
id: PhdDz/BioASQBlurb_5_WITH_RELATION_vqc_hetionet
|
60 |
+
author: PhdDz
|
61 |
cardData: None
|
62 |
disabled: False
|
63 |
gated: False
|
64 |
+
lastModified: 2024-10-08T21:54:45.000Z
|
65 |
likes: 0
|
66 |
trendingScore: 0.0
|
67 |
private: False
|
68 |
+
sha: dad09e125f900058d19d61bd271ae31da51a3a13
|
69 |
description: None
|
70 |
downloads: 0
|
71 |
+
tags: ['size_categories:n<1K', 'format:json', 'modality:text', 'library:datasets', 'library:pandas', 'library:mlcroissant', 'library:polars', 'region:us']
|
72 |
+
createdAt: 2024-10-08T21:54:43.000Z
|
73 |
key:
|
74 |
paperswithcode_id: None
|
75 |
citation: None
|
76 |
+
- _id: 66224e1f57abf1be69a75bf8
|
77 |
+
id: baraah/test3
|
78 |
+
author: baraah
|
79 |
+
cardData: {"license": "unknown"}
|
80 |
disabled: False
|
81 |
gated: False
|
82 |
+
lastModified: 2024-04-19T10:58:14.000Z
|
83 |
likes: 0
|
84 |
trendingScore: 0.0
|
85 |
private: False
|
86 |
+
sha: 6b8100193e14e05868357832fedb1ee13370afb0
|
87 |
description: None
|
88 |
downloads: 0
|
89 |
+
tags: ['license:unknown', 'size_categories:n<1K', 'format:arrow', 'modality:text', 'library:datasets', 'library:mlcroissant', 'region:us']
|
90 |
+
createdAt: 2024-04-19T10:57:35.000Z
|
91 |
key:
|
92 |
paperswithcode_id: None
|
93 |
citation: None
|
94 |
+
- _id: 66f2d5543c2fc5c666fbd345
|
95 |
+
id: yifangong/split_candidate_dataset_part_3
|
96 |
+
author: yifangong
|
97 |
+
cardData: None
|
98 |
disabled: False
|
99 |
gated: False
|
100 |
+
lastModified: 2024-09-24T15:17:47.000Z
|
101 |
likes: 0
|
102 |
trendingScore: 0.0
|
103 |
private: False
|
104 |
+
sha: 929634d2c425a1f3f4f73e958fa4d80ca075030f
|
105 |
+
description: None
|
|
|
|
|
|
|
106 |
downloads: 0
|
107 |
+
tags: ['size_categories:1K<n<10K', 'format:json', 'modality:text', 'library:datasets', 'library:pandas', 'library:mlcroissant', 'library:polars', 'region:us']
|
108 |
+
createdAt: 2024-09-24T15:05:56.000Z
|
109 |
key:
|
110 |
paperswithcode_id: None
|
111 |
citation: None
|
112 |
+
- _id: 6503a1fcd25ce81dfcd3bf3d
|
113 |
+
id: UniverseTBD/arxiv-bit-flip-cs.LG
|
114 |
+
author: UniverseTBD
|
115 |
+
cardData: {"dataset_info": {"features": [{"name": "bit", "dtype": "string"}, {"name": "flip", "dtype": "string"}, {"name": "title", "dtype": "string"}, {"name": "categories", "dtype": "string"}, {"name": "abstract", "dtype": "string"}, {"name": "authors", "dtype": "string"}, {"name": "doi", "dtype": "string"}, {"name": "id", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 229044314, "num_examples": 100039}], "download_size": 127335112, "dataset_size": 229044314}, "configs": [{"config_name": "default", "data_files": [{"split": "train", "path": "data/train-*"}]}]}
|
116 |
disabled: False
|
117 |
gated: False
|
118 |
+
lastModified: 2023-09-24T00:11:18.000Z
|
119 |
likes: 0
|
120 |
trendingScore: 0.0
|
121 |
private: False
|
122 |
+
sha: 27e335094496235ca60ce4699913cddb0f151956
|
123 |
+
description:
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
Dataset Card for "arxiv-bit-flip-cs.LG"
|
129 |
+
|
130 |
+
|
131 |
+
This dataset contains "Bit-Flips," structured representations extracted from the abstracts of ArXiv papers, specifically in the category of cs.LG (Machine Learning). These Bit-Flips aim to encapsulate the essence of the research by identifying the conventional belief or 'status quo' the abstract challenges (Bit) and the counterargument or innovative approach that flips the Bit (Flip).
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
+
Bit-Flip Concept
|
138 |
+
|
139 |
+
|
140 |
+
A Bit-Flip serves as a… See the full description on the dataset page: https://huggingface.co/datasets/UniverseTBD/arxiv-bit-flip-cs.LG.
|
141 |
downloads: 0
|
142 |
+
tags: ['size_categories:100K<n<1M', 'format:parquet', 'modality:text', 'library:datasets', 'library:pandas', 'library:mlcroissant', 'library:polars', 'region:us']
|
143 |
+
createdAt: 2023-09-15T00:14:52.000Z
|
144 |
key:
|
145 |
paperswithcode_id: None
|
146 |
citation: None
|
147 |
+
- _id: 6634b75562f76fd1804e4368
|
148 |
+
id: open-llm-leaderboard-old/details_Cesco2004__TW3CESCO.V2
|
149 |
+
author: open-llm-leaderboard-old
|
150 |
+
cardData: None
|
151 |
disabled: False
|
152 |
gated: False
|
153 |
+
lastModified: 2024-05-03T10:07:34.000Z
|
154 |
likes: 0
|
155 |
trendingScore: 0.0
|
156 |
private: False
|
157 |
+
sha: 8bb697ed40be7783a62296ab4ed9ec0855afd8ca
|
158 |
description: None
|
159 |
downloads: 0
|
160 |
+
tags: ['region:us']
|
161 |
+
createdAt: 2024-05-03T10:07:17.000Z
|
162 |
key:
|
163 |
paperswithcode_id: None
|
164 |
citation: None
|
165 |
+
- _id: 63b64340c5a5432fd86317b4
|
166 |
+
id: irds/mmarco_v2_fr_dev
|
167 |
+
author: irds
|
168 |
+
cardData: {"pretty_name": "`mmarco/v2/fr/dev`", "viewer": false, "source_datasets": ["irds/mmarco_v2_fr"], "task_categories": ["text-retrieval"], "language": ["fr"]}
|
169 |
disabled: False
|
170 |
gated: False
|
171 |
+
lastModified: 2024-10-04T14:31:33.000Z
|
172 |
likes: 0
|
173 |
trendingScore: 0.0
|
174 |
private: False
|
175 |
+
sha: d8bce2de2fe67c7edfbfe4944fc9517ec7c6fec2
|
176 |
+
description:
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
Dataset Card for mmarco/v2/fr/dev
|
182 |
+
|
183 |
+
|
184 |
+
The mmarco/v2/fr/dev dataset, provided by the ir-datasets package.
|
185 |
+
For more information about the dataset, see the documentation.
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
|
190 |
+
|
191 |
+
Data
|
192 |
+
|
193 |
+
|
194 |
+
This dataset provides:
|
195 |
+
|
196 |
+
queries (i.e., topics); count=101,093
|
197 |
+
|
198 |
+
qrels: (relevance assessments); count=59,273
|
199 |
+
|
200 |
+
For docs, use irds/mmarco_v2_fr
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
|
207 |
+
|
208 |
+
Usage
|
209 |
+
|
210 |
+
|
211 |
+
from datasets import load_dataset
|
212 |
+
|
213 |
+
queries = load_dataset('irds/mmarco_v2_fr_dev', 'queries')
|
214 |
+
for record in queries:
|
215 |
+
record #… See the full description on the dataset page: https://huggingface.co/datasets/irds/mmarco_v2_fr_dev.
|
216 |
downloads: 0
|
217 |
+
tags: ['task_categories:text-retrieval', 'source_datasets:irds/mmarco_v2_fr', 'language:fr', 'arxiv:2108.13897', 'region:us']
|
218 |
+
createdAt: 2023-01-05T03:25:52.000Z
|
219 |
key:
|
220 |
paperswithcode_id: None
|
221 |
citation: None
|
222 |
+
- _id: 651d7fe027f248c7abadc0ca
|
223 |
+
id: autoevaluate/autoeval-eval-imdb-plain_text-e61a98-47317145210
|
224 |
+
author: autoevaluate
|
225 |
+
cardData: None
|
226 |
disabled: False
|
227 |
gated: False
|
228 |
+
lastModified: 2023-10-04T15:08:20.000Z
|
229 |
likes: 0
|
230 |
trendingScore: 0.0
|
231 |
private: False
|
232 |
+
sha: c6247ff8381adbb8b5ac19441aa2781a9628a4ec
|
233 |
+
description: None
|
234 |
+
downloads: 0
|
235 |
+
tags: ['region:us']
|
236 |
+
createdAt: 2023-10-04T15:08:16.000Z
|
|
|
237 |
key:
|
238 |
paperswithcode_id: None
|
239 |
citation: None
|
240 |
+
- _id: 6577f1600e0d4703ffa89c1f
|
241 |
+
id: debadas/diamonds
|
242 |
+
author: debadas
|
243 |
+
cardData: {"license": "mit", "dataset_info": {"features": [{"name": "image", "dtype": "image"}, {"name": "stock_number", "dtype": "string"}, {"name": "shape", "dtype": "string"}, {"name": "carat", "dtype": "float64"}, {"name": "clarity", "dtype": "string"}, {"name": "colour", "dtype": "string"}, {"name": "cut", "dtype": "string"}, {"name": "polish", "dtype": "string"}, {"name": "symmetry", "dtype": "string"}, {"name": "fluorescence", "dtype": "string"}, {"name": "lab", "dtype": "string"}, {"name": "length", "dtype": "float64"}, {"name": "width", "dtype": "float64"}, {"name": "depth", "dtype": "float64"}, {"name": "text", "dtype": "string"}], "splits": [{"name": "train", "num_bytes": 4796614925.89, "num_examples": 48765}], "download_size": 3319091745, "dataset_size": 4796614925.89}, "configs": [{"config_name": "default", "data_files": [{"split": "train", "path": "data/train-*"}]}]}
|
244 |
disabled: False
|
245 |
gated: False
|
246 |
+
lastModified: 2023-12-12T06:33:23.000Z
|
247 |
likes: 0
|
248 |
trendingScore: 0.0
|
249 |
private: False
|
250 |
+
sha: ef6f3d675fce2fc89e9b90009d4f9a760d54497a
|
251 |
+
description: None
|
252 |
+
downloads: 2
|
253 |
+
tags: ['license:mit', 'size_categories:10K<n<100K', 'format:parquet', 'modality:image', 'modality:text', 'library:datasets', 'library:dask', 'library:mlcroissant', 'library:polars', 'region:us']
|
254 |
+
createdAt: 2023-12-12T05:36:32.000Z
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
key:
|
256 |
paperswithcode_id: None
|
257 |
citation: None
|
258 |
+
- _id: 65a9cbb30150f64adf7977c7
|
259 |
+
id: MetalZuna/System_Prompts
|
260 |
+
author: MetalZuna
|
261 |
+
cardData: {"license": "mit"}
|
262 |
disabled: False
|
263 |
gated: False
|
264 |
+
lastModified: 2024-01-19T01:14:37.000Z
|
265 |
+
likes: 3
|
266 |
trendingScore: 0.0
|
267 |
private: False
|
268 |
+
sha: 3728325044250993ea7403f7a5833ee8514f5c38
|
269 |
+
description: None
|
270 |
+
downloads: 1
|
271 |
+
tags: ['license:mit', 'size_categories:n<1K', 'format:csv', 'modality:text', 'library:datasets', 'library:pandas', 'library:mlcroissant', 'library:polars', 'region:us']
|
272 |
+
createdAt: 2024-01-19T01:09:07.000Z
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
key:
|
274 |
paperswithcode_id: None
|
275 |
citation: None
|
tables/datasets.parquet
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7fa0495eee23f37b85e9355de85e9e6c151b3f0d862aa584e247f3867d9921db
|
3 |
+
size 124006943
|
tables/models.example.yaml
CHANGED
@@ -37,183 +37,183 @@ models:
|
|
37 |
- column: siblings
|
38 |
type: STRUCT(rfilename VARCHAR)[]
|
39 |
random_items:
|
40 |
-
- _id:
|
41 |
-
id:
|
42 |
-
author:
|
43 |
gated: False
|
44 |
inference: library-not-detected
|
45 |
-
lastModified: 2024-
|
46 |
likes: 0
|
47 |
trendingScore: 0.0
|
48 |
private: False
|
49 |
-
sha:
|
50 |
config: None
|
51 |
downloads: 0
|
52 |
-
tags: ['region:us']
|
53 |
pipeline_tag: None
|
54 |
library_name: None
|
55 |
-
createdAt: 2024-
|
56 |
-
modelId:
|
57 |
-
siblings: [{'rfilename': '.gitattributes'}]
|
58 |
-
- _id:
|
59 |
-
id:
|
60 |
-
author:
|
61 |
gated: False
|
62 |
inference: library-not-detected
|
63 |
-
lastModified:
|
64 |
likes: 0
|
65 |
trendingScore: 0.0
|
66 |
private: False
|
67 |
-
sha:
|
68 |
config: None
|
69 |
downloads: 0
|
70 |
-
tags: ['
|
71 |
-
pipeline_tag: None
|
72 |
-
library_name: None
|
73 |
-
createdAt: 2024-08-11T15:37:33.000Z
|
74 |
-
modelId: shayekh/aya8b-distillkit-logits
|
75 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'checkpoint-1000/added_tokens.json'}, {'rfilename': 'checkpoint-1000/config.json'}, {'rfilename': 'checkpoint-1000/generation_config.json'}, {'rfilename': 'checkpoint-1000/merges.txt'}, {'rfilename': 'checkpoint-1000/model.safetensors'}, {'rfilename': 'checkpoint-1000/optimizer.pt'}, {'rfilename': 'checkpoint-1000/rng_state.pth'}, {'rfilename': 'checkpoint-1000/scheduler.pt'}, {'rfilename': 'checkpoint-1000/special_tokens_map.json'}, {'rfilename': 'checkpoint-1000/tokenizer.json'}, {'rfilename': 'checkpoint-1000/tokenizer_config.json'}, {'rfilename': 'checkpoint-1000/trainer_state.json'}, {'rfilename': 'checkpoint-1000/training_args.bin'}, {'rfilename': 'checkpoint-1000/vocab.json'}, {'rfilename': 'checkpoint-2000/added_tokens.json'}, {'rfilename': 'checkpoint-2000/config.json'}, {'rfilename': 'checkpoint-2000/generation_config.json'}, {'rfilename': 'checkpoint-2000/merges.txt'}, {'rfilename': 'checkpoint-2000/model.safetensors'}, {'rfilename': 'checkpoint-2000/optimizer.pt'}, {'rfilename': 'checkpoint-2000/rng_state.pth'}, {'rfilename': 'checkpoint-2000/scheduler.pt'}, {'rfilename': 'checkpoint-2000/special_tokens_map.json'}, {'rfilename': 'checkpoint-2000/tokenizer.json'}, {'rfilename': 'checkpoint-2000/tokenizer_config.json'}, {'rfilename': 'checkpoint-2000/trainer_state.json'}, {'rfilename': 'checkpoint-2000/training_args.bin'}, {'rfilename': 'checkpoint-2000/vocab.json'}, {'rfilename': 'checkpoint-3000/added_tokens.json'}, {'rfilename': 'checkpoint-3000/config.json'}, {'rfilename': 'checkpoint-3000/generation_config.json'}, {'rfilename': 'checkpoint-3000/merges.txt'}, {'rfilename': 'checkpoint-3000/model.safetensors'}, {'rfilename': 'checkpoint-3000/optimizer.pt'}, {'rfilename': 'checkpoint-3000/rng_state.pth'}, {'rfilename': 'checkpoint-3000/scheduler.pt'}, {'rfilename': 'checkpoint-3000/special_tokens_map.json'}, {'rfilename': 'checkpoint-3000/tokenizer.json'}, {'rfilename': 'checkpoint-3000/tokenizer_config.json'}, {'rfilename': 'checkpoint-3000/trainer_state.json'}, {'rfilename': 'checkpoint-3000/training_args.bin'}, {'rfilename': 'checkpoint-3000/vocab.json'}, {'rfilename': 'checkpoint-4000/added_tokens.json'}, {'rfilename': 'checkpoint-4000/config.json'}, {'rfilename': 'checkpoint-4000/generation_config.json'}, {'rfilename': 'checkpoint-4000/merges.txt'}, {'rfilename': 'checkpoint-4000/model.safetensors'}, {'rfilename': 'checkpoint-4000/optimizer.pt'}, {'rfilename': 'checkpoint-4000/rng_state.pth'}, {'rfilename': 'checkpoint-4000/scheduler.pt'}, {'rfilename': 'checkpoint-4000/special_tokens_map.json'}, {'rfilename': 'checkpoint-4000/tokenizer.json'}, {'rfilename': 'checkpoint-4000/tokenizer_config.json'}, {'rfilename': 'checkpoint-4000/trainer_state.json'}, {'rfilename': 'checkpoint-4000/training_args.bin'}, {'rfilename': 'checkpoint-4000/vocab.json'}, {'rfilename': 'checkpoint-5000/added_tokens.json'}, {'rfilename': 'checkpoint-5000/config.json'}, {'rfilename': 'checkpoint-5000/generation_config.json'}, {'rfilename': 'checkpoint-5000/merges.txt'}, {'rfilename': 'checkpoint-5000/model.safetensors'}, {'rfilename': 'checkpoint-5000/optimizer.pt'}, {'rfilename': 'checkpoint-5000/rng_state.pth'}, {'rfilename': 'checkpoint-5000/scheduler.pt'}, {'rfilename': 'checkpoint-5000/special_tokens_map.json'}, {'rfilename': 'checkpoint-5000/tokenizer.json'}, {'rfilename': 'checkpoint-5000/tokenizer_config.json'}, {'rfilename': 'checkpoint-5000/trainer_state.json'}, {'rfilename': 'checkpoint-5000/training_args.bin'}, {'rfilename': 'checkpoint-5000/vocab.json'}, {'rfilename': 'checkpoint-6000/added_tokens.json'}, {'rfilename': 'checkpoint-6000/config.json'}, {'rfilename': 'checkpoint-6000/generation_config.json'}, {'rfilename': 'checkpoint-6000/merges.txt'}, {'rfilename': 'checkpoint-6000/model.safetensors'}, {'rfilename': 'checkpoint-6000/optimizer.pt'}, {'rfilename': 'checkpoint-6000/rng_state.pth'}, {'rfilename': 'checkpoint-6000/scheduler.pt'}, {'rfilename': 'checkpoint-6000/special_tokens_map.json'}, {'rfilename': 'checkpoint-6000/tokenizer.json'}, {'rfilename': 'checkpoint-6000/tokenizer_config.json'}, {'rfilename': 'checkpoint-6000/trainer_state.json'}, {'rfilename': 'checkpoint-6000/training_args.bin'}, {'rfilename': 'checkpoint-6000/vocab.json'}]
|
76 |
-
- _id: 66d6d98a673a350b18b7309b
|
77 |
-
id: athirdpath/Aeonis-20b
|
78 |
-
author: athirdpath
|
79 |
-
gated: False
|
80 |
-
inference: library-not-detected
|
81 |
-
lastModified: 2024-09-08T03:28:52.000Z
|
82 |
-
likes: 2
|
83 |
-
trendingScore: 0.2
|
84 |
-
private: False
|
85 |
-
sha: 5e421f2b5781055bbc5eb00d9d7fba8250348c45
|
86 |
-
config: {"architectures": ["MistralForCausalLM"], "model_type": "mistral", "tokenizer_config": {"bos_token": "<s>", "chat_template": "{% if 'role' in messages[0] %}{{ bos_token }}{% if messages[0]['role'] == 'system' %}{% if messages[1]['role'] == 'user' %}{{ '[INST] ' + messages[0]['content'] + ' ' + messages[1]['content'] + ' [/INST]' }}{% set loop_messages = messages[2:] %}{% else %}{{ '[INST] ' + messages[0]['content'] + ' [/INST]' }}{% set loop_messages = messages[1:] %}{% endif %}{% else %}{% set loop_messages = messages %}{% endif %}{% for message in loop_messages %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}{% else %}{{ bos_token }}{% if messages[0]['from'] == 'system' %}{% if messages[1]['from'] == 'human' %}{{ '[INST] ' + messages[0]['value'] + ' ' + messages[1]['value'] + ' [/INST]' }}{% set loop_messages = messages[2:] %}{% else %}{{ '[INST] ' + messages[0]['value'] + ' [/INST]' }}{% set loop_messages = messages[1:] %}{% endif %}{% else %}{% set loop_messages = messages %}{% endif %}{% for message in loop_messages %}{% if message['from'] == 'human' %}{{ '[INST] ' + message['value'] + ' [/INST]' }}{% elif message['from'] == 'gpt' %}{{ message['value'] + eos_token }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}{% endif %}", "eos_token": "<|im_end|>", "pad_token": "<pad>", "unk_token": "<unk>"}}
|
87 |
-
downloads: 1
|
88 |
-
tags: ['safetensors', 'mistral', 'not-for-all-audiences', 'license:apache-2.0', 'region:us']
|
89 |
pipeline_tag: None
|
90 |
library_name: None
|
91 |
-
createdAt:
|
92 |
-
modelId:
|
93 |
-
siblings: [{'rfilename': '.gitattributes'}
|
94 |
-
- _id:
|
95 |
-
id:
|
96 |
-
author:
|
97 |
gated: False
|
98 |
inference: library-not-detected
|
99 |
-
lastModified: 2024-
|
100 |
likes: 0
|
101 |
trendingScore: 0.0
|
102 |
private: False
|
103 |
-
sha:
|
104 |
config: None
|
105 |
downloads: 0
|
106 |
tags: ['region:us']
|
107 |
pipeline_tag: None
|
108 |
library_name: None
|
109 |
-
createdAt: 2024-
|
110 |
-
modelId:
|
111 |
siblings: [{'rfilename': '.gitattributes'}]
|
112 |
-
- _id:
|
113 |
-
id:
|
114 |
-
author:
|
115 |
gated: False
|
116 |
inference: not-popular-enough
|
117 |
-
lastModified:
|
118 |
likes: 0
|
119 |
trendingScore: 0.0
|
120 |
private: False
|
121 |
-
sha:
|
122 |
-
config:
|
123 |
-
downloads:
|
124 |
-
tags: ['
|
125 |
-
pipeline_tag: text-
|
126 |
-
library_name:
|
127 |
-
createdAt:
|
128 |
-
modelId:
|
129 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': '
|
130 |
-
- _id:
|
131 |
-
id:
|
132 |
-
author:
|
133 |
gated: False
|
134 |
-
inference:
|
135 |
-
lastModified: 2024-
|
136 |
likes: 0
|
137 |
trendingScore: 0.0
|
138 |
private: False
|
139 |
-
sha:
|
140 |
-
config:
|
141 |
-
downloads:
|
142 |
-
tags: ['
|
143 |
pipeline_tag: None
|
144 |
-
library_name:
|
145 |
-
createdAt: 2024-
|
146 |
-
modelId:
|
147 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': '
|
148 |
-
- _id:
|
149 |
-
id:
|
150 |
-
author:
|
151 |
gated: False
|
152 |
inference: library-not-detected
|
153 |
-
lastModified:
|
154 |
likes: 0
|
155 |
trendingScore: 0.0
|
156 |
private: False
|
157 |
-
sha:
|
158 |
config: None
|
159 |
downloads: 0
|
160 |
-
tags: ['
|
161 |
pipeline_tag: None
|
162 |
library_name: None
|
163 |
-
createdAt:
|
164 |
-
modelId:
|
165 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': '
|
166 |
-
- _id:
|
167 |
-
id:
|
168 |
-
author:
|
169 |
gated: False
|
170 |
inference: pipeline-not-detected
|
171 |
-
lastModified: 2024-
|
172 |
likes: 0
|
173 |
trendingScore: 0.0
|
174 |
private: False
|
175 |
-
sha:
|
176 |
-
config: {}
|
177 |
-
downloads:
|
178 |
-
tags: ['
|
179 |
pipeline_tag: None
|
180 |
-
library_name:
|
181 |
-
createdAt: 2024-
|
182 |
-
modelId:
|
183 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': '
|
184 |
-
- _id:
|
185 |
-
id:
|
186 |
-
author:
|
187 |
gated: False
|
188 |
inference: library-not-detected
|
189 |
-
lastModified: 2023-
|
190 |
likes: 0
|
191 |
trendingScore: 0.0
|
192 |
private: False
|
193 |
-
sha:
|
194 |
config: None
|
195 |
downloads: 0
|
196 |
tags: ['region:us']
|
197 |
pipeline_tag: None
|
198 |
library_name: None
|
199 |
-
createdAt: 2023-
|
200 |
-
modelId:
|
201 |
siblings: [{'rfilename': '.gitattributes'}]
|
202 |
-
- _id:
|
203 |
-
id:
|
204 |
-
author:
|
205 |
gated: False
|
206 |
-
inference: not-
|
207 |
-
lastModified:
|
208 |
likes: 0
|
209 |
trendingScore: 0.0
|
210 |
private: False
|
211 |
-
sha:
|
212 |
-
config:
|
213 |
-
downloads:
|
214 |
-
tags: ['
|
215 |
-
pipeline_tag:
|
216 |
-
library_name:
|
217 |
-
createdAt:
|
218 |
-
modelId:
|
219 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
- column: siblings
|
38 |
type: STRUCT(rfilename VARCHAR)[]
|
39 |
random_items:
|
40 |
+
- _id: 66cf51339e9ede3997dcb735
|
41 |
+
id: Qilan2/box
|
42 |
+
author: Qilan2
|
43 |
gated: False
|
44 |
inference: library-not-detected
|
45 |
+
lastModified: 2024-09-08T16:06:43.000Z
|
46 |
likes: 0
|
47 |
trendingScore: 0.0
|
48 |
private: False
|
49 |
+
sha: 1e757396cfe5e44edc0963d1b163e259f1b3c954
|
50 |
config: None
|
51 |
downloads: 0
|
52 |
+
tags: ['license:mit', 'region:us']
|
53 |
pipeline_tag: None
|
54 |
library_name: None
|
55 |
+
createdAt: 2024-08-28T16:32:51.000Z
|
56 |
+
modelId: Qilan2/box
|
57 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'CF_Tunnel/a403a5b0-a6ec-4813-a84a-1d8a65469329.json'}, {'rfilename': 'CF_Tunnel/cert.pem'}, {'rfilename': 'CF_Tunnel/config.yml'}, {'rfilename': 'README.md'}, {'rfilename': 'frp/a.txt'}, {'rfilename': 'frp/frpc'}, {'rfilename': 'vpsgj/a.txt'}, {'rfilename': 'vpsgj/install.sh'}, {'rfilename': 'vpsgj/node.db'}]
|
58 |
+
- _id: 6428dff36e9ac4c7a777ad29
|
59 |
+
id: vitaorganization/eqwewqewq
|
60 |
+
author: vitaorganization
|
61 |
gated: False
|
62 |
inference: library-not-detected
|
63 |
+
lastModified: 2023-04-02T01:52:51.000Z
|
64 |
likes: 0
|
65 |
trendingScore: 0.0
|
66 |
private: False
|
67 |
+
sha: b0049684bcdca0b30d8cb4e7bb659ee5f393007d
|
68 |
config: None
|
69 |
downloads: 0
|
70 |
+
tags: ['region:us']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
pipeline_tag: None
|
72 |
library_name: None
|
73 |
+
createdAt: 2023-04-02T01:52:51.000Z
|
74 |
+
modelId: vitaorganization/eqwewqewq
|
75 |
+
siblings: [{'rfilename': '.gitattributes'}]
|
76 |
+
- _id: 66b85156c689a131a09bc4d3
|
77 |
+
id: cookli/ai
|
78 |
+
author: cookli
|
79 |
gated: False
|
80 |
inference: library-not-detected
|
81 |
+
lastModified: 2024-08-11T05:51:18.000Z
|
82 |
likes: 0
|
83 |
trendingScore: 0.0
|
84 |
private: False
|
85 |
+
sha: e47462efacbe42da38cd3036f8d0cc9432cc4629
|
86 |
config: None
|
87 |
downloads: 0
|
88 |
tags: ['region:us']
|
89 |
pipeline_tag: None
|
90 |
library_name: None
|
91 |
+
createdAt: 2024-08-11T05:51:18.000Z
|
92 |
+
modelId: cookli/ai
|
93 |
siblings: [{'rfilename': '.gitattributes'}]
|
94 |
+
- _id: 646e319c5c3c0df5aefc9b3b
|
95 |
+
id: Smoden/newest_Alice_mix_wizard_mix_Narnia_Grimm_diff_lora_v3
|
96 |
+
author: Smoden
|
97 |
gated: False
|
98 |
inference: not-popular-enough
|
99 |
+
lastModified: 2023-05-24T17:06:38.000Z
|
100 |
likes: 0
|
101 |
trendingScore: 0.0
|
102 |
private: False
|
103 |
+
sha: 7f1fd22832984472af8b345f81faac736c6b33db
|
104 |
+
config: None
|
105 |
+
downloads: 4
|
106 |
+
tags: ['diffusers', 'tensorboard', 'stable-diffusion', 'stable-diffusion-diffusers', 'text-to-image', 'lora', 'base_model:runwayml/stable-diffusion-v1-5', 'base_model:adapter:runwayml/stable-diffusion-v1-5', 'license:creativeml-openrail-m', 'region:us']
|
107 |
+
pipeline_tag: text-to-image
|
108 |
+
library_name: diffusers
|
109 |
+
createdAt: 2023-05-24T15:47:40.000Z
|
110 |
+
modelId: Smoden/newest_Alice_mix_wizard_mix_Narnia_Grimm_diff_lora_v3
|
111 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'checkpoint-1500/optimizer.bin'}, {'rfilename': 'checkpoint-1500/pytorch_model.bin'}, {'rfilename': 'checkpoint-1500/random_states_0.pkl'}, {'rfilename': 'checkpoint-1500/scaler.pt'}, {'rfilename': 'checkpoint-1500/scheduler.bin'}, {'rfilename': 'checkpoint-3000/optimizer.bin'}, {'rfilename': 'checkpoint-3000/pytorch_model.bin'}, {'rfilename': 'checkpoint-3000/random_states_0.pkl'}, {'rfilename': 'checkpoint-3000/scaler.pt'}, {'rfilename': 'checkpoint-3000/scheduler.bin'}, {'rfilename': 'checkpoint-4500/optimizer.bin'}, {'rfilename': 'checkpoint-4500/pytorch_model.bin'}, {'rfilename': 'checkpoint-4500/random_states_0.pkl'}, {'rfilename': 'checkpoint-4500/scaler.pt'}, {'rfilename': 'checkpoint-4500/scheduler.bin'}, {'rfilename': 'checkpoint-6000/optimizer.bin'}, {'rfilename': 'checkpoint-6000/pytorch_model.bin'}, {'rfilename': 'checkpoint-6000/random_states_0.pkl'}, {'rfilename': 'checkpoint-6000/scaler.pt'}, {'rfilename': 'checkpoint-6000/scheduler.bin'}, {'rfilename': 'logs/text2image-fine-tune/1684760674.3912466/events.out.tfevents.1684760674.aee914add1dd.955.1'}, {'rfilename': 'logs/text2image-fine-tune/1684760674.4013386/hparams.yml'}, {'rfilename': 'logs/text2image-fine-tune/1684765379.9270568/events.out.tfevents.1684765379.aee914add1dd.22116.1'}, {'rfilename': 'logs/text2image-fine-tune/1684765379.9417412/hparams.yml'}, {'rfilename': 'logs/text2image-fine-tune/1684769891.9725/events.out.tfevents.1684769891.7d434417c36b.2788.1'}, {'rfilename': 'logs/text2image-fine-tune/1684769891.9847946/hparams.yml'}, {'rfilename': 'logs/text2image-fine-tune/1684811437.16052/events.out.tfevents.1684811437.21429f0dda2b.1781.1'}, {'rfilename': 'logs/text2image-fine-tune/1684811437.1710227/hparams.yml'}, {'rfilename': 'logs/text2image-fine-tune/1684943307.6612513/events.out.tfevents.1684943307.704800d7cea7.2271.1'}, {'rfilename': 'logs/text2image-fine-tune/1684943307.6714473/hparams.yml'}, {'rfilename': 'logs/text2image-fine-tune/events.out.tfevents.1684760674.aee914add1dd.955.0'}, {'rfilename': 'logs/text2image-fine-tune/events.out.tfevents.1684769891.7d434417c36b.2788.0'}, {'rfilename': 'logs/text2image-fine-tune/events.out.tfevents.1684811436.21429f0dda2b.1781.0'}, {'rfilename': 'logs/text2image-fine-tune/events.out.tfevents.1684943307.704800d7cea7.2271.0'}, {'rfilename': 'pytorch_lora_weights.bin'}]
|
112 |
+
- _id: 66c2f2adac74db25de20a729
|
113 |
+
id: RichardErkhov/hongzoh_-_Yi-6B_Open-Platypus-v2-gguf
|
114 |
+
author: RichardErkhov
|
115 |
gated: False
|
116 |
+
inference: library-not-detected
|
117 |
+
lastModified: 2024-08-19T08:26:43.000Z
|
118 |
likes: 0
|
119 |
trendingScore: 0.0
|
120 |
private: False
|
121 |
+
sha: 5e72b1be4db9cb73d6596e3fd9dd5f9f98da8a19
|
122 |
+
config: None
|
123 |
+
downloads: 152
|
124 |
+
tags: ['gguf', 'region:us']
|
125 |
pipeline_tag: None
|
126 |
+
library_name: None
|
127 |
+
createdAt: 2024-08-19T07:22:21.000Z
|
128 |
+
modelId: RichardErkhov/hongzoh_-_Yi-6B_Open-Platypus-v2-gguf
|
129 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.IQ3_M.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.IQ3_S.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.IQ3_XS.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.IQ4_NL.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.IQ4_XS.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q2_K.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q3_K.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q3_K_L.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q3_K_M.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q3_K_S.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q4_0.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q4_1.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q4_K.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q4_K_M.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q4_K_S.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q5_0.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q5_1.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q5_K.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q5_K_M.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q5_K_S.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q6_K.gguf'}, {'rfilename': 'Yi-6B_Open-Platypus-v2.Q8_0.gguf'}]
|
130 |
+
- _id: 63af464cf5c31985d2f6b917
|
131 |
+
id: geese92xg2xg/opxWwyCui6
|
132 |
+
author: geese92xg2xg
|
133 |
gated: False
|
134 |
inference: library-not-detected
|
135 |
+
lastModified: 2022-12-30T20:13:17.000Z
|
136 |
likes: 0
|
137 |
trendingScore: 0.0
|
138 |
private: False
|
139 |
+
sha: 38de64243d1dcf1c7f45103f971dc557145df06f
|
140 |
config: None
|
141 |
downloads: 0
|
142 |
+
tags: ['region:us']
|
143 |
pipeline_tag: None
|
144 |
library_name: None
|
145 |
+
createdAt: 2022-12-30T20:13:00.000Z
|
146 |
+
modelId: geese92xg2xg/opxWwyCui6
|
147 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'One-P_517.mp4'}]
|
148 |
+
- _id: 66abac57ff7021fd06633671
|
149 |
+
id: Krabat/Qwen-Qwen1.5-1.8B-1722526807
|
150 |
+
author: Krabat
|
151 |
gated: False
|
152 |
inference: pipeline-not-detected
|
153 |
+
lastModified: 2024-08-01T15:40:09.000Z
|
154 |
likes: 0
|
155 |
trendingScore: 0.0
|
156 |
private: False
|
157 |
+
sha: a6fc1239b31318cc21e0a62ba5f9070176361ec5
|
158 |
+
config: {"tokenizer_config": {"bos_token": null, "chat_template": "{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system\nYou are a helpful assistant<|im_end|>\n' }}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}", "eos_token": "<|endoftext|>", "pad_token": "<|endoftext|>", "unk_token": null}, "peft": {"base_model_name_or_path": "Qwen/Qwen1.5-1.8B", "task_type": "CAUSAL_LM"}}
|
159 |
+
downloads: 0
|
160 |
+
tags: ['peft', 'safetensors', 'arxiv:1910.09700', 'base_model:Qwen/Qwen1.5-1.8B', 'base_model:adapter:Qwen/Qwen1.5-1.8B', 'region:us']
|
161 |
pipeline_tag: None
|
162 |
+
library_name: peft
|
163 |
+
createdAt: 2024-08-01T15:40:07.000Z
|
164 |
+
modelId: Krabat/Qwen-Qwen1.5-1.8B-1722526807
|
165 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'adapter_config.json'}, {'rfilename': 'adapter_model.safetensors'}, {'rfilename': 'added_tokens.json'}, {'rfilename': 'merges.txt'}, {'rfilename': 'special_tokens_map.json'}, {'rfilename': 'tokenizer.json'}, {'rfilename': 'tokenizer_config.json'}, {'rfilename': 'training_args.bin'}, {'rfilename': 'vocab.json'}]
|
166 |
+
- _id: 63b5bbd6c5a5432fd85a56a6
|
167 |
+
id: imselimdizer/opus-mt-en-ro-finetuned-en-to-ro
|
168 |
+
author: imselimdizer
|
169 |
gated: False
|
170 |
inference: library-not-detected
|
171 |
+
lastModified: 2023-01-04T17:48:06.000Z
|
172 |
likes: 0
|
173 |
trendingScore: 0.0
|
174 |
private: False
|
175 |
+
sha: f8c44f97ce7893c936fe01e76f524cd485575c58
|
176 |
config: None
|
177 |
downloads: 0
|
178 |
tags: ['region:us']
|
179 |
pipeline_tag: None
|
180 |
library_name: None
|
181 |
+
createdAt: 2023-01-04T17:48:06.000Z
|
182 |
+
modelId: imselimdizer/opus-mt-en-ro-finetuned-en-to-ro
|
183 |
siblings: [{'rfilename': '.gitattributes'}]
|
184 |
+
- _id: 66840a33e2e0c3b21509d075
|
185 |
+
id: hichemzahaf/Commersco
|
186 |
+
author: hichemzahaf
|
187 |
gated: False
|
188 |
+
inference: library-not-detected
|
189 |
+
lastModified: 2024-07-02T14:09:55.000Z
|
190 |
likes: 0
|
191 |
trendingScore: 0.0
|
192 |
private: False
|
193 |
+
sha: e86012a0856429c0d5f327c6745e4565db2e4cb4
|
194 |
+
config: None
|
195 |
+
downloads: 0
|
196 |
+
tags: ['license:lgpl-3.0', 'region:us']
|
197 |
+
pipeline_tag: None
|
198 |
+
library_name: None
|
199 |
+
createdAt: 2024-07-02T14:09:55.000Z
|
200 |
+
modelId: hichemzahaf/Commersco
|
201 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}]
|
202 |
+
- _id: 64e757e9e9fc9d0475f7012c
|
203 |
+
id: ailabturkiye/Yuumi500Epoch
|
204 |
+
author: ailabturkiye
|
205 |
+
gated: False
|
206 |
+
inference: library-not-detected
|
207 |
+
lastModified: 2023-08-24T13:19:22.000Z
|
208 |
+
likes: 0
|
209 |
+
trendingScore: 0.0
|
210 |
+
private: False
|
211 |
+
sha: 5f592731e23a3f3e327ddf1add5bd0508345e311
|
212 |
+
config: None
|
213 |
+
downloads: 0
|
214 |
+
tags: ['license:openrail', 'region:us']
|
215 |
+
pipeline_tag: None
|
216 |
+
library_name: None
|
217 |
+
createdAt: 2023-08-24T13:15:21.000Z
|
218 |
+
modelId: ailabturkiye/Yuumi500Epoch
|
219 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'Yuumi.zip'}]
|
tables/models.parquet
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:754a7b4c2d0a78ce24d0ee73b23981edf1234b747d46d8462bef73d81971bd7a
|
3 |
+
size 293637352
|
tables/parents.example.yaml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
- - 665e24a2a57b277d7ad1efc7
|
2 |
+
- powermove72/GK-MoE-0.1
|
3 |
+
- - argilla/notus-7b-v1
|
4 |
+
- GritLM/GritLM-7B
|
5 |
+
- - 66f24dbcea33ea049640b3fd
|
6 |
+
- tanoManzo/nucleotide-transformer-2.5b-multi-species_ft_BioS73_1kbpHG19_DHSs_H3K27AC
|
7 |
+
- - InstaDeepAI/nucleotide-transformer-2.5b-multi-species
|
8 |
+
- - 66f0a9640efe838083fd5940
|
9 |
+
- Krabat/google-gemma-2b-1727048036
|
10 |
+
- - google/gemma-2b
|
11 |
+
- - 66ea446e1654494d77d57887
|
12 |
+
- huazi123/Qwen-Qwen1.5-0.5B-1726628976
|
13 |
+
- - Qwen/Qwen1.5-0.5B
|
14 |
+
- - 667b1b708d744351bfbda26f
|
15 |
+
- SAlonsoGar/GGUFTrainedGamification
|
16 |
+
- - meta-llama/Llama-2-7b-hf
|
17 |
+
- - 66d2b514ad293ffc4b5aa798
|
18 |
+
- linger2334/Qwen-Qwen1.5-1.8B-1725084944
|
19 |
+
- - Qwen/Qwen1.5-1.8B
|
20 |
+
- - 66c44accab8f09b10b75dc83
|
21 |
+
- jerseyjerry/google-gemma-2b-1724140236
|
22 |
+
- - google/gemma-2b
|
23 |
+
- - 64ee58d7c392a3e66bd2dc62
|
24 |
+
- ThuyNT03/xlm-roberta-base-New_VietNam-aug_insert_synonym-1
|
25 |
+
- - FacebookAI/xlm-roberta-base
|
26 |
+
- - 660a65708695a785edd47ce4
|
27 |
+
- mradermacher/RedDevil-7B-GGUF
|
28 |
+
- - yusukewm/RedDevil-7B
|
29 |
+
- - 66eb2aef5ee90db899613a33
|
30 |
+
- vislupus/SD1.5-LoRA-Loving-Vincent-Style
|
31 |
+
- - GraydientPlatformAPI/realcartoon-real17
|
tables/parents.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3338a0aa68db694fcdd85ea5d7989d905cf0f5f72c6c26d3126a73398655d9d3
|
3 |
+
size 37930028
|
tables/spaces.example.yaml
CHANGED
@@ -29,143 +29,143 @@ spaces:
|
|
29 |
- column: siblings
|
30 |
type: STRUCT(rfilename VARCHAR)[]
|
31 |
random_items:
|
32 |
-
- _id:
|
33 |
-
id:
|
34 |
-
author:
|
35 |
-
cardData: {"title": "
|
36 |
-
lastModified: 2024-
|
37 |
likes: 0
|
38 |
trendingScore: 0.0
|
39 |
private: False
|
40 |
-
sha:
|
41 |
-
subdomain:
|
42 |
-
sdk:
|
43 |
-
tags: ['
|
44 |
-
createdAt: 2024-
|
45 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': '
|
46 |
-
- _id:
|
47 |
-
id:
|
48 |
-
author:
|
49 |
-
cardData: {"title": "
|
50 |
-
lastModified:
|
51 |
-
likes:
|
52 |
trendingScore: 0.0
|
53 |
private: False
|
54 |
-
sha:
|
55 |
-
subdomain:
|
56 |
-
sdk:
|
57 |
-
tags: ['
|
58 |
-
createdAt:
|
59 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'app.py'}, {'rfilename': '
|
60 |
-
- _id:
|
61 |
-
id:
|
62 |
-
author:
|
63 |
-
cardData: {"title": "
|
64 |
-
lastModified:
|
65 |
likes: 0
|
66 |
trendingScore: 0.0
|
67 |
private: False
|
68 |
-
sha:
|
69 |
-
subdomain:
|
70 |
-
sdk:
|
71 |
-
tags: ['
|
72 |
-
createdAt:
|
73 |
-
siblings: [{'rfilename': '.
|
74 |
-
- _id:
|
75 |
-
id:
|
76 |
-
author:
|
77 |
-
cardData: {"title": "
|
78 |
-
lastModified: 2023-
|
79 |
likes: 0
|
80 |
trendingScore: 0.0
|
81 |
private: False
|
82 |
-
sha:
|
83 |
-
subdomain:
|
84 |
sdk: docker
|
85 |
tags: ['docker']
|
86 |
-
createdAt: 2023-
|
87 |
-
siblings: [{'rfilename': '.
|
88 |
-
- _id:
|
89 |
-
id:
|
90 |
-
author:
|
91 |
-
cardData: {"title": "
|
92 |
-
lastModified: 2024-
|
93 |
likes: 0
|
94 |
trendingScore: 0.0
|
95 |
private: False
|
96 |
-
sha:
|
97 |
-
subdomain:
|
98 |
sdk: docker
|
99 |
-
tags: ['docker']
|
100 |
-
createdAt: 2024-10-
|
101 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'Dockerfile'}, {'rfilename': 'README.md'}
|
102 |
-
- _id:
|
103 |
-
id:
|
104 |
-
author:
|
105 |
-
cardData: {"title": "
|
106 |
-
lastModified:
|
107 |
likes: 0
|
108 |
trendingScore: 0.0
|
109 |
private: False
|
110 |
-
sha:
|
111 |
-
subdomain:
|
112 |
-
sdk:
|
113 |
-
tags: ['
|
114 |
-
createdAt:
|
115 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}
|
116 |
-
- _id:
|
117 |
-
id:
|
118 |
-
author:
|
119 |
-
cardData: {"title": "
|
120 |
-
lastModified: 2023-
|
121 |
likes: 0
|
122 |
trendingScore: 0.0
|
123 |
private: False
|
124 |
-
sha:
|
125 |
-
subdomain:
|
126 |
sdk: gradio
|
127 |
tags: ['gradio']
|
128 |
-
createdAt: 2023-
|
129 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'app.py'}, {'rfilename': 'requirements.txt'}]
|
130 |
-
- _id:
|
131 |
-
id:
|
132 |
-
author:
|
133 |
-
cardData: {"title": "
|
134 |
-
lastModified: 2024-
|
135 |
likes: 0
|
136 |
trendingScore: 0.0
|
137 |
private: False
|
138 |
-
sha:
|
139 |
-
subdomain:
|
140 |
-
sdk:
|
141 |
-
tags: ['
|
142 |
-
createdAt: 2024-
|
143 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}
|
144 |
-
- _id:
|
145 |
-
id:
|
146 |
-
author:
|
147 |
-
cardData: {"title": "
|
148 |
-
lastModified: 2024-
|
149 |
likes: 0
|
150 |
trendingScore: 0.0
|
151 |
private: False
|
152 |
-
sha:
|
153 |
-
subdomain:
|
154 |
-
sdk:
|
155 |
-
tags: ['
|
156 |
-
createdAt: 2024-
|
157 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': '
|
158 |
-
- _id:
|
159 |
-
id:
|
160 |
-
author:
|
161 |
-
cardData: {"title": "
|
162 |
-
lastModified: 2024-
|
163 |
likes: 0
|
164 |
trendingScore: 0.0
|
165 |
private: False
|
166 |
-
sha:
|
167 |
-
subdomain:
|
168 |
-
sdk:
|
169 |
-
tags: ['
|
170 |
-
createdAt: 2024-
|
171 |
-
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}
|
|
|
29 |
- column: siblings
|
30 |
type: STRUCT(rfilename VARCHAR)[]
|
31 |
random_items:
|
32 |
+
- _id: 667549579f2810b009630f2a
|
33 |
+
id: Quittt/twikoo
|
34 |
+
author: Quittt
|
35 |
+
cardData: {"title": "Twikoo", "emoji": "\ud83d\udd25", "colorFrom": "blue", "colorTo": "red", "sdk": "docker", "pinned": false}
|
36 |
+
lastModified: 2024-06-21T09:36:38.000Z
|
37 |
likes: 0
|
38 |
trendingScore: 0.0
|
39 |
private: False
|
40 |
+
sha: 3ede8a076207a375f9d3c9d3478944e8abdfdcf8
|
41 |
+
subdomain: quittt-twikoo
|
42 |
+
sdk: docker
|
43 |
+
tags: ['docker']
|
44 |
+
createdAt: 2024-06-21T09:35:19.000Z
|
45 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'Dockerfile'}, {'rfilename': 'README.md'}]
|
46 |
+
- _id: 63f882534a7daa003c9d3046
|
47 |
+
id: Sning/anime-remove-background
|
48 |
+
author: Sning
|
49 |
+
cardData: {"title": "Anime Remove Background", "emoji": "\ud83e\ude84\ud83d\uddbc\ufe0f", "colorFrom": "indigo", "colorTo": "pink", "sdk": "gradio", "sdk_version": "3.1.4", "app_file": "app.py", "pinned": false, "license": "apache-2.0", "duplicated_from": "skytnt/anime-remove-background"}
|
50 |
+
lastModified: 2023-02-24T09:24:35.000Z
|
51 |
+
likes: 0
|
52 |
trendingScore: 0.0
|
53 |
private: False
|
54 |
+
sha: 9d2aa86d0fd9348537f7a28a347162ced97a2fda
|
55 |
+
subdomain: sning-anime-remove-background
|
56 |
+
sdk: gradio
|
57 |
+
tags: ['gradio']
|
58 |
+
createdAt: 2023-02-24T09:24:35.000Z
|
59 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': '.gitignore'}, {'rfilename': 'README.md'}, {'rfilename': 'app.py'}, {'rfilename': 'examples/01.jpg'}, {'rfilename': 'examples/02.jpg'}, {'rfilename': 'examples/03.jpg'}, {'rfilename': 'requirements.txt'}]
|
60 |
+
- _id: 66c1fe1a8c3816c56387e4bb
|
61 |
+
id: davoodwadi/LLM-Demo
|
62 |
+
author: davoodwadi
|
63 |
+
cardData: {"title": "LLM Demo", "emoji": "\ud83d\udc41", "colorFrom": "green", "colorTo": "indigo", "sdk": "gradio", "sdk_version": "4.41.0", "app_file": "app.py", "pinned": false, "license": "apache-2.0"}
|
64 |
+
lastModified: 2024-08-18T14:06:34.000Z
|
65 |
likes: 0
|
66 |
trendingScore: 0.0
|
67 |
private: False
|
68 |
+
sha: cacbaffe405a5a634f8e80b0e9960f6f754decd0
|
69 |
+
subdomain: davoodwadi-llm-demo
|
70 |
+
sdk: gradio
|
71 |
+
tags: ['gradio']
|
72 |
+
createdAt: 2024-08-18T13:58:50.000Z
|
73 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'app.py'}, {'rfilename': 'requirements.txt'}]
|
74 |
+
- _id: 656bb2716836cb340a43ed0f
|
75 |
+
id: bakinyener/deneme1
|
76 |
+
author: bakinyener
|
77 |
+
cardData: {"title": "Shiny for Python template", "emoji": "\ud83c\udf0d", "colorFrom": "yellow", "colorTo": "indigo", "sdk": "docker", "pinned": false, "license": "apache-2.0"}
|
78 |
+
lastModified: 2023-12-02T22:40:50.000Z
|
79 |
likes: 0
|
80 |
trendingScore: 0.0
|
81 |
private: False
|
82 |
+
sha: 581c1c1c45e3a77faabccf7fc6045981da206caa
|
83 |
+
subdomain: bakinyener-deneme1
|
84 |
sdk: docker
|
85 |
tags: ['docker']
|
86 |
+
createdAt: 2023-12-02T22:40:49.000Z
|
87 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': '.gitignore'}, {'rfilename': '.vscode/settings.json'}, {'rfilename': 'Dockerfile'}, {'rfilename': 'README.md'}, {'rfilename': 'app.py'}, {'rfilename': 'penguins.csv'}, {'rfilename': 'requirements.txt'}, {'rfilename': 'www/Adelie.png'}, {'rfilename': 'www/Chinstrap.png'}, {'rfilename': 'www/Gentoo.png'}, {'rfilename': 'www/penguins.png'}]
|
88 |
+
- _id: 67137b941f9c5e82e5317f79
|
89 |
+
id: parallelao/divinediarrhea
|
90 |
+
author: parallelao
|
91 |
+
cardData: {"title": "Divinediarrhea", "emoji": "\ud83d\ude80", "colorFrom": "blue", "colorTo": "green", "sdk": "docker", "pinned": false, "hf_oauth": true, "hf_oauth_expiration_minutes": 36000, "hf_oauth_scopes": ["read-repos", "write-repos", "manage-repos", "inference-api", "read-billing"], "tags": ["autotrain"], "license": "mit", "short_description": "divinediarrhea"}
|
92 |
+
lastModified: 2024-10-19T09:27:50.000Z
|
93 |
likes: 0
|
94 |
trendingScore: 0.0
|
95 |
private: False
|
96 |
+
sha: 9088e31ba225498c8e929d64edec8e84f29bdeb5
|
97 |
+
subdomain: parallelao-divinediarrhea
|
98 |
sdk: docker
|
99 |
+
tags: ['docker', 'autotrain']
|
100 |
+
createdAt: 2024-10-19T09:27:48.000Z
|
101 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'Dockerfile'}, {'rfilename': 'README.md'}]
|
102 |
+
- _id: 653206c8220f490dba9b8c88
|
103 |
+
id: tholapz/manta-classifier
|
104 |
+
author: tholapz
|
105 |
+
cardData: {"title": "Manta Classifier", "emoji": "\u26a1", "colorFrom": "purple", "colorTo": "green", "sdk": "streamlit", "sdk_version": "1.27.2", "app_file": "app.py", "pinned": false, "license": "mit"}
|
106 |
+
lastModified: 2023-10-20T04:49:13.000Z
|
107 |
likes: 0
|
108 |
trendingScore: 0.0
|
109 |
private: False
|
110 |
+
sha: 8db17fd809dc287480641c6e768a0b204dce0b6c
|
111 |
+
subdomain: tholapz-manta-classifier
|
112 |
+
sdk: streamlit
|
113 |
+
tags: ['streamlit']
|
114 |
+
createdAt: 2023-10-20T04:49:12.000Z
|
115 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}]
|
116 |
+
- _id: 64402842d4229e14ae9ac4f7
|
117 |
+
id: rohitp1/whisper-small-en-noise-robust
|
118 |
+
author: rohitp1
|
119 |
+
cardData: {"title": "Whisper Small En Noise Robust", "emoji": "\ud83d\udcca", "colorFrom": "purple", "colorTo": "yellow", "sdk": "gradio", "python_version": "3.9", "sdk_version": "3.29.0", "app_file": "app.py", "pinned": false}
|
120 |
+
lastModified: 2023-06-25T13:29:54.000Z
|
121 |
likes: 0
|
122 |
trendingScore: 0.0
|
123 |
private: False
|
124 |
+
sha: f97d6e9d605f86fb7412181767d0ccfec77c7288
|
125 |
+
subdomain: rohitp1-whisper-small-en-noise-robust
|
126 |
sdk: gradio
|
127 |
tags: ['gradio']
|
128 |
+
createdAt: 2023-04-19T17:43:30.000Z
|
129 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}, {'rfilename': 'app.py'}, {'rfilename': 'audio/sample1.wav'}, {'rfilename': 'audio/sample2.wav'}, {'rfilename': 'audio/sample3.wav'}, {'rfilename': 'requirements.txt'}]
|
130 |
+
- _id: 668e74030d872afb9c7c5b55
|
131 |
+
id: JoudarZakaria/Azer
|
132 |
+
author: JoudarZakaria
|
133 |
+
cardData: {"title": "Azer", "emoji": "\ud83c\udfc3", "colorFrom": "blue", "colorTo": "green", "sdk": "streamlit", "sdk_version": "1.36.0", "app_file": "app.py", "pinned": false, "license": "apache-2.0"}
|
134 |
+
lastModified: 2024-07-10T11:44:03.000Z
|
135 |
likes: 0
|
136 |
trendingScore: 0.0
|
137 |
private: False
|
138 |
+
sha: 02ac60a994e3113c7aef46730b5b45adc99ae01d
|
139 |
+
subdomain: joudarzakaria-azer
|
140 |
+
sdk: streamlit
|
141 |
+
tags: ['streamlit']
|
142 |
+
createdAt: 2024-07-10T11:44:03.000Z
|
143 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}]
|
144 |
+
- _id: 66a750e8d8e328e1437435f1
|
145 |
+
id: mkhasawneh/youtube_subtitle
|
146 |
+
author: mkhasawneh
|
147 |
+
cardData: {"title": "Youtube Subtitle", "emoji": "\ud83d\udc28", "colorFrom": "indigo", "colorTo": "gray", "sdk": "docker", "pinned": false}
|
148 |
+
lastModified: 2024-08-12T13:58:04.000Z
|
149 |
likes: 0
|
150 |
trendingScore: 0.0
|
151 |
private: False
|
152 |
+
sha: c4243804a43c57e208160f11f9300c0930c070c4
|
153 |
+
subdomain: mkhasawneh-youtube-subtitle
|
154 |
+
sdk: docker
|
155 |
+
tags: ['docker']
|
156 |
+
createdAt: 2024-07-29T08:20:56.000Z
|
157 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'Dockerfile'}, {'rfilename': 'README.md'}, {'rfilename': 'app.py'}, {'rfilename': 'requirements.txt'}]
|
158 |
+
- _id: 66db19d9c81167fc5ee45c6a
|
159 |
+
id: yufyyfhj8/fgf
|
160 |
+
author: yufyyfhj8
|
161 |
+
cardData: {"title": "Fgf", "emoji": "\ud83d\udc28", "colorFrom": "red", "colorTo": "gray", "sdk": "docker", "pinned": false}
|
162 |
+
lastModified: 2024-09-06T15:03:53.000Z
|
163 |
likes: 0
|
164 |
trendingScore: 0.0
|
165 |
private: False
|
166 |
+
sha: 9f6ed459d9a9e573545d2aef0933dee392ee8b8e
|
167 |
+
subdomain: yufyyfhj8-fgf
|
168 |
+
sdk: docker
|
169 |
+
tags: ['docker']
|
170 |
+
createdAt: 2024-09-06T15:03:53.000Z
|
171 |
+
siblings: [{'rfilename': '.gitattributes'}, {'rfilename': 'README.md'}]
|
tables/spaces.parquet
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e524499cb26a98045b62bef788a576f2aca50c83481ae56fd7393a70285c79a3
|
3 |
+
size 216158539
|