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
First chapter | |
- obstacles/walls of progression | |
- ILP / POWER / Memory wall | |
- Multicore | |
Second chapter: | |
- Performance | |
- cpu speed | |
- clock cycles | |
- execution time |
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
import subprocess | |
import argparse | |
import base64 | |
import json | |
import time | |
import httplib2 | |
## Going with IBM | |
from watson_developer_cloud import SpeechToTextV1 |
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
import subprocess | |
import argparse | |
import base64 | |
import json | |
""" | |
Currently uses Google's cloud speech API | |
""" | |
from googleapiclient import discovery |