tobil commited on
Commit
d2eafd9
·
verified ·
1 Parent(s): 744ada1

Upload eval_qwen3-0.6B-sft.csv with huggingface_hub

Browse files
Files changed (1) hide show
  1. eval_qwen3-0.6B-sft.csv +300 -0
eval_qwen3-0.6B-sft.csv ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model,query,expansion,score_pct,rating
2
+ qwen3-0.6B-sft,how to configure authentication,"<think>
3
+
4
+ </think>
5
+
6
+ hyde: Configure authentication by editing the auth file in your home directory: `~/.ssh/authorized_keys`. Add your public key to the list, then paste the private key. For passwordless login, set `sshd_pass` in the auth file. Use authenticity tokens for session authentication. Check ssh-keygen output for your public key.
7
+ lex: configure auth login password ssh
8
+ lex: authentication settings ssh key permissions
9
+ vec: how do you configure authentication and password settings on an SSH server
10
+ vec: what are the methods for configuring authentication on an SSH client or server",72.1,Good
11
+ qwen3-0.6B-sft,typescript async await,"<think>
12
+
13
+ </think>
14
+
15
+ hyde: Async/await is a JavaScript syntax that allows you to write asynchronous code as synchronous functions. In a typical await block, you call an async function, wait for it to complete, then return the result. Use await for when you need to poll or wait for I/O operations, and use Promise for when you need to track progress.
16
+ lex: async await javascript typescript
17
+ lex: async function await awaiter
18
+ lex: javascript async await performance
19
+ vec: how does async/await work in javascript and what are its benefits
20
+ vec: what are the common patterns and use cases for async/await in typescript",71.4,Good
21
+ qwen3-0.6B-sft,docker compose networking,"<think>
22
+
23
+ </think>
24
+
25
+ hyde: In docker-compose.yml, set network_bridge: ""docker0"" to use host network. For services that share a network, use services: service1,service2 in the same network. Multi-stage builds use docker build -t myimage myimage-stage1 myimage-stage2. Use env docker network -t for network settings.
26
+ lex: docker overview compose networking
27
+ lex: docker compose network settings
28
+ lex: docker service networking
29
+ vec: how to configure networking between services in docker compose
30
+ vec: what are the best practices for docker network settings and service isolation",71.4,Good
31
+ qwen3-0.6B-sft,git rebase vs merge,"<think>
32
+
33
+ </think>
34
+
35
+ hyde: Rebase rewrites the commit history to your current state, preserving all commits in the middle. Use git rebase -i HEAD~5 to edit the last 5 commits. squash uses git squash, which keeps the history at 2 commits. choose: when rewording a message, rebase is git format -s, squash is git squash -s. rebase for code commits, squash for final message. learn: git rebase -ms ""message"" squash commits
36
+ lex: git overview rebase merge squash
37
+ lex: git rebase -i squash commits
38
+ lex: git rebase format -s
39
+ vec: when should you use git rebase versus squash commits
40
+ vec: how does the git rebase workflow work with interactive editing and squash commits",71.4,Good
41
+ qwen3-0.6B-sft,react useEffect cleanup,"<think>
42
+
43
+ </think>
44
+
45
+ hyde: Use `useEffect` to track dependencies and clean up side effects. In the cleanup parameter, pass a function that returns `null` or an empty object. Unwind the cleanup array: useEffect(() => { cleanup(); }, ...). Unwind to isolate each function. Clean up calls to `useEffect` when unmounting components.
46
+ lex: useeffect cleanup react -angular
47
+ lex: react useeffect return value
48
+ lex: useeffect cleanup function unmount
49
+ vec: how do you properly clean up side effects in react useeffect and what does the cleanup parameter return
50
+ vec: what is the syntax for useeffect cleanup and how do you unmount components properly",72.1,Good
51
+ qwen3-0.6B-sft,auth,"<think>
52
+
53
+ </think>
54
+
55
+ hyde: User authentication is the process of verifying a user's identity. In the auth flow, a client sends login credentials to the server—usually a REST endpoint like /auth-check—server validates the credentials and returns a token or JWT token. The client uses this token for authorization across API requests.
56
+ lex: authentication login authorization
57
+ lex: auth login flow JWT token
58
+ lex: user auth verification credentials
59
+ vec: how does an authentication process work for web and mobile apps
60
+ vec: what are the different authentication methods including login, password, and token authentication",71.4,Good
61
+ qwen3-0.6B-sft,config,"<think>
62
+
63
+ </think>
64
+
65
+ hyde: This comprehensive guide to config covers all the essential information you need to get started. Follow the steps carefully for best results.
66
+ lex: config tutorial overview
67
+ lex: config guide overview
68
+ lex: config how to overview
69
+ vec: best way to config
70
+ vec: learn config step by step",75.0,Good
71
+ qwen3-0.6B-sft,setup,"<think>
72
+
73
+ </think>
74
+
75
+ hyde: Whether you're a beginner or looking to improve, this guide to setup offers practical advice, common pitfalls to avoid, and proven strategies for success.
76
+ lex: setup advice overview
77
+ lex: setup guide overview
78
+ lex: setup tips overview
79
+ vec: learn setup step by step
80
+ vec: complete guide to setup",78.6,Good
81
+ qwen3-0.6B-sft,api,"<think>
82
+
83
+ </think>
84
+
85
+ hyde: An API refers to an endpoint on a service that provides programmatic interaction. Use GET for data, POST for creating resources, PUT for updating, DELETE for removing. In Python, use requests library: response.json() to parse. In REST, return code 200 for success, 404 for not found, 500 for errors.
86
+ lex: API overview REST endpoints
87
+ lex: API authentication request response
88
+ lex: REST API documentation endpoints
89
+ vec: what is an API and how do you make requests to an API
90
+ vec: how do you use RESTful API endpoints for data exchange and authentication",75.0,Good
91
+ qwen3-0.6B-sft,who is TDS motorsports,"<think>
92
+
93
+ </think>
94
+
95
+ hyde: A profile of TDS Motorsports covering their achievements, strategies, and future prospects.
96
+ lex: tds motorsports biography
97
+ lex: tds overview motorsports results
98
+ lex: tds overview motorsports news
99
+ vec: career overview of TDS Motorsports
100
+ vec: how to TDS Motorsports",82.1,Excellent
101
+ qwen3-0.6B-sft,React hooks tutorial,"<think>
102
+
103
+ </think>
104
+
105
+ hyde: This comprehensive guide covers everything you need to know about React hooks tutorial. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
106
+ lex: React overview hooks tutorial examples
107
+ lex: React hooks tutorial best practices
108
+ lex: React overview hooks tutorial guide
109
+ vec: learn about React hooks tutorial
110
+ vec: complete React hooks tutorial reference",75.0,Good
111
+ qwen3-0.6B-sft,Docker container networking,"<think>
112
+
113
+ </think>
114
+
115
+ hyde: This comprehensive guide covers everything you need to know about Docker container networking. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
116
+ lex: Docker overview container networking tutorial
117
+ lex: Docker overview container networking guide
118
+ lex: Docker container networking best practices
119
+ vec: understanding Docker container networking
120
+ vec: complete Docker container networking reference",75.0,Good
121
+ qwen3-0.6B-sft,Kubernetes pod deployment,"<think>
122
+
123
+ </think>
124
+
125
+ hyde: Create a Kubernetes deployment YAML file with: app name, version, env vars, strategy, selector, template, volume mounts. Use kubectl create deployment -f. Apply a probe for health checks: probe type, path, criteria, timeout. Use persistent volumes for data storage.
126
+ lex: kubernetes pod deployment yaml
127
+ lex: k8s deployment probe health check
128
+ lex: kubectl create deployment
129
+ vec: how to create and configure Kubernetes deployment for container services
130
+ vec: what is a Kubernetes deployment and how do you define health checks for pods",72.9,Good
131
+ qwen3-0.6B-sft,AWS Lambda functions,"<think>
132
+
133
+ </think>
134
+
135
+ hyde: Lambda runs code in response to events, not scheduled. For low-latency requirements, use Fastly or CloudFront. For stateless applications, implement caching with Redis or Nginx. Configure health checks for reliability. Scale on event volume, pay per call for low-latency needs.
136
+ lex: AWS lambda function deployment
137
+ lex: AWS serverless architecture
138
+ lex: lambda execution environment
139
+ vec: how to deploy and scale AWS Lambda functions
140
+ vec: what are the best practices for writing efficient and reliable AWS Lambda code",82.1,Excellent
141
+ qwen3-0.6B-sft,meeting notes project kickoff,"<think>
142
+
143
+ </think>
144
+
145
+ hyde: Project kickoff meeting covered scope, timeline, and team allocation. Target start: Thursday, end: end of Q2. Key wins: feature A in 1 week from the backlog. MVP assigned to frontend.
146
+ lex: project kickoff meeting notes
147
+ lex: kickoff meeting project timeline
148
+ lex: kickoff meeting objectives requirements
149
+ vec: meeting notes from the project kickoff meeting
150
+ vec: what was discussed during the project kickoff meeting",78.6,Good
151
+ qwen3-0.6B-sft,ideas for new feature,"<think>
152
+
153
+ </think>
154
+
155
+ hyde: This comprehensive guide to ideas for new feature covers all the essential information you need to get started. Follow the steps carefully for best results.
156
+ lex: ideas overview for new feature tutorial
157
+ lex: ideas overview for new feature tips
158
+ lex: ideas overview for new feature guide
159
+ vec: how to ideas for new feature effectively
160
+ vec: learn ideas for new feature step by step",78.6,Good
161
+ qwen3-0.6B-sft,todo list app architecture,"<think>
162
+
163
+ </think>
164
+
165
+ hyde: This comprehensive guide covers everything you need to know about todo list app architecture. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
166
+ lex: todo overview list app architecture tutorial
167
+ lex: todo overview list app architecture examples
168
+ lex:todo list app architecture best practices
169
+ vec: understanding todo list app architecture
170
+ vec: how to todo list app architecture",69.3,Good
171
+ qwen3-0.6B-sft,what is dependency injection,"<think>
172
+
173
+ </think>
174
+
175
+ hyde: Dependency injection provides dependencies from outside rather than creating them internally. Class A implements interface B by instantiating a service or passing B's instance to A. Benefits: easy testing (injections test without mocks), flexible configuration, strong coupling with loosely coupled components.
176
+ lex: dependency injection di pattern
177
+ lex: di inversion of control ioc
178
+ lex: dependency injection testing
179
+ vec: what is dependency injection and how does it improve software architecture
180
+ vec: how does dependency injection make unit testing easier",72.9,Good
181
+ qwen3-0.6B-sft,difference between sql and nosql,"<think>
182
+
183
+ </think>
184
+
185
+ hyde: SQL (Structured Query Language) is a declarative language for managing relational databases using tables—structured, ACID-safe, and full-text searchable. Nosql (NoSQL) databases use documents, keys, or graphs—schemaless, horizontal scaling, better for real-time analytics and IoT data.
186
+ lex: sql no sql difference
187
+ lex: sql vs no sql database
188
+ lex: sqlnosql hybrid
189
+ vec: what is the difference between sql and no sql databases
190
+ vec: when should you use sql versus no sql for data storage",72.9,Good
191
+ qwen3-0.6B-sft,kubernetes vs docker swarm,"<think>
192
+
193
+ </think>
194
+
195
+ hyde: Docker Swarm is a Kubernetes extension for team collaboration. It allows squads to share containers, use shared storage, and rotate infrastructure without full Kubernetes migration. kubectl create swarm member has swarm mode enabled. Install with kubectl create -f ./docker-swarm.yaml, then use kubectl create -f ./container-name.yaml in each team.
196
+ lex: kubernetes overview docker swarm comparison
197
+ lex: docker overview kubernetes comparison
198
+ lex: k8s docker swarm docker
199
+ vec: what is kubernetes and how does docker swarm differ from docker as an infrastructure
200
+ vec: how to set up docker swarm for team collaboration in kubernetes",70.0,Good
201
+ qwen3-0.6B-sft,connection timeout error,"<think>
202
+
203
+ </think>
204
+
205
+ hyde: This comprehensive guide covers everything you need to know about connection timeout error. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
206
+ lex: connection timeout error documentation
207
+ lex: connection timeout error best practices
208
+ lex: connection overview timeout error guide
209
+ vec: how to connection timeout error
210
+ vec: understanding connection timeout error",69.3,Good
211
+ qwen3-0.6B-sft,memory leak debugging,"<think>
212
+
213
+ </think>
214
+
215
+ hyde: Use heap profilers: Chrome DevTools for JavaScript, VisualVM or MAT for Java, Valgrind for C/C++, tracemalloc for Python. Take heap snapshots before and after operations, compare retained objects. Common causes: forgotten event listeners, closures holding references, unbounded caches, circular references.
216
+ lex: memory leak debug profiler
217
+ lex: memory leak detection tools
218
+ lex: heap dump memory analysis
219
+ vec: how to find and fix memory leaks in applications
220
+ vec: what tools and techniques are used to debug memory leaks in different programming languages",75.0,Good
221
+ qwen3-0.6B-sft,cors error fix,"<think>
222
+
223
+ </think>
224
+
225
+ hyde: CORS errors occur when a browser blocks requests to a different origin. To fix, check the Access-Control-Allow-Origin headers in your server configuration. In Express, set up a CORS preflight request with Access-Control-Allow-Methods and Access-Control-Allow-Headers. For client side, add the Access-Control-Allow-Origin header explicitly.
226
+ lex: cors error fix browser
227
+ lex: cors preflight access control
228
+ lex: cors header access-control-origin
229
+ vec: how to fix CORS errors when making API requests from a web browser
230
+ vec: what is the underlying reason for CORS errors and how do you configure the server to allow cross-origin requests",69.3,Good
231
+ qwen3-0.6B-sft,recent news about Shopify,"<think>
232
+
233
+ </think>
234
+
235
+ hyde: This comprehensive guide covers everything you need to know about Shopify. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
236
+ lex: Shopify best practices tutorial
237
+ lex: Shopify documentation overview
238
+ lex: Shopify guide overview
239
+ vec: how to recent news about Shopify
240
+ vec: learn about recent news about Shopify",83.6,Excellent
241
+ qwen3-0.6B-sft,latest AI developments,"<think>
242
+
243
+ </think>
244
+
245
+ hyde: This comprehensive guide covers everything you need to know about latest AI developments. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
246
+ lex: latest overview AI developments examples
247
+ lex: latest overview AI developments guide
248
+ lex: latest AI developments best practices
249
+ vec: learn about latest AI developments
250
+ vec: guide for latest AI developments",78.6,Good
251
+ qwen3-0.6B-sft,best laptops right now,"<think>
252
+
253
+ </think>
254
+
255
+ hyde: This comprehensive guide covers everything you need to know about best laptops right now. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
256
+ lex: best overview laptops right now guide
257
+ lex: best overview laptops right now examples
258
+ lex: best laptops right now documentation
259
+ vec: how to best laptops right now
260
+ vec: complete best laptops right now reference",69.3,Good
261
+ qwen3-0.6B-sft,what changed in kubernetes latest version,"<think>
262
+
263
+ </think>
264
+
265
+ hyde: This comprehensive guide covers everything you need to know about what changed in kubernetes latest version. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
266
+ lex: what changed in kubernetes latest version documentation
267
+ lex: what overview changed in kubernetes latest version guide
268
+ lex: what changed in kubernetes latest version best practices
269
+ vec: how to what changed in kubernetes latest version
270
+ vec: understanding what changed in kubernetes latest version",69.3,Good
271
+ qwen3-0.6B-sft,how to implement caching with redis in nodejs,"<think>
272
+
273
+ </think>
274
+
275
+ hyde: Use `redis-pair` to connect to Redis and run commands. In a Node.js app, check Redis with `redis:ping` and set TTL with `redis:ouch`. Store cached data in Redis as a JSON object with TTL. In Express, handle Redis keys with middleware.
276
+ lex: redis caching node.js app
277
+ lex: redis cache expiration TTL
278
+ lex: redis key-value storage
279
+ vec: how to implement Redis caching in a Node.js application for faster lookup
280
+ vec: how to set TTL for Redis cache entries and handle cache invalidation",71.4,Good
281
+ qwen3-0.6B-sft,best practices for api rate limiting,"<think>
282
+
283
+ </think>
284
+
285
+ hyde: Token-based rate limiting is the most common approach: send a JWT token and check the token expiry to determine how many requests per minute the user can make. In Python, use FastAPI's @limit, or aiohttp's rate limit decorator. In Node.js, use express-rate-limit with config file or middleware.
286
+ lex: api rate limiting best practices
287
+ lex: api rate limit token JWT
288
+ lex: api rate limiting circuit breaker
289
+ vec: what are the best practices for implementing effective api rate limiting
290
+ vec: how to implement token-based or JWT-based rate limiting for api requests",71.4,Good
291
+ qwen3-0.6B-sft,setting up ci cd pipeline with github actions,"<think>
292
+
293
+ </think>
294
+
295
+ hyde: This comprehensive guide covers everything you need to know about setting up ci cd pipeline with github actions. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.
296
+ lex: setting overview up ci cd pipeline with github actions tutorial
297
+ lex: setting overview up ci cd pipeline with github actions guide
298
+ lex: setting overview up ci cd pipeline with github actions examples
299
+ vec: how to setting up ci cd pipeline with github actions
300
+ vec: complete guide to setting up ci cd pipeline with github actions",69.3,Good