EADST

Paddle Argmax Function

Paddle Argmax Function

import paddle

x = paddle.to_tensor([[5,8,9,5],
                     [0,0,1,7],
                     [6,9,2,4]])
# paddle.argmax(x, axis=None, keepdim=False, dtype='int64', name=None)
out1 = paddle.argmax(x)
print(out1) # 2
out2 = paddle.argmax(x, axis=0)
print(out2)
# [2, 2, 0, 1]
out3 = paddle.argmax(x, axis=-1)
print(out3)
# [2, 3, 1]
out4 = paddle.argmax(x, axis=0, keepdim=True)
print(out4)
# [[2, 2, 0, 1]]

Reference

Paddle Argmax

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

本站现有博文321篇,共被浏览775867

本站已经建立2466天!

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