- Address: 16565 SW Wright St., 97007 Aloha, OR
- Phone: +1 210 941 5778
- Email: [email protected]
- GitHub
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
EggHatchSpeedMultiplier=20 | |
BabyMatureSpeedMultiplier=25 | |
BabyFoodConsumptionSpeedMultiplier=1.0 | |
BabyImprintingStatScaleMultiplier=1.0 | |
BabyCuddleIntervalMultiplier=0.14 | |
BabyCuddleGracePeriodMultiplier=2.0 | |
BabyCuddleLoseImprintQualitySpeedMultiplier=.5 |
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
BabyImprintingStatScaleMultiplier=4 | |
BabyCuddleIntervalMultiplier=4 | |
BabyCuddleGracePeriodMultiplier=4 | |
BabyCuddleLoseImprintQualitySpeedMultiplier=4 | |
BabyMatureSpeedMultiplier=4 | |
EggHatchSpeedMultiplier=4 | |
MatingIntervalMultiplier=4 | |
ShowFloatingDamageText=true |
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
defaults = { | |
"image": "argopy:latest" | |
} | |
@argopy.container(**defaults) | |
def process_data(data_partition): | |
do something with data | |
partitions = ['foo.csv', 'bar.csv'] |
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
hyperparams: | |
RF: | |
foo: | |
values: | |
- 1 | |
- 2 | |
-3 | |
SVM: | |
bar: | |
min: 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
def ego_graph(row, graph, radius): | |
if row == 'foo': | |
return | |
reurn nx.ego_graph(G, row, radius).edges() | |
test_user_dd.apply(ego_graph, graph=G, radius=2) |
- Address: 16565 SW Wright st. 97007 Aloha, OR
- Phone: +1 210 941 5778
- Email: [email protected]
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
# Deploy kubeflow to namespace "kubeflow" | |
# TODO(inc0): Create rbac role bindings | |
--- | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: kubeflow | |
--- |
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
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: docker-registry | |
name: docker-registry | |
spec: | |
replicas: 1 | |
selector: |