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
/* | |
* Space complexity: O(1); Time complexity: O(n). | |
*/ | |
void reverseString(char* str){ | |
if(str == NULL) return; // Validation checking. | |
if(*str == "\0") return; // Empty string. | |
char temp; // For swapping tail and head. | |
char* head=str, tail=str; // Pointers for the beginning and the end of the string. |
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
### MATPLOTLIBRC FORMAT | |
# This is a sample matplotlib configuration file - you can find a copy | |
# of it on your system in | |
# site-packages/matplotlib/mpl-data/matplotlibrc. If you edit it | |
# there, please note that it will be overridden in your next install. | |
# If you want to keep a permanent local copy that will not be | |
# over-written, place it in HOME/.matplotlib/matplotlibrc (unix/linux | |
# like systems) and C:\Documents and Settings\yourname\.matplotlib | |
# (win32 systems). |
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
# Author: Vlad Niculae <[email protected]> | |
# Licence: BSD | |
from __future__ import division, print_function | |
import numpy as np | |
from sklearn.utils import check_random_state | |
class SquaredLoss(object): | |
def loss(self, y, pred): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Gartner: | |
https://www.gartner.com/doc/2867017/-planning-guide-overview-architecting | |
https://www.gartner.com/doc/2929317/framework-evaluating-big-data-initiatives | |
https://www.gartner.com/doc/2773117/security-futures-plan-peak-threat | |
https://www.gartner.com/doc/2691917/big-data-needs-datacentric-security | |
https://www.gartner.com/doc/2621115/big-data-analytics-requires-ethical | |
Books and Training: | |
http://www.amazon.com/Data-Science-Big-Analytics-Discovering/dp/111887613X | |
http://www.kaggle.com/competitions#getting-started |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file has been truncated, but you can view the full file.
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
START: (Tue Mar 24 10:38:32 2015) /tools/bin/spectrast -v | |
GENERAL: File offset size is 8 bytes. Big library supported. | |
GENERAL: Pointer size is 8 bytes. | |
START: (Tue Mar 24 10:39:11 2015) /data/hlam/SpectraST/linux_standalone/spectrast -v | |
GENERAL: File offset size is 8 bytes. Big library supported. | |
GENERAL: Pointer size is 8 bytes. | |
START: (Tue Mar 24 10:40:59 2015) /data/hlam/SpectraST/linux_standalone/spectrast -cP0 -cNPAe001464 | |
GENERAL: File offset size is 8 bytes. Big library supported. | |
GENERAL: Pointer size is 8 bytes. | |
START: (Tue Mar 24 10:41:04 2015) /data/hlam/SpectraST/linux_standalone/spectrast -cP0 -cNPAe001464 -V |
OlderNewer