Questions tagged [minima]

Minima is a one-size-fits-all Jekyll theme. https://github.com/jekyll/minima

55 questions
7
votes
2 answers

Create custom home page with Jekyll

I would like to create a custom "home" page using Jekyll's standard theme "Minima". By default it is set to a list of recent blog posts: --- layout: default ---

Posts

{{ content }}
mabalenk
  • 887
  • 1
  • 8
  • 17
6
votes
3 answers

Find n minimum values in an array

I am using Matlab 2012a. I have an array of k cells (say 1000). I need to find the 5 lowest values of this array and need to do an average of those values in X and Y. Anyone has an idea how to do that?
Vissenbot
  • 227
  • 2
  • 5
  • 15
4
votes
5 answers

Finding turning points of an Array in python

If I for example have an array: A = (0,2,3,4,5,2,1,2,3,4,5,6,7,8,7,6,5,4,5,6) It can be seen that there are 4 turning points. (at A[4],A[6], A[13], A[17]) How can I use python to return the number of turning points? import numpy as np import…
user2984189
  • 43
  • 1
  • 1
  • 3
3
votes
1 answer

Does the choice of an activation function and initial weights have any bearing on whether a Neural Network gets stuck in a local minima?

I posted this question yesterday asking if my Neural Network (that I'm training via backpropagation using stochastic gradient descent) was getting stuck in a local minima. The following papers talk about the problem of the local minima in an XOR…
3
votes
0 answers

SCSS file import not found on Jekyll site hosted on Github pages

I am getting this build error. Your site is having problems building: Your SCSS file portfolio/assets/main.scss has an error on line 1: File to import not found or unreadable: minima. Load…
3
votes
2 answers

Deep Learning: small dataset with keras : local minima

For my thesis, I'm running a 4 layered deep network for sequence to sequence translation use-case 150 x Conv(64,5) x GRU (100) x softmax activation on last stage with loss='categorical_crossentropy'. Training loss and accuracy converge optimally…
2
votes
3 answers

Finding maximum difference between columns of same name in R

I have the following table in R. I have 2 A columns, 3 B columns and 1 C column. I need to calculate the maximum difference possible between any columns of the same name and return the column name as output. For row 1 The max difference between A…
Aman
  • 93
  • 5
2
votes
1 answer

Getting a new social icon in github pages with jekyll

I'm building a webpage with jekyll and github pages. I would like to link to my google scholar profile in the same way I link to my github, with an icon at the bottom of the page. I found out that this can be handled in _includes/social.html.…
user1868607
  • 2,558
  • 1
  • 17
  • 38
2
votes
1 answer

Jekyll and Minima with Two Fonts?

I'm trying to get Jekyll to use two fonts, one for headings, and one for body text. To this end, I've copied the entire _sass folder to the root of my site, then changed \_sass\minima\_base.scss to include definitions for both fonts... /** * Basic…
no-one
  • 141
  • 6
2
votes
1 answer

Use a static webpage in Jekyll as the homepage

I have created a website using Jekyll with the default theme minima. The homepage of this website shows the blog posts. I would like to show a static page, like about.md, as the homepage and move the blog posts to a link such as website.com/blog/.
mpourreza
  • 177
  • 1
  • 1
  • 15
2
votes
1 answer

What is meant by local minima and maxima in Digital Image Processing?

Can Someone please explain the concept of local minima and maxima in terms of digital image processing...
TKA
  • 128
  • 1
  • 4
  • 13
1
vote
1 answer

Maxima and Minima Point of a Curve in Python

I have a captured a data from a displacement sensor, the delta values for one iteration look like this. 0, 1, 2, 4, 7, 9, 14, 24, 14, 10, 9, 7, 3 2, 1, 0, 0, 0, 0, -1, -3, -5, -7, -9, -14, -24, -14, -9, -8, -6, -4, -3, -1, 0, 0, 0. (other iterations…
Nitin Kumar
  • 133
  • 1
  • 6
1
vote
1 answer

Finding local minima in 2D array, in O(N) time

Given an NxN matrix where all numbers are unique, find ANY local minima in O(N) time. Here is an example of the matrix. It's given in lst = [[30,100,20,19,18], [29,101,21,104,17], [28,102,22,105,16], [27,103,23,106,15], …
homies
  • 89
  • 10
1
vote
1 answer

Changing personal site configuration with jekyll

I'm trying to build a site with jekyll. I managed to make math work and upload some files. Now the overall distribution of content is not optimal. I get a link to "HEAD" that lists a series of updates of Jekyll. I would like to get rid of…
user1868607
  • 2,558
  • 1
  • 17
  • 38
1
vote
1 answer

is there an R function for finding the local minima of a bivariate function?

I have the following function: I am interested in finding all the 4 local minima of this bivariate function using code in R. How can I go about it?
1
2 3 4