| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
- 챗지피티
- supervised ml
- 머신러닝
- 딥러닝
- Unsupervised Learning
- Regression
- neural network
- feature engineering
- LLM
- 프롬프트 엔지니어링
- feature scaling
- bingai
- AI
- Machine Learning
- 언어모델
- Andrew Ng
- ChatGPT
- ML
- Supervised Learning
- GPT
- Scikitlearn
- llama
- AI 트렌드
- 인공신경망
- nlp
- 인공지능
- Deep Learning
- learning algorithms
- coursera
- prompt
- Today
- Total
목록... (4)
My Progress
What is setuptools-rust?setuptools-rust is a plugin for Python’s setuptools that enables you to build Rust extensions as part of the standard Python build process.It integrates Rust’s Cargo build system into Python’s setup.py workflow.Useful if you want to maintain a traditional Python packaging style with a setup.py script.Step-by-Step Guide1. Install setuptools-rustFirst, install the required ..
What is maturin?maturin is a specialized tool for building and publishing Rust crates as Python extension modules.It wraps around Cargo (Rust’s build system) and handles building, packaging, and publishing wheels to PyPI.Supports PyO3 and rust-cpython projects seamlessly.Simplifies Python packaging (wheels) for Rust extensions.Step 1: Install prerequisitesRust toolchain: If not installed, get it..
1. What is WSL?WSL (Windows Subsystem for Linux) is a feature built into Windows 10 and later that lets you run a Linux environment directly on Windows without a virtual machine.It provides a lightweight Linux kernel compatibility layer integrated tightly with Windows.Ideal for developers who want quick access to Linux command-line tools without full virtualization.Limitations: WSL has no full L..
1. IntroductionThis guide explains how to set up SSH keys for secure authentication with Git servers, configure SSH for easy access, troubleshoot common errors, and ensure correct key permissions on your system.2. Generating SSH KeysSSH keys enable secure, passwordless authentication with remote servers and Git repositories.Generate a new SSH key pairbash복사편집ssh-keygen -t ed25519 -C "your.email@..