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
2020-08-15 01:10:54,597 DEBUG MainThread:141411 [wandb_config.py:_load_defaults():154] no defaults not found in config-defaults.yaml | |
2020-08-15 01:10:54,747 DEBUG MainThread:141411 [meta.py:_setup_code_git():49] probe for git information | |
2020-08-15 01:10:54,986 DEBUG MainThread:141411 [meta.py:setup():104] code probe starting | |
2020-08-15 01:10:54,987 DEBUG MainThread:141411 [meta.py:_setup_code_program():58] save program starting | |
2020-08-15 01:10:54,987 DEBUG MainThread:141411 [meta.py:_setup_code_program():60] save program starting: /home/jramapuram/sshfs/kanerva_plus_plus/./main.py | |
2020-08-15 01:10:54,999 DEBUG MainThread:141411 [meta.py:_setup_code_program():68] save program saved: /home/jramapuram/sshfs/kanerva_plus_plus/wandb/run-20200815_011054-2kcpmyzj/code/main.py | |
2020-08-15 01:10:55,003 DEBUG MainThread:141411 [meta.py:_setup_code_program():70] save program | |
2020-08-15 01:10:55,036 DEBUG MainThread:141411 [meta.py:setup():124] code probe done | |
2020-08-15 01:10:55,084 DEBUG MainThread:1 |
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
wandb@35204a5e071a:~$ cat /var/log/gorilla-filemeta.log | |
{"level":"INFO","time":"2020-08-16T15:53:06.63101146Z","info":{"program":"gorilla-filemeta","source":"gorilla-filemeta/main.go:85","pid":66},"data":{"config":{"MetadataStore":"mysql://wandb_local:[email protected]:3306/wandb_local","FileMetadataSource":"redis://127.0.0.1:6379/filemetadata","FileStore":"s3://Ev7+1jhUDpUTKYTVlef0Jw==:[email protected]:9000/local-files","FileStoreIsProxied":true,"FileHost":"http://localhost:8080","DataFrameStore":"noop://","TaskQueue":"noop://","Onprem":true,"Tracer":"noop://","Statsd":{"Host":"","Port":0},"SentryDSN":"","SentryEnvironment":"onprem-local","PProfAddr":":8080","GCPProject":"dev~wandb-local","GoogleApplicationCredentials":"","AzureAccountKey":"","MySQL":{"DialTimeout":"0s","ReadTimeout":"0s","WriteTimeout":"0s","MaxIdleConns":0,"MaxOpenConns":0,"ConnMaxLifetime":"0s"}}},"message":"Running with config {MetadataStore:mysql://wandb_local:[email protected]:3306/wandb_lo |
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
(pytorch1.10.0-py39) ➜ ~ pip install xformers | |
Collecting xformers | |
Using cached xformers-0.0.7.tar.gz (95 kB) | |
Preparing metadata (setup.py) ... done | |
Requirement already satisfied: torch>=1.8.1 in /opt/homebrew/Caskroom/miniforge/base/envs/pytorch1.10.0-py39/lib/python3.9/site-packages (from xformers) (1.10.0) | |
Requirement already satisfied: numpy in /opt/homebrew/Caskroom/miniforge/base/envs/pytorch1.10.0-py39/lib/python3.9/site-packages (from xformers) (1.21.4) | |
Requirement already satisfied: pyre-extensions==0.0.23 in /opt/homebrew/Caskroom/miniforge/base/envs/pytorch1.10.0-py39/lib/python3.9/site-packages (from xformers) (0.0.23) | |
Requirement already satisfied: typing-inspect in /opt/homebrew/Caskroom/miniforge/base/envs/pytorch1.10.0-py39/lib/python3.9/site-packages (from pyre-extensions==0.0.23->xformers) (0.7.1) | |
Requirement already satisfied: typing-extensions in /opt/homebrew/Caskroom/miniforge/base/envs/pytorch1.10.0-py39/lib/python3.9/site-packages (from pyre-extensions==0.0.23->xformers) (4.0.0) | |
Re |
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
ViT( | |
(patch_embed): PatchEmbed( | |
(proj): Conv2d(3, 768, kernel_size=(16, 16), stride=(16, 16)) | |
(norm): Identity() | |
) | |
(backbone): xFormer( | |
(encoders): ModuleList( | |
(0): xFormerEncoderBlock( | |
(mha): MultiHeadDispatch( | |
(attention): ScaledDotProduct( |
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
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index 696a736a..392145f0 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -1,5 +1,7 @@ | |
cmake_minimum_required(VERSION 3.18 FATAL_ERROR) | |
+link_directories(/miniconda/lib) | |
+ | |
# Most of the configurations are taken from PyTorch |
OlderNewer