摘要:
```bash
whereis python
which python
``` 阅读全文
摘要:
参考: http://blog.csdn.net/selous/article/details/70229180 http://scikit learn.org/stable/modules/grid_search.html 阅读全文
摘要:
```bash
iTerm2 -> Preferences -> Appearance -> Hotkey -> Check "Show/hide iTerm2 with a system-wide hotkey"
``` 阅读全文
摘要:
操作 快捷键 打开新窗口 ⌘ + n 在无痕模式下打开新窗口 ⌘ + Shift + n 打开新的标签页,并跳转到该标签页 ⌘ + t 重新打开最后关闭的标签页,并跳转到该标签页 ⌘ + Shift + t 跳转到下一个打开的标签页 ⌘ + Option + 向右箭头键 跳转到上一个打开的标签页 ⌘ 阅读全文
摘要:
(copy frtom here)[http://blog.csdn.net/leibaojiangjun1/article/details/53671257] 但是我们通常在程序开始之前并不知道需要多大的显存,程序回去申请GPU的显存的50%,比如一个8G的内存,被占用了2G,那么程序会申请4G的 阅读全文
摘要:
"leetcode34 Search for a Range " 阅读全文
摘要:
"转载自这里" 参考文献: Jaderberg M, Simonyan K, Zisserman A. Spatial transformer networks[C]//Advances in Neural Information Processing Systems. 2015: 2017 202 阅读全文
摘要:
转载自 "csdn" 然后在terminal中: 阅读全文
摘要:
```python # -*-coding:utf8-*- """ 基于字符串数字混合排序的Python脚本 """ def is_number(s): try: float(s) return True except ValueError: pass try: import unicodedata ... 阅读全文
摘要:
```python
#!/usr/bin/python
# -*- coding:utf-8 -*- import time if __name__ == '__main__': print(time.strftime('%Y-%m-%d %H:%M:%S'))
``` 阅读全文