SBIRs
- Still working on the Dell quote
- Tested the RCSNN code out on Rukan and it works!
- Gave some advice on the autoregression development
- 9:15 standup
- Doing the matrix thing
Book
- More on the egalitarian section
SBIRs
Book
3:00 Physical and COVID booster
SBIRs
GPT-Agents
Book


Tasks
SBIRs
GPT Agents

[metadata]
description-file = README.md
name = keyword_explorer
from distutils.core import setup
setup(
name='keyword_explorer',
version= "0.0.3.dev",
packages=['keyword_explorer',
'keyword_explorer.utils',
'keyword_explorer.TwitterV2',
'keyword_explorer.tkUtils',
'keyword_explorer.OpenAI',
'keyword_explorer.Apps'],
url='https://github.com/pgfeldman/KeywordExplorer',
license='MIT',
author='Philip Feldman',
author_email='phil@philfeldman.com',
description='A tool for producing and exploring keywords',
long_description= long_s,
install_requires=[
'pandas~=1.3.5',
'matplotlib~=3.2.2',
'numpy~=1.19.5',
'sklearn~=0.0',
'scikit-learn~=0.24.2',
'requests~=2.27.1',
'wikipedia~=1.4.0',
'openai~=0.11.5',
'networkx~=2.6.2',
'tkinterweb~=3.12.2'],
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
[distutils]
index-servers=
testpypi
pypi
[testpypi]
repository = https://test.pypi.org/legacy/
username = your_login
password = your_password
[pypi]
repository = https://upload.pypi.org/legacy/
username = your_login
password = your_password



D:\Development\External\KeywordExplorer> twine upload dist/* -r pypi
__token__pypi- prefix (e.g. pypi-AgEIcHl…).pypirc file, while others may need to update their CI configuration file (e.g. .travis.yml if you are using Travis).
Book
Book
SBIRs

Book
SBIRs
def init_task(self):
CMD_ship_controller_to_navigate_controller = self.ddict.get_entry('CMD_ship_controller_to_navigate_controller').data
RSP_navigate_controller_to_ship_controller = self.ddict.get_entry('RSP_navigate_controller_to_ship_controller').data
CMD_ship_controller_to_missile_controller = self.ddict.get_entry('CMD_ship_controller_to_missile_controller').data
RSP_missile_controller_to_ship_controller = self.ddict.get_entry('RSP_missile_controller_to_ship_controller').data
if self.cur_state == States.NEW_COMMAND:
print("ship_controller:INIT NEW_COMMAND ")
self.cur_state = States.S0
self.rsp.set(Responses.EXECUTING, self.cmd.serial)
CMD_ship_controller_to_navigate_controller.set(Commands.INIT, CMD_ship_controller_to_navigate_controller.next_serial()+1)
elif self.cur_state == States.S0 and RSP_navigate_controller_to_ship_controller.test(Responses.DONE):
self.cur_state = States.S1
CMD_ship_controller_to_missile_controller.set(Commands.INIT, CMD_ship_controller_to_missile_controller.next_serial()+1)
elif self.cur_state == States.S1 and RSP_missile_controller_to_ship_controller.test(Responses.DONE):
self.cur_state = States.S2
elif self.cur_state == States.S2:
print("ship_controller:DONE")
self.cur_state = States.S3
self.rsp.set(Responses.DONE)
Tasks
The future is coming:

Is It Good to Cooperate? Testing the Theory of Morality-as-Cooperation in 60 Societies
Book
SBIRs
Book
SBIRs
I think that this will turn out to be very important

Book
SBIRs
GPT Agents
Tasks
SBIRs
GPT Agents

Can Instagram ads fight disinformation about climate and COVID vaccines?
Book
SBIRs
Firebird tonight!
Book
SBIRs
Book
SBIRs
Unveiling the higher-order organization of multivariate time series
SBIRs
class HierarchyModule:
quantity: int
name: str
parent: str
commands:List
def __init__(self, d:Dict):
self.quantity = 1 #default
self.__dict__.update(d)
def to_string(self) -> str:
return "name = {}\n\tquantity = {}\n\tparent = {}\n\tcommands = {}".format(self.name, self.quantity, self.parent, self.commands)

Book
Book
SBIRs
You must be logged in to post a comment.