| Group | Benchmark | Summary Explanation | Link |
|---|---|---|---|
| English | MMLU (EM) | Measures multi-task learning across diverse knowledge domains to evaluate language models' general academic proficiency. | MMLU Benchmark |
| English | MMLU-Redux (EM) | A reduced version of MMLU focusing on key topics or subsets of academic questions. | No dedicated link available. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Skip to content | |
| This is a copy of a conversation between ChatGPT & Anonymous. | |
| You said: | |
| In the field of semiconductor manufacturing, “d0” is a key defect per unit barea metric and closely guarded by foundries. Does a similar metric exist for LCD manufacturing? | |
| ChatGPT said: | |
| Yes — LCD (more precisely TFT-LCD) manufacturing uses analogous “defect-per-area” metrics, but in practice the industry talks about a stack of yields + defect classes, rather than a single universally-cited “d0” number the way IC folks do. | |
| The closest LCD analog to semiconductor D0 | |
| 1) TFT array defect density (defects per unit area on the glass) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head><meta charset="utf-8"/> | |
| <meta content="width=device-width, initial-scale=1.0" name="viewport"/> | |
| <title>karate-club-analysis</title><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> | |
| <style type="text/css"> | |
| pre { line-height: 125%; } | |
| td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } | |
| span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Having tried a few of the Qwen 3 models now my favorite is a bit of a surprise to me: I'm really enjoying Qwen3-8B. | |
| I've been running prompts through the MLX 4bit quantized version, mlx-community/Qwen3-8B-4bit. I'm using llm-mlx like this: | |
| llm install llm-mlx | |
| llm mlx download-model mlx-community/Qwen3-8B-4bit | |
| This pulls 4.3GB of data and saves it to ~/.cache/huggingface/hub/models--mlx-community--Qwen3-8B-4bit. |
The compgen command in Linux is a shell built-in used primarily for generating possible completions for commands, functions, files, or other shell elements. It is part of the Bash shell and is often utilized in scripts for tab-completion or command suggestion mechanisms.
compgen [option] [word]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://www.kdnuggets.com/10-python-one-liners-change-coding-game | |
| # 1. Lambda Functions | |
| price_after_discount = lambda price: price*0.9 | |
| # 2. Map Operations on Lists | |
| discounted_prices = list(map(price_after_discount, prices)) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| body { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| margin: auto; | |
| padding-top: 40px; | |
| position: relative; | |
| width: 800px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # source: https://sharats.me/posts/shell-script-best-practices/ | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| if [[ "${TRACE-0}" == "1" ]]; then | |
| set -o xtrace | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg width="10" height="10"> | |
| <rect x="0" y="0" width="10" height="10" fill="blue" /> | |
| </svg> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"status"=>1, "complete"=>1, "list"=>{"3492948982"=>{"item_id"=>"3492948982", "resolved_id"=>"3492948982", "given_url"=>"https://www.practicalecommerce.com/tag/video-tools", "given_title"=>"", "favorite"=>"0", "status"=>"0", "time_added"=>"1638225235", "time_updated"=>"1654562695", "time_read"=>"0", "time_favorited"=>"0", "sort_id"=>0, "resolved_title"=>"Video Tools", "resolved_url"=>"https://www.practicalecommerce.com/tag/video-tools", "excerpt"=>"Video offers merchants a range of ways to engage customers and prospects. Here is a list of new and updated tools from video platforms and social media applications. There are tools for promoting products and producing shoppable videos and as well as for editing, live-streaming, and monetizing.", "is_article"=>"1", "is_index"=>"0", "has_video"=>"0", "has_image"=>"0", "word_count"=>"55", "lang"=>"en", "tags"=>{"ecommerce"=>{"item_id"=>"3492948982", "tag"=>"ecommerce"}, "prodmgmt"=>{"item_id"=>"3492948982", "tag"=>"prodmgmt"}, "tools"=>{"item_id"=>"3492948982", "tag" |
NewerOlder