일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- CNN
- Artificial Intelligence
- transference
- Kaggle
- sliding video q-former
- secure-file-priv
- multimodal machine learning
- Server
- ma-lmm
- Anaconda
- 코딩테스트
- LeNet-5
- tensorflow
- quantification
- MySQL
- leetcode
- 백준
- q-former
- jmeter
- long video understanding
- memory bank
- hackerrank
- Github
- Python
- Linux
- timestamp-aware frame encoder
- error
- timechat
- autogluon
- 용어
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- CNN
- Artificial Intelligence
- transference
- Kaggle
- sliding video q-former
- secure-file-priv
- multimodal machine learning
- Server
- ma-lmm
- Anaconda
- 코딩테스트
- LeNet-5
- tensorflow
- quantification
- MySQL
- leetcode
- 백준
- q-former
- jmeter
- long video understanding
- memory bank
- hackerrank
- Github
- Python
- Linux
- timestamp-aware frame encoder
- error
- timechat
- autogluon
- 용어
- Today
- Total
목록분류 전체보기 (54)
Juni_DEV
$ conda activate pytorch usage: conda [-h] [-v] [--no-plugins] [-V] COMMAND ... conda: error: argument COMMAND: invalid choice: 'activate' (choose from 'clean', 'compare', 'config', 'create', 'info', 'init', 'install', 'list', 'notices', 'package', 'remove', 'uninstall', 'rename', 'run', 'search', 'update', 'upgrade', 'build', 'content-trust', 'convert', 'debug', 'develop', 'doctor', 'index', 'i..
MySQL로 select INTO OUTFILE으로 SELECT문을 txt파일로 추출하려고 하는데 자꾸 아래 에러가 발생했음... ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement 확인할 수 있는 방법을 다 시도해 봤는데도 이상하게 안 됐는데 나 같은 경우는 해당 폴더에 똑같은 이름의 파일이 있었다......... 그냥 이름 충돌... 잘 확인하자!! 해당 블로그는 나 같이 바보짓이 아닌 일반적인 경우의 해결 방법들이 잘 정리되어 있는 것 같아서 첨부 https://myinfrabox.tistory.com/209 [MySQL] ERROR 129..
MySQL을 기본으로 설치하면 일반적으로 C:\Program Files\MySQL\MySQL Server 8.0 위치에 설치된다. 제어판에서 '시스템'을 검색하고 시스템 환경 변수 편집 - 고급 - 우측하단의 환경변수(N) 클릭 PATH - 편집에 들어가서 C:\Program Files\MySQL\MySQL Server 8.0\bin 경로를 추가해 주면 된다. bin 디렉토리 내에 mysql이 존재하기 때문에 경로에 bin도 포함해야 한다. 참고 https://e2e2e2.tistory.com/22
이 에러는 PowerShell의 Invoke-Expression(cmdlet)에서 빈 문자열을 인자로 전달하여 발생한 것입니다. 주로 Anaconda 설치나 환경 관련 명령어를 실행할 때 발생할 수 있습니다. 이러한 에러가 발생하는 원인은 일반적으로 환경 변수를 설정하거나 활성화할 때 해당 명령어가 비어있거나 존재하지 않을 때 발생합니다. 특히 Conda와 관련하여 가상 환경을 활성화하는 명령어를 실행할 때 해당 환경 이름이 잘못되었거나 비어있을 경우에도 이러한 에러가 발생할 수 있습니다. 해결 방법으로는 다음과 같은 점을 확인하고 수정해야 합니다: 1. 환경 이름 확인: Conda로 가상 환경을 활성화하는 명령어를 실행할 때, 존재하지 않는 환경 이름을 사용하고 있지 않은지 확인합니다. 2. 스크립트의..
Github README.md에 영상파일을 올리고 싶었음 방법을 찾아보니 동영상 파일로 올리지 말고 GIF로 변환 후, 이미지 업로드 하라고 함 MP4 -> GIF 변환 MP4 to GIF | CloudConvert MP4 Converter MP4 MP4, also known as MPEG4 is mainly a video format that is used to store video and audio data. Also it can store images and subtitles. Normally it is used to share videos over internet. MP4 can embed any data over private streams. Streamin cloudconvert.com 위 사..
Sparse Arrays | HackerRank Determine the number of times a string has previously appeared. www.hackerrank.com 주어진 문제 더보기 There is a collection of input strings and a collection of query strings. For each query string, determine how many times it occurs in the list of input strings. Return an array of the results. Example stringList = ['ab','ab','abc'] queries = ['ab','abc','bc'] There are 2 inst..
https://www.hackerrank.com/challenges/divisible-sum-pairs/problem 주어진 문제 더보기 Given an array of integers and a positive integer k, determine the number of (i,j) pairs where i
Camel Case 4 | HackerRank www.hackerrank.com 주어진 문제 더보기 Camel Case is a naming style common in many programming languages. In Java, method and variable names typically start with a lowercase letter, with all subsequent words starting with a capital letter (example: startThread). Names of classes follow the same pattern, except that they start with a capital letter (example: BlueCar). Your task i..