Anne

Anne.github.io


  • Home

  • About

  • Tags

  • Categories

  • Archives

Tensorflow save checkpoint issue

Posted on 2019-05-29 | In Coding

Same issue as following:

https://github.com/una-dinosauria/human-motion-prediction/issues/10

1
NotFoundError (see above for traceback): Failed to create a NewWriteableFile: XX\checkpoint-10.data-00000-of-00001.tempstate3138973305096497355

The problem turned out to be the maximum path length supported by the Windows shell (255 UTF-16 code words), not an NTFS problem.

So I shorten the folder name, then the issue disappears…🙃

Read more »

Anaconda-tensorflow issue

Posted on 2019-04-02 | In Coding

After all official installment, error happened:

Could not fetch URL https://pypi.python.org/simple/ssl/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:777) - skipping
Could not find a version that satisfies the requirement ssl (from versions: )
No matching distribution found for ssl

I address this problem by adding path to environment 😥

Read more »

Hierarchical Attention Network for Document Classification

Posted on 2019-03-22 | In paper , NLP

Summary for Hierarchical Attention Network for Document Classification

Using xmind 😆 and some formula by hand

Check out details 👇

Read more »

BOOK--PRML

Posted on 2019-03-10 | In Machine Learning

Machine Learning Course in Spring 2019

Text Book: Pattern Recognition and Machine Learning, Bishop

Here are my learning notes, to be continued..😝

Introduction

Supervised Learning

  • regression: y is continuous
  • classification: y is discrete

supervised+X learning

Unsupervised Learning

  • Cluster: well-seperated
  • Dimensionality reduction

Reinforcement Learning

Read more »

Some points in ML

Posted on 2018-12-18 | In Machine Learning

KL divergence (KL 散度)

good explanation:

  • English: http://www.thushv.com/machine-learning/light-on-math-machine-learning-intuitive-guide-to-understanding-kl-divergence/
  • Translation: https://zhuanlan.zhihu.com/p/37452654
Read more »

437.Path Sum III

Posted on 2018-11-24 | In LeetCode

Question

You are given a binary tree in which each node contains an integer value.

Find the number of paths that sum to a given value.

The path does not need to start or end at the root or a leaf, but it must go downwards (traveling only from parent nodes to child nodes).

The tree has no more than 1,000 nodes and the values are in the range -1,000,000 to 1,000,000.

Example:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
root = [10,5,-3,3,2,null,11,3,-2,null,1], sum = 8
10
/ \
5 -3
/ \ \
3 2 11
/ \ \
3 -2 1
Return 3. The paths that sum to 8 are:
1. 5 -> 3
2. 5 -> 2 -> 1
3. -3 -> 11
Read more »

113.Path Sum II

Posted on 2018-11-24 | In LeetCode

Question

Given a binary tree and a sum, find all root-to-leaf paths where each path’s sum equals the given sum.

Note: A leaf is a node with no children.

Example:

Given the below binary tree and sum = 22,

1
2
3
4
5
6
7
5
/ \
4 8
/ / \
11 13 4
/ \ / \
7 2 5 1

Return:

1
2
3
4
[
[5,4,11,2],
[5,8,4,5]
]
Read more »

TODO

Posted on 2018-11-24 | In za

Machine Learning

  • paper
    • [ ] 机器学习与深度学习经典论文整理: https://mp.weixin.qq.com/s/jKK6AwmCMGWgVK0vPX359w
  • Reinforcement Learning
    • [ ] UC Berkeley CS294
    • [ ] 强化学习精要

Life

  • [ ] Language: English & Korean
  • [ ] Dance & Fit
Read more »

112.Path Sum

Posted on 2018-11-18 | In LeetCode

Question

Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.

Note: A leaf is a node with no children.

Example:

Given the below binary tree and sum = 22,

1
2
3
4
5
6
7
5
/ \
4 8
/ / \
11 13 4
/ \ \
7 2 1

return true, as there exist a root-to-leaf path 5->4->11->2 which sum is 22.

Read more »

Taking Human out of Learning Applications: A Survey on Automated Machine Learning

Posted on 2018-11-11 | In paper

[TOC]

Automated Machine Learning

Key words: automatic machine learning, neural architecture search, hyper-parameter optimization, meta-learning, transfer-learning

1. Introduction

Every aspect of machine learning applications, such as feature engineering, model selection, algorithm selection needs to be carefully configured, which is usually involved heavily with human experts.

AutoML attempts to reduce human assistance in the design, selection and implementation of various machine learning tools used in applications’ pipeline.

Examples:

  • Auto-sklearn, try a collection of classifiers on a new problem, then get final predictions from an ensemble of them
  • Neural architecture search NAS. Success of AlexNet, VGGNet, GoogleNet, ResNet and DenseNet. Can the neural architecture be automatically designed so that good learning performance can be obtained on the given tasks. Reinforcement Learning has been a powerful and promising tool for NAS.
  • Automatic feature engineering, aims to construct a new features set, with which the performance of subsequent machine learning tools can be improved. Existing works on this topic include Data Science Machine(DSM), ExploreKit and FeatureHub
Read more »
123…14
Anne_ZAJ

Anne_ZAJ

boom pow

134 posts
14 categories
17 tags
0%
© 2019 Anne_ZAJ
Powered by Hexo
|
Theme — NexT.Pisces v5.1.3