EADST

Numpy: Obtain the Indices to Sort An Array

Numpy: Obtain the Indices to Sort An Array

x = np.array([[0, 3], [2, 2]]) #  array([[0, 3],  [2, 2]])
col_idx = np.argsort(x, axis=0)  # sorts along first axis (col)    array([[0, 1],  [1, 0]])
row_idx= np.argsort(x, axis=1) # sorts along last axis (row)    array([[0, 1], [0, 1]])
for line in row_idx:
    print(line[::-1]) # max to min
# [1, 0]
# [1, 0]

Reference

numpy.argsort

相关标签
About Me
XD
Goals determine what you are going to be.
Category
标签云
PIP SVR SQL Qwen2.5 多进程 Distillation Linux printf Disk WAN News COCO Algorithm Tiktoken Domain RGB Streamlit DeepSeek Knowledge Diagram Dataset GoogLeNet LLAMA LoRA Agent 签证 Bitcoin OpenAI 第一性原理 Freesound 图标 XML CUDA Miniforge 证件照 Excel Heatmap UNIX NameSilo ONNX Windows Tracking Color Data 云服务器 Git DeepStream Quantization ms-swift ModelScope SQLite uwsgi Template IndexTTS2 Card CTC Video tqdm Datetime Paddle API网关 Paper TensorRT SPIE FlashAttention 论文速读 logger CEIR Augmentation Use VGG-16 uWSGI 飞书 tar Mixtral Clash 净利润 Search Random LeetCode BTC Django Interview HuggingFace Attention transformers PyTorch Pytorch Sklearn Tensor Ptyhon 搞笑 腾讯云 YOLO 公式 Conda Hotel API EXCEL 财报 VPN Safetensors Pickle Breakpoint v2ray TensorFlow Image2Text Permission NLTK 图形思考法 InvalidArgumentError 音频 SAM FastAPI OpenCV v0.dev Python Review Bin CSV Plotly ChatGPT Vim Bert TSV Animate NLP Input FP16 阿里云 AI GGML 算法题 RL Michelin GPTQ torchinfo Ubuntu 递归学习法 版权 报税 icon Google PDF Docker CC Baidu Qwen2 XGBoost git Pillow Shortcut Plate GIT MD5 C++ RAR 关于博主 git-lfs CAM Anaconda Jetson Math GPT4 域名 FP8 Proxy Pandas Bipartite Land OCR Translation diffusers PDB Jupyter Rebuttal BF16 Numpy Hungarian llama.cpp BeautifulSoup Hilton 继承 LLM Gemma Transformers JSON Qwen Cloudreve 顶会 PyCharm Magnet Quantize Firewall Markdown VSCode Crawler mmap LaTeX 多线程 论文 HaggingFace ResNet-50 FP64 Nginx CLAP Github Statistics 强化学习 FP32 Website Logo Harness TTS Llama scipy UI Password CV Vmess Claude Base64 Web Food QWEN WebCrawler hf Zip
站点统计

本站现有博文336篇,共被浏览946728

本站已经建立2657天!

热门文章
文章归档
回到顶部