Skip to content

Commit

Permalink
Merge pull request #85 from bt2901/master
Browse files Browse the repository at this point in the history
add more careful handling of modalities
  • Loading branch information
Alvant committed Jul 13, 2024
2 parents 5057df0 + 775187b commit 0438e55
Show file tree
Hide file tree
Showing 9 changed files with 129 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cache:
- $HOME/.ccache

python:
- "3.7"
- "3.8"

env:
global:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ Consider using TopicNet if:
</div>
<em>
Example of the two-stage experiment scheme.
At the first stage, regularizer with parameter <img src="https://render.githubusercontent.com/render/math?math=\tau"> taking values in some range <img src="https://render.githubusercontent.com/render/math?math=\{\tau_1, \tau_2, \tau_3\}"> is applied.
At the first stage, regularizer with parameter <img src="./docs/readme_images/tau.svg"> taking values in some range <img src="./docs/readme_images/tau1-tau2-tau3.svg"> is applied.
Best models after the first stage are <em>Model 1</em> and <em>Model 2</em> — so <em>Model 3</em> is not taking part in the training process anymore.
The second stage is connected with another regularizer with parameter <img src="https://render.githubusercontent.com/render/math?math=\xi"> taking values in range <img src="https://render.githubusercontent.com/render/math?math=\{\xi_1, \xi_2\}">.
The second stage is connected with another regularizer with parameter <img src="./docs/readme_images/xi.svg"> taking values in range <img src="./docs/readme_images/xi1-xi2.svg">.
As a result of this stage, two descendant models of <em>Model 1</em> and two descendant models of <em>Model 2</em> are obtained.
</em>
</p>
Expand Down
10 changes: 10 additions & 0 deletions docs/readme_images/tau.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions docs/readme_images/tau1-tau2-tau3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions docs/readme_images/xi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions docs/readme_images/xi1-xi2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ numexpr
numpy
pandas
plotly
protobuf==3.20.3
pytest
pytest-cov
pytest-rerunfailures
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
'numpy',
'pandas',
'plotly',
'protobuf==3.20.3', # BigARTM dependency
'pytest',
'scikit-learn',
'scipy',
Expand All @@ -52,6 +53,6 @@
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)
Loading

0 comments on commit 0438e55

Please sign in to comment.