aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua/lua_fann.c
Commit message (Expand)AuthorAgeFilesLines
* [Rework] Kill metrics!11Vsevolod Stakhov2017-11-041-1/+1
* [Minor] Further portion of g_slice eliminationVsevolod Stakhov2017-10-281-5/+5
* [Minor] Use rspamd_socketpair everywhereVsevolod Stakhov2017-07-251-1/+1
* [Fix] Allow to follow symlinks when safeVsevolod Stakhov2017-05-091-1/+1
* [Minor] Fix various style issuesVsevolod Stakhov2017-03-231-1/+1
* [Fix] Fix couple of issuesVsevolod Stakhov2017-01-151-0/+2
* [Minor] Add workaround for old debianVsevolod Stakhov2016-11-051-1/+41
* [Minor] Remove not very portable FANN_TRAIN_SARPROPVsevolod Stakhov2016-11-051-3/+0
* [Feature] Implement FANN threaded learningVsevolod Stakhov2016-11-041-0/+220
* [Feature] Add extended version for fann creation functionVsevolod Stakhov2016-11-041-1/+152
* [Minor] Fix setting of table argumentVsevolod Stakhov2016-10-151-1/+1
* [Minor] Add function to get neural net layersVsevolod Stakhov2016-10-151-0/+37
* [Minor] Add method to get MSE for ANNVsevolod Stakhov2016-10-101-0/+26
* [Fix] Slightly fix ANN routinesVsevolod Stakhov2016-10-101-6/+8
* [Minor] Allow to create fann from table of layersVsevolod Stakhov2016-10-081-2/+11
* [Feature] Add neural net serialization/deserializationVsevolod Stakhov2016-10-081-3/+139
* [Minor] Do not use shortcut ANNsVsevolod Stakhov2016-09-121-2/+1
* [Minor] Set symmetric activation functions for ANNVsevolod Stakhov2016-09-121-1/+4
* [Feature] Use rspamd specific type checks for userdataVsevolod Stakhov2016-05-051-1/+1
* [Fix] Fix fann trainVsevolod Stakhov2016-04-061-63/+31
* [Fix] Plug memory leak in lua_fannVsevolod Stakhov2016-03-091-1/+3
* Switch the rest to apache 2Vsevolod Stakhov2016-02-041-21/+12
* Allow to specify fann input count explicitlyVsevolod Stakhov2015-12-221-3/+17
* Add lua_fann moduleVsevolod Stakhov2015-12-211-0/+435
ackport/47824/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/cypress.d.ts
blob: b19af2676312a11927b2ce5fccdf6ec720fbecfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
 * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>
 *
 * @author John Molakvoæ <skjnldsv@protonmail.com>
 *
 * @license AGPL-3.0-or-later
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 */
/* eslint-disable */
import { mount } from 'cypress/vue2'

type MountParams = Parameters<typeof mount>;
type OptionsParam = MountParams[1];

declare global {
	namespace Cypress {
		interface Chainable {
			mount: typeof mount;
		}
	}
}