Skip to content

Commit eaf23c2

Browse files
committed
Fix typo in the FAQ
1 parent c611b30 commit eaf23c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/FAQ.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Likewise, cached dataset files, such as those downloaded with `get_file()`, are
119119

120120
### How should I cite Synalinks?
121121

122-
Please cite Synalinks if it is Useful in your research. Here is the bibtex entry to use:
122+
Please cite Synalinks if it is useful in your research. Here is the bibtex entry to use:
123123

124124
```bibtex
125125
@misc{sallami2025synalinks,
@@ -134,15 +134,15 @@ Please cite Synalinks if it is Useful in your research. Here is the bibtex entry
134134

135135
### Do you provide help or support?
136136

137-
We provide consulting, development and technical support for companies that want to implement any neuro-symbolic systems. Using a framework is one thing, having a complete view of possible neuro-symbolic applications and the knowledge to create such complex systems is another. If you can't afford our services, you can find help in our public [Discord channel]().
137+
We provide consulting, development and technical support for companies that want to implement any neuro-symbolic systems. Using a framework is one thing, having a complete view of possible neuro-symbolic applications and the knowledge to create such complex systems is another. If you can't afford our services, you can find help in our public [Discord channel](https://discord.gg/82nt97uXcM).
138138

139139
---
140140

141141
### What do "sample", "batch", and "epoch" mean?
142142

143143
- **Sample**: A sample is one element of a dataset. For example, one DataModel is one sample.
144144
- **Batch**: A batch is a set of N samples. The samples in a batch are processed independently, in parallel. During training, a batch result in only one program update. A batch approximates the input distribution better than a single input. The larger the batch, the better the approximation; however a larger batch will take longer to process and still result in only one update.
145-
- **Epochs**: A epochs is an arbitrarly cutoff, generally defined as "one pass over the entire dataset", used to separate training into distinct phases, which is Useful for logging and periodic evaluation. When using `validation_split` or `validation_data` with the `fit` method of Synalinks programs, evaluation will be run at the end of every epoch.
145+
- **Epochs**: A epochs is an arbitrarly cutoff, generally defined as "one pass over the entire dataset", used to separate training into distinct phases, which is useful for logging and periodic evaluation. When using `validation_split` or `validation_data` with the `fit` method of Synalinks programs, evaluation will be run at the end of every epoch.
146146

147147
---
148148

0 commit comments

Comments
 (0)